#import pandas & set display setting
import pandas as pd
pd.options.display.max_rows = 20
#to be compared for periodic updates
lastEtlDate = pd.to_datetime('20200430', format='%Y%m%d')
lastEtlDate = lastEtlDate.date()
lastEtlDate
datetime.date(2020, 4, 30)
#extract IHP Programs file
ihp_cols = ['disasterNumber','state','county','city','zipCode','totalValidRegistrations','ihpReferrals','ihpEligible',
'ihpAmount','haReferrals','haEligible','haAmount','onaReferrals','onaEligible','onaAmount','lastRefresh','id']
ihpProgram_src1 = pd.read_csv('https://www.fema.gov/api/open/v1/RegistrationIntakeIndividualsHouseholdPrograms.csv',usecols=ihp_cols)
ihpProgram_src1.sort_values('disasterNumber')
ihpProgram_src1
C:\ProgramData\Anaconda3\lib\site-packages\IPython\core\interactiveshell.py:3020: DtypeWarning: Columns (4) have mixed types. Specify dtype option on import or set low_memory=False. interactivity=interactivity, compiler=compiler, result=result)
| disasterNumber | state | county | city | zipCode | totalValidRegistrations | ihpReferrals | ihpEligible | ihpAmount | haReferrals | haEligible | haAmount | onaReferrals | onaEligible | onaAmount | lastRefresh | id | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 4177 | FL | Escambia (County) | CANTONMENT | 32533 | 577 | 519 | 290 | 3474481.96 | 489 | 277 | 3376177.47 | 223 | 55 | 98304.49 | 2018-11-20T21:24:44.152Z | 5a2ed335758c6e4347f5dc98 |
| 1 | 4177 | FL | Escambia (County) | PENASCOLA | 32507 | 1 | 1 | 1 | 6445.93 | 1 | 1 | 1660.00 | 1 | 1 | 4785.93 | 2018-11-20T21:24:43.536Z | 5a2ed335758c6e4347f5dc9c |
| 2 | 4177 | FL | Escambia (County) | TALLAHASSEE | 32310 | 1 | 0 | 0 | 0.00 | 0 | 0 | 0.00 | 0 | 0 | 0.00 | 2018-11-20T21:24:43.538Z | 5a2ed335758c6e4347f5dca0 |
| 3 | 4177 | FL | Escambia (County) | PENSACOLA | 32511 | 2 | 1 | 0 | 0.00 | 0 | 0 | 0.00 | 1 | 0 | 0.00 | 2018-11-20T21:24:44.198Z | 5a2ed335758c6e4347f5dca4 |
| 4 | 4177 | FL | Jackson (County) | CAMPBELLTON | 32426 | 40 | 39 | 24 | 42670.37 | 39 | 16 | 36297.25 | 20 | 14 | 6373.12 | 2018-11-20T21:24:44.107Z | 5a2ed335758c6e4347f5dca8 |
| 5 | 4177 | FL | Escambia (County) | GULF BREEZE | 32561 | 1 | 1 | 0 | 0.00 | 1 | 0 | 0.00 | 1 | 0 | 0.00 | 2018-11-20T21:24:43.536Z | 5a2ed335758c6e4347f5dc9a |
| 6 | 4177 | FL | Okaloosa (County) | FORT WALTON BEACH | 35258 | 1 | 1 | 0 | 0.00 | 0 | 0 | 0.00 | 1 | 0 | 0.00 | 2018-11-20T21:24:44.109Z | 5a2ed335758c6e4347f5dcac |
| 7 | 4177 | FL | Escambia (County) | PENSACOLA | 32514 | 728 | 598 | 328 | 1443975.86 | 525 | 290 | 1254682.24 | 318 | 116 | 189293.62 | 2018-11-20T21:24:43.537Z | 5a2ed335758c6e4347f5dc9e |
| 8 | 4177 | FL | Jackson (County) | MARINNA | 32448 | 1 | 1 | 0 | 0.00 | 1 | 0 | 0.00 | 0 | 0 | 0.00 | 2018-11-20T21:24:44.155Z | 5a2ed335758c6e4347f5dcb0 |
| 9 | 4177 | FL | Escambia (County) | CENTURY | 32535 | 10 | 10 | 6 | 15358.77 | 10 | 6 | 13193.77 | 6 | 3 | 2165.00 | 2018-11-20T21:24:44.197Z | 5a2ed335758c6e4347f5dcb4 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 114825 | 4476 | TN | Wilson (County) | LEBANON | 37087 | 154 | 116 | 13 | 43344.64 | 101 | 11 | 28105.17 | 63 | 8 | 15239.47 | 2020-06-12T19:37:02.818Z | 5ee3d95e96aa984835b0277a |
| 114826 | 4476 | TN | Wilson (County) | LEBANON | 37090 | 201 | 173 | 17 | 58695.20 | 162 | 13 | 38807.20 | 42 | 8 | 19888.00 | 2020-06-12T19:37:02.833Z | 5ee3d95e96aa984835b0277b |
| 114827 | 4476 | TN | Wilson (County) | LEBANON | 37122 | 2 | 0 | 0 | 0.00 | 0 | 0 | 0.00 | 0 | 0 | 0.00 | 2020-06-12T19:37:02.834Z | 5ee3d95e96aa984835b0277c |
| 114828 | 4476 | TN | Wilson (County) | LEWISBURG | 37091 | 1 | 1 | 0 | 0.00 | 1 | 0 | 0.00 | 1 | 0 | 0.00 | 2020-06-12T19:37:02.835Z | 5ee3d95e96aa984835b0277d |
| 114829 | 4476 | TN | Wilson (County) | MCMINNVILLE | 37110 | 1 | 1 | 0 | 0.00 | 1 | 0 | 0.00 | 0 | 0 | 0.00 | 2020-06-12T19:37:02.836Z | 5ee3d95e96aa984835b0277e |
| 114830 | 4476 | TN | Wilson (County) | MILTON | 37118 | 1 | 0 | 0 | 0.00 | 0 | 0 | 0.00 | 0 | 0 | 0.00 | 2020-06-12T19:37:02.838Z | 5ee3d95e96aa984835b0277f |
| 114831 | 4476 | TN | Wilson (County) | MOUNT JULIET | 37122 | 394 | 339 | 23 | 115894.88 | 321 | 20 | 83606.79 | 86 | 8 | 32288.09 | 2020-06-12T19:37:02.839Z | 5ee3d95e96aa984835b02780 |
| 114832 | 4476 | TN | Wilson (County) | MT JULIET | 37122 | 5 | 5 | 0 | 0.00 | 5 | 0 | 0.00 | 3 | 0 | 0.00 | 2020-06-12T19:37:02.840Z | 5ee3d95e96aa984835b02781 |
| 114833 | 4476 | TN | Wilson (County) | WATERTOWN | 37184 | 2 | 2 | 0 | 0.00 | 2 | 0 | 0.00 | 0 | 0 | 0.00 | 2020-06-12T19:37:02.841Z | 5ee3d95e96aa984835b02782 |
| 114834 | 4476 | TN | Wilson (County) | OLD HICKORY | 37138 | 8 | 5 | 1 | 6796.90 | 3 | 1 | 6796.90 | 2 | 0 | 0.00 | 2020-06-12T19:37:02.842Z | 5ee3d95e96aa984835b02783 |
114835 rows × 17 columns
#for comparison with lastEtlDate to handle next ETL run (not implemented here further)
ihpProgram_src1['lastRefresh'] = pd.to_datetime(ihpProgram_src1['lastRefresh'].str.slice(0, 10, 1))
#copy of source for relief fact (for debugging to avoid re-reading file)
ihpProgram_src = ihpProgram_src1
ihpProgram_src.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 114835 entries, 0 to 114834 Data columns (total 17 columns): disasterNumber 114835 non-null int64 state 114835 non-null object county 114835 non-null object city 114819 non-null object zipCode 114809 non-null object totalValidRegistrations 114835 non-null int64 ihpReferrals 114835 non-null int64 ihpEligible 114835 non-null int64 ihpAmount 114835 non-null float64 haReferrals 114835 non-null int64 haEligible 114835 non-null int64 haAmount 114835 non-null float64 onaReferrals 114835 non-null int64 onaEligible 114835 non-null int64 onaAmount 114835 non-null float64 lastRefresh 114835 non-null datetime64[ns] id 114835 non-null object dtypes: datetime64[ns](1), float64(3), int64(8), object(5) memory usage: 14.9+ MB
#since there are so few,
#drop na records that would not key to other dimensional data
na_keys = ['disasterNumber','county','city','zipCode']
ihpProgram_src.dropna(subset=na_keys,inplace=True)
ihpProgram_src.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 114798 entries, 0 to 114834 Data columns (total 17 columns): disasterNumber 114798 non-null int64 state 114798 non-null object county 114798 non-null object city 114798 non-null object zipCode 114798 non-null object totalValidRegistrations 114798 non-null int64 ihpReferrals 114798 non-null int64 ihpEligible 114798 non-null int64 ihpAmount 114798 non-null float64 haReferrals 114798 non-null int64 haEligible 114798 non-null int64 haAmount 114798 non-null float64 onaReferrals 114798 non-null int64 onaEligible 114798 non-null int64 onaAmount 114798 non-null float64 lastRefresh 114798 non-null datetime64[ns] id 114798 non-null object dtypes: datetime64[ns](1), float64(3), int64(8), object(5) memory usage: 15.8+ MB
#listed columns for vertical partition of data
disaster_cols = ['disasterNumber','declarationType','incidentType','designatedArea','declarationDate']
#extract declared disasters file (OpenFEMA, 'Disaster', 2020)
disasterDeclarations_src = pd.read_csv('https://www.fema.gov/api/open/v2/DisasterDeclarationsSummaries.csv',
usecols=disaster_cols)
disasterDeclarations_src.sort_values('disasterNumber')
disasterDeclarations_src.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 61912 entries, 0 to 61911 Data columns (total 5 columns): disasterNumber 61912 non-null int64 declarationType 61912 non-null object declarationDate 61912 non-null object incidentType 61912 non-null object designatedArea 61912 non-null object dtypes: int64(1), object(4) memory usage: 2.4+ MB
#remove duplicates
disasterDeclarations_src.drop_duplicates(subset='disasterNumber',inplace=True)
disasterDeclarations_src.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 4528 entries, 0 to 61910 Data columns (total 5 columns): disasterNumber 4528 non-null int64 declarationType 4528 non-null object declarationDate 4528 non-null object incidentType 4528 non-null object designatedArea 4528 non-null object dtypes: int64(1), object(4) memory usage: 212.2+ KB
disasterDeclarations_src['incidentType'] = disasterDeclarations_src['incidentType'].str.replace("'","''")
disasterDeclarations_src['designatedArea'] = disasterDeclarations_src['designatedArea'].str.replace("'","''")
#add declaration date for date dimension data
ihpProgram_src['calendarDate'] = ihpProgram_src.merge(disasterDeclarations_src,on='disasterNumber',how='inner')['declarationDate']
ihpProgram_src.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 114798 entries, 0 to 114834 Data columns (total 18 columns): disasterNumber 114798 non-null int64 state 114798 non-null object county 114798 non-null object city 114798 non-null object zipCode 114798 non-null object totalValidRegistrations 114798 non-null int64 ihpReferrals 114798 non-null int64 ihpEligible 114798 non-null int64 ihpAmount 114798 non-null float64 haReferrals 114798 non-null int64 haEligible 114798 non-null int64 haAmount 114798 non-null float64 onaReferrals 114798 non-null int64 onaEligible 114798 non-null int64 onaAmount 114798 non-null float64 lastRefresh 114798 non-null datetime64[ns] id 114798 non-null object calendarDate 114761 non-null object dtypes: datetime64[ns](1), float64(3), int64(8), object(6) memory usage: 16.6+ MB
#drop na rows (na date rows are from recent data that has yet to be loaded into the disaster CSV file)
ihpProgram_src.dropna(inplace=True)
ihpProgram_src.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 114761 entries, 0 to 114797 Data columns (total 18 columns): disasterNumber 114761 non-null int64 state 114761 non-null object county 114761 non-null object city 114761 non-null object zipCode 114761 non-null object totalValidRegistrations 114761 non-null int64 ihpReferrals 114761 non-null int64 ihpEligible 114761 non-null int64 ihpAmount 114761 non-null float64 haReferrals 114761 non-null int64 haEligible 114761 non-null int64 haAmount 114761 non-null float64 onaReferrals 114761 non-null int64 onaEligible 114761 non-null int64 onaAmount 114761 non-null float64 lastRefresh 114761 non-null datetime64[ns] id 114761 non-null object calendarDate 114761 non-null object dtypes: datetime64[ns](1), float64(3), int64(8), object(6) memory usage: 16.6+ MB
#conforming/formatting string column data
ihpProgram_src['county'] = ihpProgram_src['county'].str.replace('(','').str.replace(')','').str.replace("'","''")
ihpProgram_src['city'] = ihpProgram_src['city'].str.title().str.replace("\\",'').str.replace("]",'').str.replace("'","''")
ihpProgram_src['calendarDate'] = ihpProgram_src['calendarDate'].str.slice(0, 10, 1)
int_measures = ['totalValidRegistrations','ihpReferrals','ihpEligible','haReferrals','haEligible','onaReferrals','onaEligible']
ihpProgram_src[int_measures] = ihpProgram_src[int_measures].astype(int)
ihpProgram_src.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 114761 entries, 0 to 114797 Data columns (total 18 columns): disasterNumber 114761 non-null int64 state 114761 non-null object county 114761 non-null object city 114761 non-null object zipCode 114761 non-null object totalValidRegistrations 114761 non-null int32 ihpReferrals 114761 non-null int32 ihpEligible 114761 non-null int32 ihpAmount 114761 non-null float64 haReferrals 114761 non-null int32 haEligible 114761 non-null int32 haAmount 114761 non-null float64 onaReferrals 114761 non-null int32 onaEligible 114761 non-null int32 onaAmount 114761 non-null float64 lastRefresh 114761 non-null datetime64[ns] id 114761 non-null object calendarDate 114761 non-null object dtypes: datetime64[ns](1), float64(3), int32(7), int64(1), object(6) memory usage: 13.6+ MB
#open connection with db
import pyodbc
conn = pyodbc.connect('Driver={SQL Server};'
'Server=MARTINPC-01;'
'Database=cs689TermProj;'
'Trusted_Connection=yes;')
cursor = conn.cursor()
disaster_dimension = disasterDeclarations_src.loc[:,disaster_cols[:-1]]
disaster_dimension.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 4528 entries, 0 to 61910 Data columns (total 4 columns): disasterNumber 4528 non-null int64 declarationType 4528 non-null object incidentType 4528 non-null object designatedArea 4528 non-null object dtypes: int64(1), object(3) memory usage: 176.9+ KB
#populate disaster dimension
for i, row in disaster_dimension.iterrows():
disaster_sql = "INSERT INTO cs689TermProj.dbo.Disaster_Dimension(disasterId,\
femaDisasterNumber,incidentType,designatedArea) VALUES \
(NEXT VALUE FOR disaster_PK,'" + str(row.disasterNumber) + "','" + str(row.incidentType) + "', '" + str(row.designatedArea) + "');"
#print(disaster_sql)
cursor.execute(disaster_sql)
location_cols = ['county','state','city','zipCode']
location_dimension = ihpProgram_src.loc[:,location_cols].drop_duplicates(keep='first')
location_dimension.sort_values(['state','county','city'])
location_dimension['locationIndex'] = location_dimension.index
location_dimension.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 88327 entries, 0 to 114779 Data columns (total 5 columns): county 88327 non-null object state 88327 non-null object city 88327 non-null object zipCode 88327 non-null object locationIndex 88327 non-null int64 dtypes: int64(1), object(4) memory usage: 4.0+ MB
#index created as synthetic key to improve speed in connecting with fact table
ihpProgram_src['locationIndex'] = ihpProgram_src.merge(location_dimension, on=location_cols,how='left',indicator=True)['locationIndex']
for i, row in location_dimension.iterrows():
location_sql = "INSERT INTO cs689TermProj.dbo.Location_Dimension(locationId,locState,locCounty,locCity,locZipCode,locationIndex) VALUES (NEXT VALUE FOR location_PK,'" + str(row.state) + "','" + str(row.county) + "','" + str(row.city) + "','" + str(row.zipCode) + "','" + str(row.locationIndex) + "');"
#print(location_sql)
cursor.execute(location_sql)
#create date dimension data w/ pandas datetime (Pandas, 'Time Series / Date functionality', n.d.)
#used federal government FYE 9/30 per FEMA website
dateTime_dimension = pd.DataFrame({'calendarDate': pd.date_range('1953-01-01','2022-12-31')},)
dateTime_dimension['dayOfWeek'] = dateTime_dimension.calendarDate.dt.weekday_name
dateTime_dimension['calendarDayOfMonth'] = dateTime_dimension.calendarDate.dt.day
dateTime_dimension['calendarMonthOfYear'] = dateTime_dimension.calendarDate.dt.month
dateTime_dimension['calendarWeekOfYear'] = dateTime_dimension.calendarDate.dt.weekofyear
dateTime_dimension['calendarYear'] = dateTime_dimension.calendarDate.dt.year
dateTime_dimension['fiscalQuarter'] = pd.PeriodIndex(dateTime_dimension['calendarDate'], freq='Q-SEP').quarter
dateTime_dimension['fiscalYear'] = pd.PeriodIndex(dateTime_dimension['calendarDate'], freq='Q-SEP').year
dateTime_dimension.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 25567 entries, 0 to 25566 Data columns (total 8 columns): calendarDate 25567 non-null datetime64[ns] dayOfWeek 25567 non-null object calendarDayOfMonth 25567 non-null int64 calendarMonthOfYear 25567 non-null int64 calendarWeekOfYear 25567 non-null int64 calendarYear 25567 non-null int64 fiscalQuarter 25567 non-null int64 fiscalYear 25567 non-null int64 dtypes: datetime64[ns](1), int64(6), object(1) memory usage: 1.6+ MB
cursor.execute('commit')
<pyodbc.Cursor at 0x1f9598120a8>
#populate dateTime dimension
for i, row in dateTime_dimension.iterrows():
dateTime_sql = "INSERT INTO cs689TermProj.dbo.DateTime_Dimension(dateTimeId, calendarDate, \
calendarDayOfWeek, calendarDayOfMonth, calendarMonthOfYear, calendarWeekOfYear, calendarYear, fiscalQuarter, fiscalYear)\
VALUES (NEXT VALUE FOR dateTime_PK,'" + str(row.calendarDate) + "','" + str(row.dayOfWeek) + "',\
'" + str(row.calendarDayOfMonth) + "','" + str(row.calendarMonthOfYear) + "','" + str(row.calendarWeekOfYear) + "',\
'" + str(row.calendarYear) + "','" + str(row.fiscalQuarter) + "','" + str(row.fiscalYear) + "');"
#print(dateTime_sql)
cursor.execute(dateTime_sql)
#get synthetic keys from DBMS
location_keys = pd.read_sql_query(
'SELECT locationId, locationIndex FROM dbo.Location_Dimension',conn)
disaster_keys = pd.read_sql_query(
'SELECT disasterId,femaDisasterNumber AS disasterNumber FROM dbo.Disaster_Dimension',conn)
dateTime_keys = pd.read_sql_query(
'SELECT dateTimeId,calendarDate FROM dbo.DateTime_Dimension',conn)
#add synthetic key columns
ihpProgram_src['disasterId'] = ihpProgram_src.merge(disaster_keys,on='disasterNumber',how='left',indicator=True)['disasterId']
ihpProgram_src['locationId'] = ihpProgram_src.merge(location_keys,on='locationIndex',how='left',indicator=True)['locationId']
ihpProgram_src['dateTimeId'] = ihpProgram_src.merge(dateTime_keys, on='calendarDate',how='left',indicator=True)['dateTimeId']
relief_cols = ['disasterId','locationId','dateTimeId','totalValidRegistrations',
'ihpReferrals','ihpEligible','ihpAmount','haReferrals','haEligible',
'haAmount','onaReferrals','onaEligible','onaAmount']
relief_fact = ihpProgram_src.loc[:,relief_cols]
relief_fact.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 114761 entries, 0 to 114797 Data columns (total 13 columns): disasterId 114761 non-null float64 locationId 114761 non-null float64 dateTimeId 114761 non-null float64 totalValidRegistrations 114761 non-null int32 ihpReferrals 114761 non-null int32 ihpEligible 114761 non-null int32 ihpAmount 114761 non-null float64 haReferrals 114761 non-null int32 haEligible 114761 non-null int32 haAmount 114761 non-null float64 onaReferrals 114761 non-null int32 onaEligible 114761 non-null int32 onaAmount 114761 non-null float64 dtypes: float64(6), int32(7) memory usage: 9.2 MB
relief_fact.dropna(inplace=True)
relief_fact.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 114761 entries, 0 to 114797 Data columns (total 13 columns): disasterId 114761 non-null float64 locationId 114761 non-null float64 dateTimeId 114761 non-null float64 totalValidRegistrations 114761 non-null int32 ihpReferrals 114761 non-null int32 ihpEligible 114761 non-null int32 ihpAmount 114761 non-null float64 haReferrals 114761 non-null int32 haEligible 114761 non-null int32 haAmount 114761 non-null float64 onaReferrals 114761 non-null int32 onaEligible 114761 non-null int32 onaAmount 114761 non-null float64 dtypes: float64(6), int32(7) memory usage: 9.2 MB
for i,row in relief_fact.iterrows():
relief_sql = "INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId,\
totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount,\
onaReferrals,onaEligible,onaAmount) VALUES ('" + str(row.disasterId) + "',\
'" + str(row.locationId) + "','" + str(row.dateTimeId) + "','" + str(row.totalValidRegistrations.astype(int)) + "',\
'" + str(row.ihpReferrals.astype(int)) + "','" + str(row.ihpEligible.astype(int)) + "','" + str(row.ihpAmount) + "',\
'" + str(row.haReferrals.astype(int)) + "','" + str(row.haEligible.astype(int)) + "','" + str(row.haAmount) + "',\
'" + str(row.onaReferrals.astype(int)) + "','" + str(row.onaEligible.astype(int)) + "','" + str(row.onaAmount) + "');"
print(relief_sql)
cursor.execute(relief_sql)
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000000.0','1022405.0','577', '519','290','3474481.96', '489','277','3376177.47', '223','55','98304.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088264.0','1047972.0','1', '1','1','6445.93', '1','1','1660.0', '1','1','4785.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000001.0','1022405.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088265.0','1047972.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000002.0','1022405.0','40', '39','24','42670.37', '39','16','36297.25', '20','14','6373.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088266.0','1047972.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000003.0','1022405.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088267.0','1047972.0','728', '598','328','1443975.86', '525','290','1254682.24', '318','116','189293.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000004.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088268.0','1047972.0','10', '10','6','15358.77', '10','6','13193.77', '6','3','2165.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000005.0','1022405.0','4', '2','1','4117.76', '1','1','3867.76', '2','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088269.0','1047972.0','1840', '1603','1067','5625332.14', '1509','952','4530539.38', '935','494','1094792.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000006.0','1022405.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088270.0','1047972.0','27', '26','9','27844.5', '26','9','26618.32', '9','3','1226.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000007.0','1022405.0','12', '11','5','15113.64', '11','5','15113.64', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088271.0','1047972.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000008.0','1022405.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088272.0','1047972.0','5', '3','2','2571.74', '3','2','2571.74', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000009.0','1022405.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088273.0','1047972.0','327', '247','139','526602.59', '233','126','435120.23', '115','55','91482.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000010.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088274.0','1047972.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000011.0','1022405.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088275.0','1047972.0','1', '1','1','2049.01', '1','1','1660.0', '1','1','389.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000012.0','1022405.0','251', '204','101','391570.72', '187','96','351852.99', '83','26','39717.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088276.0','1047972.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000013.0','1022405.0','78', '56','32','90015.21', '51','32','81486.56', '24','8','8528.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088277.0','1047972.0','972', '829','433','1695238.43', '766','374','1037324.83', '509','220','657913.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000014.0','1022405.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088278.0','1047972.0','1', '1','1','678.0', '0','0','0.0', '1','1','678.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000015.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088279.0','1047972.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000016.0','1022405.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088280.0','1047972.0','399', '372','164','770514.2', '367','151','740388.6', '159','43','30125.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000017.0','1022405.0','29', '27','12','38836.9', '26','11','35412.32', '15','7','3424.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088281.0','1047972.0','28', '26','16','44956.18', '25','16','41543.69', '13','5','3412.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000018.0','1022405.0','395', '326','245','1715605.53', '319','236','1447696.76', '151','89','267908.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088282.0','1047972.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000019.0','1022405.0','1', '1','1','241.9', '1','1','241.9', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088283.0','1047972.0','4', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000020.0','1022405.0','7', '7','0','0.0', '6','0','0.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088284.0','1047972.0','2', '2','1','5457.85', '1','1','1254.0', '2','1','4203.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000021.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088285.0','1047972.0','2242', '1916','1012','4066841.74', '1694','825','2940118.86', '1395','605','1126722.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000022.0','1022405.0','3', '1','1','4000.0', '0','0','0.0', '1','1','4000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088286.0','1047972.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000023.0','1022405.0','26', '17','10','41431.65', '17','10','41431.65', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088287.0','1047972.0','21', '18','8','27074.19', '18','7','26809.69', '7','1','264.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000024.0','1022405.0','168', '148','73','167565.47', '139','72','156158.41', '53','12','11407.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088288.0','1047972.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000025.0','1022405.0','1', '1','1','7500.0', '0','0','0.0', '1','1','7500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088289.0','1047972.0','66', '58','37','121262.24', '57','35','107964.24', '21','6','13298.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000026.0','1022405.0','203', '146','72','210872.99', '131','53','154068.74', '85','39','56804.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088290.0','1047972.0','3', '3','1','2238.0', '3','1','2238.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000027.0','1022405.0','433', '348','178','923361.18', '294','148','784742.22', '176','73','138618.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088291.0','1047972.0','13', '13','9','12570.12', '13','8','10811.78', '5','3','1758.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000028.0','1022405.0','234', '190','102','382226.85', '166','76','271873.71', '119','62','110353.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088292.0','1047972.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000029.0','1022405.0','1', '1','1','197.0', '1','1','197.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088293.0','1047972.0','147', '134','69','216634.69', '124','67','200037.88', '79','23','16596.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000030.0','1022405.0','199', '177','134','545352.92', '170','119','458185.01', '94','63','87167.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088294.0','1047972.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000031.0','1022405.0','1', '1','1','1396.0', '1','1','1396.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088295.0','1047972.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000032.0','1022405.0','8', '5','1','1502.56', '5','1','1502.56', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088296.0','1047972.0','638', '533','161','311886.56', '498','119','275213.57', '288','65','36672.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000033.0','1022405.0','14', '12','0','0.0', '12','0','0.0', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088297.0','1047972.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000034.0','1022405.0','26', '23','5','9945.76', '23','5','9945.76', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088298.0','1047972.0','82', '73','44','206511.8', '70','43','200946.53', '26','8','5565.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000035.0','1022405.0','12', '12','10','27833.48', '12','10','26762.72', '5','2','1070.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088299.0','1047972.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000036.0','1022405.0','194', '145','74','323711.33', '141','73','306542.49', '50','19','17168.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088300.0','1047972.0','65', '55','35','162490.46', '55','35','134599.69', '19','7','27890.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000037.0','1022405.0','5', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088301.0','1047972.0','31', '30','16','56192.54', '29','15','50597.68', '19','6','5594.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000038.0','1022405.0','9', '5','1','673.24', '5','1','673.24', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088302.0','1047972.0','10', '6','2','3629.72', '6','2','1945.28', '2','1','1684.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000039.0','1022405.0','8', '7','4','12486.3', '6','4','5886.3', '4','1','6600.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088303.0','1047972.0','944', '810','419','1913205.15', '716','356','1465789.56', '488','212','447415.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000040.0','1022405.0','9', '9','2','2807.01', '9','2','2317.85', '3','1','489.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088304.0','1047972.0','13', '10','7','24947.61', '10','7','21575.52', '3','1','3372.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000041.0','1022405.0','2', '2','1','551.93', '2','1','551.93', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088305.0','1047972.0','1', '1','1','3365.58', '0','0','0.0', '1','1','3365.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000042.0','1022405.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088306.0','1047972.0','22', '22','12','79430.77', '22','10','76466.27', '3','3','2964.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000043.0','1022405.0','2', '1','1','1778.0', '1','1','1778.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088307.0','1047972.0','4', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000044.0','1022405.0','656', '552','254','1156528.3', '496','213','788596.5', '373','142','367931.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088308.0','1047972.0','7', '7','5','9718.02', '7','5','7448.46', '7','4','2269.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000045.0','1022405.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088309.0','1047972.0','6', '5','4','10401.94', '5','4','9520.94', '2','2','881.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000046.0','1022405.0','94', '77','41','185213.82', '77','40','177289.91', '24','9','7923.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088310.0','1047972.0','933', '796','427','2780590.28', '734','384','2476015.14', '410','166','304575.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000047.0','1022405.0','2', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088311.0','1047972.0','4', '3','2','1147.87', '3','1','693.86', '2','2','454.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000048.0','1022405.0','780', '676','440','2899535.28', '636','408','2429099.1', '402','199','470436.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088312.0','1047972.0','72', '62','23','90265.94', '61','23','83978.56', '20','7','6287.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000049.0','1022405.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088313.0','1047972.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000050.0','1022405.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088314.0','1047972.0','4', '3','2','3730.36', '3','2','3730.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000051.0','1022405.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088315.0','1047972.0','14', '12','0','0.0', '12','0','0.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000052.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088316.0','1047972.0','1', '1','1','861.84', '1','1','861.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000053.0','1022405.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088317.0','1047972.0','8', '6','2','587.78', '6','2','587.78', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000054.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088318.0','1047972.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000055.0','1022405.0','129', '96','52','213760.69', '93','50','200333.07', '41','13','13427.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088319.0','1047972.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000056.0','1022405.0','508', '411','239','1216724.13', '393','219','1007780.36', '182','91','208943.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088320.0','1047972.0','1', '1','1','4687.76', '1','1','1400.0', '1','1','3287.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000057.0','1022405.0','69', '58','29','69370.5', '54','26','59789.84', '26','8','9580.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088321.0','1047972.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000058.0','1022405.0','11', '9','4','28869.6', '9','4','21899.76', '5','2','6969.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088322.0','1047972.0','4', '2','1','241.9', '2','1','241.9', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000059.0','1022405.0','20', '19','16','59493.52', '19','14','56086.9', '13','6','3406.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088323.0','1047972.0','1', '1','1','1319.12', '1','1','1319.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000060.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088324.0','1047972.0','82', '72','17','97385.33', '72','12','92488.03', '27','7','4897.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000061.0','1022405.0','19', '17','3','15246.36', '17','3','15246.36', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088325.0','1047972.0','19', '16','8','12167.65', '16','8','10844.98', '10','1','1322.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000062.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088326.0','1047972.0','4', '4','1','234.6', '4','1','234.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000063.0','1022405.0','6', '5','2','1827.24', '5','2','1827.24', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088327.0','1047972.0','2', '2','1','2088.44', '2','1','2088.44', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000064.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088328.0','1047972.0','1', '1','1','2467.94', '1','1','2322.94', '1','1','145.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000065.0','1022405.0','10', '9','2','6321.17', '9','2','6321.17', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088329.0','1047972.0','2', '2','1','1179.4', '2','1','478.32', '1','1','701.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000066.0','1022405.0','3', '3','1','4496.13', '3','1','1422.0', '1','1','3074.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088330.0','1047972.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000067.0','1022405.0','218', '186','107','291672.94', '169','93','256630.27', '88','37','35042.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088331.0','1047972.0','12', '12','7','23461.4', '12','7','18018.19', '5','4','5443.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000068.0','1022405.0','73', '56','33','103342.35', '50','30','87933.84', '26','7','15408.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088332.0','1047972.0','491', '423','212','631563.58', '411','195','553122.21', '188','75','78441.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000069.0','1022405.0','211', '181','135','770372.84', '174','128','696459.63', '95','60','73913.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088333.0','1047972.0','71', '59','44','218404.03', '56','40','176046.58', '22','15','42357.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000070.0','1022405.0','5', '5','1','3661.7', '5','1','3397.2', '4','1','264.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088334.0','1047972.0','17', '13','3','9881.71', '13','3','9881.71', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000071.0','1022405.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088335.0','1047972.0','102', '102','82','283427.95', '101','81','259993.57', '56','24','23434.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000072.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088336.0','1047972.0','7', '6','2','9029.28', '5','1','2429.28', '2','1','6600.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000073.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088337.0','1047972.0','4', '4','2','3996.19', '4','1','2196.0', '4','1','1800.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000074.0','1022405.0','6', '5','3','7099.17', '5','3','7099.17', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088338.0','1047972.0','106', '96','24','100576.09', '94','22','72593.49', '38','6','27982.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000075.0','1022405.0','227', '193','88','203233.43', '175','74','181115.86', '90','30','22117.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088339.0','1047972.0','4', '4','0','0.0', '4','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000076.0','1022405.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088340.0','1047972.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000077.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088341.0','1047972.0','114', '106','43','314080.86', '106','40','260365.75', '47','15','53715.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000078.0','1022405.0','2', '2','2','1188.21', '2','2','1188.21', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088342.0','1047972.0','123', '106','59','129107.61', '104','52','118803.52', '49','17','10304.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000079.0','1022405.0','1', '1','1','5973.98', '0','0','0.0', '1','1','5973.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088343.0','1047972.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000080.0','1022405.0','4', '2','1','1660.0', '1','1','1660.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088344.0','1047972.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000081.0','1022405.0','4', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088345.0','1047972.0','5', '5','2','1905.79', '5','2','1905.79', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000082.0','1022405.0','309', '259','154','948424.97', '249','150','836801.46', '99','42','111623.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088346.0','1047972.0','303', '242','177','953255.98', '231','167','670059.42', '122','85','283196.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000083.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088347.0','1047972.0','173', '151','83','219987.77', '144','79','183904.98', '60','23','36082.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000084.0','1022405.0','7', '7','5','5447.49', '7','5','5447.49', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088348.0','1047972.0','501', '485','276','712217.17', '473','250','610522.59', '300','123','101694.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000085.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088349.0','1047972.0','14', '13','8','10481.2', '13','8','8917.21', '7','5','1563.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000086.0','1022405.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088350.0','1047972.0','9', '5','0','0.0', '5','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000087.0','1022405.0','68', '56','36','139437.62', '50','31','124334.9', '28','12','15102.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088351.0','1047972.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000088.0','1022405.0','21', '17','9','23453.19', '15','9','22459.9', '6','2','993.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088352.0','1047972.0','191', '156','90','615175.78', '149','86','524720.82', '61','26','90454.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000089.0','1022405.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088353.0','1047972.0','1', '1','1','1422.0', '1','1','1422.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000090.0','1022405.0','1', '1','1','2736.03', '1','1','2736.03', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088354.0','1047972.0','28', '21','14','21232.25', '20','14','20719.77', '7','1','512.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000091.0','1022405.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088355.0','1047972.0','20', '17','10','22900.17', '16','10','20336.5', '5','2','2563.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000092.0','1022405.0','309', '278','158','512934.13', '258','143','461439.32', '138','51','51494.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088356.0','1047972.0','5', '2','1','2666.84', '2','1','2666.84', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000093.0','1022405.0','772', '659','363','2281844.47', '596','306','1865233.0', '391','164','416611.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088357.0','1047972.0','1', '1','1','5476.43', '1','1','4971.93', '1','1','504.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000094.0','1022405.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088358.0','1047972.0','9', '7','3','3440.21', '7','3','3440.21', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000095.0','1022405.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088359.0','1047972.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000096.0','1022405.0','12', '11','2','5787.67', '11','2','5787.67', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088360.0','1047972.0','7', '6','3','3750.24', '6','2','2517.15', '4','2','1233.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000097.0','1022405.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088361.0','1047972.0','7', '7','0','0.0', '7','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000098.0','1022405.0','4', '4','2','2321.82', '4','2','2321.82', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088362.0','1047972.0','3', '3','2','4800.23', '3','2','4800.23', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000099.0','1022405.0','4', '3','3','6427.77', '3','3','6427.77', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088363.0','1047972.0','975', '832','287','1523262.94', '789','261','1009437.6', '395','163','513825.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000100.0','1022405.0','1', '1','1','231.48', '0','0','0.0', '1','1','231.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088364.0','1047972.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000101.0','1022405.0','109', '105','53','102389.85', '105','46','87722.1', '55','23','14667.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088365.0','1047972.0','67', '62','29','48817.97', '61','21','45394.01', '36','8','3423.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000102.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088366.0','1047972.0','4', '3','2','5261.97', '3','2','5261.97', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000103.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088367.0','1047972.0','56', '53','14','150033.07', '53','13','129839.21', '19','7','20193.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000104.0','1022405.0','138', '107','27','103029.01', '100','20','76025.27', '50','16','27003.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088368.0','1047972.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000105.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088369.0','1047972.0','3', '3','2','5593.0', '3','2','5593.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000106.0','1022405.0','189', '141','74','325647.62', '126','65','228608.33', '70','35','97039.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088370.0','1047972.0','85', '80','36','64502.4', '79','32','59756.64', '37','8','4745.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000107.0','1022405.0','17', '16','6','44388.54', '15','6','35398.44', '11','3','8990.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088371.0','1047972.0','363', '320','91','233507.25', '296','66','184679.25', '154','41','48828.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000108.0','1022405.0','4', '4','1','252.72', '4','0','0.0', '2','1','252.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088372.0','1047972.0','6', '6','0','0.0', '6','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000109.0','1022405.0','2', '2','2','15229.8', '2','1','13011.68', '2','2','2218.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088373.0','1047972.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000110.0','1022405.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088374.0','1047972.0','821', '754','274','477110.63', '703','165','336797.28', '514','171','140313.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000111.0','1022405.0','27', '27','16','15732.65', '27','13','13351.15', '16','8','2381.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088375.0','1047972.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000112.0','1022405.0','22', '19','7','112247.39', '19','7','111897.39', '10','1','350.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088376.0','1047972.0','6', '5','1','5950.94', '5','1','5585.78', '2','1','365.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000113.0','1022405.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088377.0','1047972.0','4', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000114.0','1022401.0','15', '15','7','126108.03', '15','7','114264.28', '5','2','11843.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088378.0','1047968.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000115.0','1022401.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088379.0','1047968.0','393', '360','144','309902.46', '311','84','210181.23', '248','103','99721.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000116.0','1022401.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088380.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000117.0','1022401.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088381.0','1047968.0','15', '14','2','3135.95', '14','2','1440.04', '8','1','1695.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000118.0','1022401.0','6', '5','0','0.0', '4','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088382.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000119.0','1022401.0','763', '615','142','423952.84', '566','113','228020.06', '301','83','195932.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088383.0','1047968.0','4', '3','3','2643.17', '3','3','2643.17', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000120.0','1022401.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088384.0','1047968.0','100', '81','55','380856.54', '78','48','304813.02', '46','28','76043.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000121.0','1022401.0','1', '1','1','1545.6', '0','0','0.0', '1','1','1545.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088385.0','1047968.0','13', '11','1','848.9', '11','1','848.9', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000122.0','1022401.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088386.0','1047968.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000123.0','1022401.0','9', '7','1','1575.44', '7','1','1575.44', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088387.0','1047968.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000124.0','1022401.0','16', '13','3','34972.88', '13','3','34972.88', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088388.0','1047968.0','20', '17','6','42967.59', '17','5','41454.8', '6','2','1512.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000125.0','1022401.0','4', '3','1','1258.25', '3','1','1258.25', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088389.0','1047968.0','26', '24','21','34493.88', '24','16','29739.43', '18','7','4754.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000126.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088390.0','1047968.0','336', '316','116','213178.46', '295','80','168807.4', '225','50','44371.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000127.0','1022401.0','43', '42','24','47382.97', '42','22','44904.28', '23','8','2478.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088391.0','1047968.0','97', '94','53','100824.92', '92','34','67891.85', '56','35','32933.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000128.0','1022401.0','3', '3','1','303.57', '3','0','0.0', '2','1','303.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088392.0','1047968.0','18', '15','3','13023.65', '13','2','4223.65', '7','1','8800.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000129.0','1022401.0','388', '364','164','335770.3', '339','122','258287.54', '222','90','77482.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088393.0','1047968.0','4', '2','1','17120.48', '2','1','1046.0', '1','1','16074.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000130.0','1022401.0','1', '1','1','2106.35', '1','1','1791.85', '1','1','314.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088394.0','1047968.0','79', '59','14','22303.15', '50','13','21144.16', '34','3','1158.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000131.0','1022401.0','5', '4','1','1840.51', '4','1','1840.51', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088395.0','1047968.0','10', '8','1','199.99', '7','0','0.0', '6','1','199.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000132.0','1022401.0','28', '25','5','12735.03', '24','4','11231.71', '11','2','1503.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088396.0','1047968.0','11', '9','2','32763.69', '9','2','32763.69', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000133.0','1022401.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088397.0','1047968.0','31', '25','2','13130.19', '24','2','10976.06', '6','1','2154.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000134.0','1022401.0','282', '222','58','524511.36', '206','51','316114.58', '111','31','208396.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088398.0','1047968.0','318', '285','79','281075.47', '278','78','251692.62', '118','15','29382.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000135.0','1022401.0','1', '1','1','2009.75', '1','1','2009.75', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088399.0','1047968.0','11', '11','8','11160.05', '10','7','10810.07', '5','1','349.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000136.0','1022401.0','1192', '1134','493','876610.67', '1088','360','691744.56', '774','247','184866.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088400.0','1047968.0','12', '9','1','13834.06', '7','1','12320.22', '5','1','1513.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000137.0','1022401.0','15', '15','2','8550.84', '13','2','8090.06', '7','1','460.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088401.0','1047968.0','6', '6','0','0.0', '6','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000138.0','1022401.0','15', '15','0','0.0', '13','0','0.0', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088402.0','1047968.0','2', '2','2','39809.57', '2','2','38650.17', '2','2','1159.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000139.0','1022401.0','1', '1','1','19249.07', '1','1','17485.38', '1','1','1763.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088403.0','1047968.0','7', '6','2','3920.16', '6','2','3920.16', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000140.0','1022401.0','2', '2','1','4800.06', '2','1','4800.06', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088404.0','1047968.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000141.0','1022401.0','2', '2','1','1836.8', '0','0','0.0', '2','1','1836.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088405.0','1047968.0','5', '3','2','4958.97', '3','2','4403.56', '1','1','555.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000142.0','1022401.0','3', '2','2','3064.32', '0','0','0.0', '2','2','3064.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088406.0','1047968.0','18', '17','1','1230.0', '16','1','1230.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000143.0','1022401.0','7', '6','1','601.36', '6','0','0.0', '2','1','601.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088407.0','1047968.0','57', '51','16','122083.21', '49','15','111734.46', '18','4','10348.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000144.0','1022401.0','244', '216','103','1100346.03', '210','89','769408.91', '121','48','330937.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088408.0','1047968.0','5', '5','2','6200.32', '0','0','0.0', '5','2','6200.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000145.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088409.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000146.0','1022401.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088410.0','1047968.0','17', '13','4','38150.78', '13','4','36262.78', '4','1','1888.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000147.0','1022401.0','134', '131','68','156736.25', '127','55','133338.15', '76','37','23398.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088411.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000148.0','1022401.0','255', '235','109','207882.46', '225','73','150075.31', '169','72','57807.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088412.0','1047968.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000149.0','1022401.0','105', '100','41','101755.67', '93','22','78488.06', '76','30','23267.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088413.0','1047968.0','4', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000150.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088414.0','1047968.0','15', '8','2','6984.99', '7','0','0.0', '5','2','6984.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000151.0','1022401.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088415.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000152.0','1022401.0','5', '5','0','0.0', '5','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088416.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000153.0','1022401.0','31', '28','0','0.0', '10','0','0.0', '27','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088417.0','1047968.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000154.0','1022401.0','1', '1','1','8332.8', '0','0','0.0', '1','1','8332.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088418.0','1047968.0','5', '5','0','0.0', '5','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000155.0','1022401.0','6', '5','3','65510.37', '5','3','55675.73', '3','1','9834.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088419.0','1047968.0','12', '12','5','12909.52', '11','5','11212.08', '4','2','1697.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000156.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088420.0','1047968.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000157.0','1022401.0','2', '1','1','727.89', '1','1','727.89', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088421.0','1047968.0','2', '2','1','2823.79', '2','1','2823.79', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000158.0','1022401.0','314', '293','200','310064.35', '292','196','296416.67', '178','27','13647.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088422.0','1047968.0','2', '2','1','119.7', '1','1','119.7', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000159.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088423.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000160.0','1022401.0','21', '14','7','28022.39', '14','6','27401.9', '3','1','620.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088424.0','1047968.0','1', '1','1','3939.98', '1','1','3939.98', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000161.0','1022401.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088425.0','1047968.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000162.0','1022401.0','3', '3','1','1974.0', '3','1','916.0', '1','1','1058.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088426.0','1047968.0','178', '166','17','159549.05', '165','15','95523.53', '49','11','64025.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000163.0','1022401.0','8', '8','0','0.0', '8','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088427.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000164.0','1022401.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088428.0','1047968.0','742', '668','329','826052.1', '590','200','567207.49', '499','217','258844.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000165.0','1022401.0','1', '1','1','2843.87', '1','1','2843.87', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088429.0','1047968.0','59', '50','23','52646.98', '48','18','38865.35', '33','11','13781.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000166.0','1022401.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088430.0','1047968.0','277', '253','17','87805.57', '247','15','81172.38', '46','3','6633.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000167.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088431.0','1047968.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000168.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088432.0','1047968.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000169.0','1022401.0','283', '250','78','333679.62', '247','73','275142.09', '107','35','58537.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088433.0','1047968.0','44', '42','22','35308.69', '42','20','34788.71', '26','2','519.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000170.0','1022401.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088434.0','1047968.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000171.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088435.0','1047968.0','95', '79','32','71332.06', '78','27','68737.52', '35','7','2594.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000172.0','1022401.0','17', '15','2','14267.02', '14','2','14267.02', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088436.0','1047968.0','3', '3','1','1128.76', '3','1','1128.76', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000173.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088437.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000174.0','1022401.0','23', '22','8','48363.7', '22','8','43073.91', '11','1','5289.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088438.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000175.0','1022401.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088439.0','1047968.0','4', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000176.0','1022401.0','12', '11','4','12101.55', '11','4','12101.55', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088440.0','1047968.0','5', '3','1','1561.64', '3','1','1561.64', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000177.0','1022401.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088441.0','1047968.0','652', '624','250','380562.47', '593','183','323785.18', '444','113','56777.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000178.0','1022401.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088442.0','1047968.0','122', '107','25','113353.86', '106','25','111336.14', '40','3','2017.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000179.0','1022401.0','3', '3','1','3686.02', '3','1','3337.38', '1','1','348.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088443.0','1047968.0','3', '3','2','36894.35', '3','2','36894.35', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000180.0','1022401.0','63', '58','8','32459.07', '56','7','29396.45', '22','3','3062.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088444.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000181.0','1022401.0','6', '5','3','2046.75', '5','3','1782.25', '2','1','264.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088445.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000182.0','1022401.0','6', '6','2','7026.07', '5','1','426.07', '3','1','6600.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088446.0','1047968.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000183.0','1022401.0','44', '39','20','53513.56', '39','19','48276.61', '22','9','5236.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088447.0','1047968.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000184.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088448.0','1047968.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003579.0', '2000185.0','1022401.0','22', '20','3','51337.94', '20','3','50853.95', '5','2','483.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008073.0', '2088449.0','1047968.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000186.0','1022401.0','42', '40','3','14270.57', '36','3','12961.84', '23','1','1308.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088450.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000187.0','1022401.0','7', '4','1','1210.0', '1','0','0.0', '4','1','1210.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088451.0','1047968.0','7', '6','0','0.0', '6','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000188.0','1022401.0','1120', '922','257','2451174.9', '847','208','1611411.99', '561','172','839762.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088452.0','1047968.0','6', '6','0','0.0', '6','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000189.0','1022401.0','1', '1','1','2653.02', '1','1','2653.02', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088453.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000190.0','1022401.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088454.0','1047968.0','1', '1','1','6999.9', '1','1','6999.9', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000191.0','1022401.0','16', '13','5','4177.32', '10','4','3556.83', '10','2','620.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088455.0','1047968.0','605', '561','199','391606.1', '520','126','308396.42', '358','119','83209.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000192.0','1022401.0','20', '19','9','26328.93', '18','7','24277.32', '11','5','2051.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088456.0','1047968.0','13', '12','2','4405.2', '11','2','4405.2', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000193.0','1022401.0','16', '13','0','0.0', '3','0','0.0', '13','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088457.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000194.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088458.0','1047968.0','1', '1','1','7900.0', '0','0','0.0', '1','1','7900.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000195.0','1022401.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088459.0','1047968.0','2', '2','1','1136.0', '2','1','1136.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000196.0','1022401.0','51', '48','14','27219.32', '45','11','16069.85', '25','7','11149.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088460.0','1047968.0','830', '678','100','297896.94', '639','84','216387.56', '283','40','81509.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000197.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088461.0','1047968.0','1', '1','1','715.8', '1','1','715.8', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000198.0','1022401.0','7', '6','1','4704.74', '6','1','4484.75', '4','1','219.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088462.0','1047968.0','4', '4','3','3813.11', '4','3','3813.11', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000199.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088463.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000200.0','1022401.0','11', '9','4','22623.17', '7','3','6440.7', '3','2','16182.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088464.0','1047968.0','4', '4','0','0.0', '3','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000201.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088465.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000202.0','1022401.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088466.0','1047968.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000203.0','1022401.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088467.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000204.0','1022401.0','168', '163','78','127944.55', '148','49','93788.41', '124','56','34156.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088468.0','1047968.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000205.0','1022401.0','736', '689','282','405553.63', '667','187','340305.8', '481','146','65247.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088469.0','1047968.0','170', '152','44','471138.31', '146','40','413664.65', '72','27','57473.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000206.0','1022401.0','1', '1','1','1080.2', '1','1','1080.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088470.0','1047968.0','12', '12','1','26449.25', '11','1','26449.25', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000207.0','1022401.0','21', '20','6','7346.61', '20','6','6612.87', '11','1','733.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088471.0','1047968.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000208.0','1022401.0','4', '4','3','4963.79', '4','2','4307.72', '4','2','656.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088472.0','1047968.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000209.0','1022401.0','1967', '1855','699','1499231.69', '1728','406','1055929.18', '1313','447','443302.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088473.0','1047968.0','5', '4','0','0.0', '4','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000210.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088474.0','1047968.0','5', '5','1','524.96', '5','1','524.96', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000211.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088475.0','1047968.0','4', '4','0','0.0', '4','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000212.0','1022401.0','27', '25','9','28971.91', '25','9','28971.91', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088476.0','1047968.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000213.0','1022401.0','340', '297','65','319524.26', '279','61','203702.98', '157','21','115821.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088477.0','1047968.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000214.0','1022401.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088478.0','1047968.0','16', '16','4','6973.78', '15','4','6973.78', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000215.0','1022401.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088479.0','1047968.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000216.0','1022401.0','5', '5','0','0.0', '5','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088480.0','1047968.0','2', '2','1','591.0', '2','1','591.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000217.0','1022401.0','148', '142','86','143273.82', '139','72','130379.28', '85','32','12894.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088481.0','1047968.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000218.0','1022401.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088482.0','1047968.0','10', '10','2','6689.0', '9','1','1724.0', '10','1','4965.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000219.0','1022401.0','91', '82','32','245717.88', '79','30','192104.8', '42','19','53613.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088483.0','1047968.0','37', '30','0','0.0', '30','0','0.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000220.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088484.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000221.0','1022401.0','3', '3','1','258.52', '3','1','258.52', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088485.0','1047968.0','3', '3','0','0.0', '3','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000222.0','1022401.0','1', '1','1','1944.44', '1','1','1889.21', '1','1','55.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088486.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000223.0','1022401.0','1', '1','1','3138.92', '1','1','3138.92', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088487.0','1047968.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000224.0','1022401.0','34', '33','9','99088.61', '33','8','84803.89', '13','1','14284.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088488.0','1047968.0','9', '7','6','20357.12', '0','0','0.0', '7','6','20357.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000225.0','1022401.0','1', '1','1','2688.0', '0','0','0.0', '1','1','2688.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088489.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000226.0','1022401.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088490.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000227.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088491.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000228.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088492.0','1047968.0','1719', '1555','1194','2693922.07', '1541','1156','2550413.06', '1058','202','143509.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000229.0','1022401.0','11', '8','5','8628.59', '7','5','5941.99', '7','3','2686.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088493.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000230.0','1022401.0','25', '23','20','24421.14', '23','20','23231.84', '14','4','1189.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088494.0','1047968.0','2', '2','2','24614.17', '2','2','24614.17', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000231.0','1022401.0','2', '2','2','4634.78', '2','2','4634.78', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088495.0','1047968.0','17', '16','2','7184.22', '14','2','7184.22', '10','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000232.0','1022401.0','2', '2','1','9188.09', '2','1','8698.93', '2','1','489.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088496.0','1047968.0','9', '8','1','8656.35', '7','1','3158.35', '3','1','5498.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000233.0','1022401.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088497.0','1047968.0','653', '603','298','612212.01', '535','176','424156.75', '476','222','188055.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000234.0','1022401.0','173', '155','105','178380.92', '153','99','171717.55', '96','12','6663.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088498.0','1047968.0','5', '5','1','3104.66', '2','1','3104.66', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000235.0','1022401.0','3', '3','1','175.35', '3','1','175.35', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088499.0','1047968.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000236.0','1022401.0','6', '6','2','3052.67', '5','2','3052.67', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088500.0','1047968.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000237.0','1022401.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088501.0','1047968.0','456', '387','39','100878.14', '366','27','73414.39', '142','25','27463.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000238.0','1022401.0','125', '90','9','18389.55', '81','9','16955.52', '46','1','1434.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088502.0','1047968.0','14', '12','4','16842.96', '12','3','14556.83', '10','3','2286.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000239.0','1022401.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088503.0','1047968.0','1', '1','1','196.48', '1','1','196.48', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000240.0','1022401.0','3', '3','3','9049.6', '0','0','0.0', '3','3','9049.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088504.0','1047968.0','16', '16','0','0.0', '16','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000241.0','1022401.0','1', '1','1','2329.6', '0','0','0.0', '1','1','2329.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088505.0','1047968.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000242.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088506.0','1047968.0','1', '1','1','2012.26', '0','0','0.0', '1','1','2012.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000243.0','1022401.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088507.0','1047968.0','13', '13','10','8240.17', '12','10','8240.17', '10','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000244.0','1022401.0','1286', '1219','185','1020169.48', '1194','162','296931.92', '395','126','723237.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088508.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000245.0','1022401.0','10', '8','3','34055.4', '7','2','5712.26', '4','2','28343.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088509.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000246.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088510.0','1047968.0','1', '1','1','3070.82', '1','1','3070.82', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000247.0','1022401.0','233', '191','115','571666.44', '183','110','422015.98', '73','36','149650.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088511.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000248.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088512.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000249.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088513.0','1047968.0','569', '484','117','654973.7', '453','97','437660.52', '206','53','217313.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000250.0','1022401.0','1', '1','1','3475.22', '1','1','3475.22', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088514.0','1047968.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000251.0','1022401.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088515.0','1047968.0','5', '5','1','5519.36', '2','0','0.0', '5','1','5519.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000252.0','1022401.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088516.0','1047968.0','4', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000253.0','1022401.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088517.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000254.0','1022401.0','7', '7','2','35581.72', '6','2','35581.72', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088518.0','1047968.0','4', '4','1','2032.2', '3','1','2032.2', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000255.0','1022401.0','102', '87','66','134517.0', '86','62','111422.07', '56','20','23094.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088519.0','1047968.0','9', '9','5','4160.18', '9','5','4160.18', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000256.0','1022401.0','802', '734','454','1045732.73', '717','441','923829.88', '469','69','121902.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088520.0','1047968.0','17', '17','12','14292.45', '17','11','13772.47', '12','2','519.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000257.0','1022401.0','1', '1','1','937.05', '0','0','0.0', '1','1','937.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088521.0','1047968.0','2', '2','2','29943.05', '2','2','27225.85', '2','1','2717.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000258.0','1022401.0','29', '20','5','9116.42', '20','5','7106.1', '5','1','2010.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088522.0','1047968.0','3', '3','1','1935.79', '3','1','1935.79', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000259.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088523.0','1047968.0','10', '10','4','11098.39', '10','3','10768.4', '7','2','329.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000260.0','1022401.0','199', '172','56','124867.14', '154','43','82553.86', '89','29','42313.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088524.0','1047968.0','1', '1','1','2671.82', '1','1','2671.82', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000261.0','1022401.0','29', '22','4','7808.89', '21','3','7608.9', '6','1','199.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088525.0','1047968.0','1', '1','1','2366.71', '1','1','1118.0', '1','1','1248.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000262.0','1022401.0','7', '7','0','0.0', '7','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088526.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000263.0','1022401.0','3', '2','1','1036.0', '2','1','1036.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088527.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000264.0','1022401.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088528.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000265.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088529.0','1047968.0','123', '110','23','67893.43', '106','20','57148.33', '61','8','10745.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000266.0','1022401.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088530.0','1047968.0','1', '1','1','32400.0', '1','0','0.0', '1','1','32400.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000267.0','1022401.0','32', '30','4','13263.51', '30','4','13263.51', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088531.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000268.0','1022401.0','6', '5','2','2592.19', '5','2','2592.19', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088532.0','1047968.0','221', '198','90','1456599.24', '192','85','1256082.67', '109','26','200516.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000269.0','1022401.0','5', '4','3','11743.41', '4','3','11743.41', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088533.0','1047968.0','501', '473','340','949030.48', '18','0','0.0', '472','340','949030.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000270.0','1022401.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088534.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000271.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088535.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000272.0','1022401.0','414', '379','227','1064958.11', '67','35','375239.09', '374','202','689719.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088536.0','1047968.0','5', '5','1','32400.0', '5','1','32400.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000273.0','1022401.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088537.0','1047968.0','4', '4','0','0.0', '3','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000274.0','1022401.0','11', '10','1','9889.02', '10','1','1416.0', '3','1','8473.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088538.0','1047968.0','8', '5','0','0.0', '3','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000275.0','1022401.0','36', '33','21','38229.31', '33','20','37360.09', '17','3','869.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088539.0','1047968.0','14', '11','7','10805.0', '11','7','8597.53', '6','2','2207.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000276.0','1022401.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088540.0','1047968.0','2638', '2377','1638','5531308.29', '2328','1573','4997611.32', '1605','327','533696.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000277.0','1022401.0','10', '10','4','36706.31', '10','4','34816.9', '4','1','1889.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088541.0','1047968.0','41', '29','23','71149.66', '28','23','69608.83', '15','1','1540.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000278.0','1022401.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088542.0','1047968.0','83', '75','54','104966.48', '74','54','103666.53', '46','5','1299.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000279.0','1022401.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088543.0','1047968.0','13', '12','6','51727.08', '12','5','42201.78', '5','2','9525.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000280.0','1022401.0','323', '280','101','223005.16', '263','95','175098.06', '136','45','47907.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088544.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000281.0','1022401.0','80', '72','32','277257.63', '69','29','257302.34', '33','9','19955.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088545.0','1047968.0','1', '1','1','1470.44', '1','1','1470.44', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000282.0','1022401.0','320', '303','102','219026.27', '296','78','186012.61', '180','45','33013.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088546.0','1047968.0','467', '447','142','287138.44', '422','106','229029.19', '261','61','58109.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000283.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088547.0','1047968.0','66', '62','29','339950.4', '60','25','292935.36', '34','20','47015.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000284.0','1022401.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088548.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000285.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088549.0','1047968.0','74', '69','27','449266.34', '68','25','412909.23', '38','11','36357.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000286.0','1022401.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088550.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000287.0','1022401.0','6', '6','5','9775.36', '1','0','0.0', '6','5','9775.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088551.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000288.0','1022401.0','14', '12','0','0.0', '12','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088552.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000289.0','1022401.0','4', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088553.0','1047968.0','2', '2','1','8754.11', '2','1','1652.0', '1','1','7102.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000290.0','1022401.0','2', '2','1','1874.0', '2','1','1874.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088554.0','1047968.0','1', '1','1','1341.89', '1','1','1341.89', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000291.0','1022401.0','50', '50','41','45531.39', '50','41','45271.4', '37','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088555.0','1047968.0','4', '4','2','1286.75', '4','2','1286.75', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000292.0','1022401.0','79', '47','30','75203.59', '44','30','74414.1', '14','2','789.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088556.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000293.0','1022401.0','1', '1','1','988.57', '1','1','988.57', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088557.0','1047968.0','9', '7','3','39731.49', '7','3','39731.49', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000294.0','1022401.0','62', '44','22','72960.02', '41','22','50865.09', '22','5','22094.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088558.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000295.0','1022401.0','6', '6','1','721.61', '6','1','721.61', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088559.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000296.0','1022401.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088560.0','1047968.0','7', '7','3','25416.42', '5','2','3946.0', '7','3','21470.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000297.0','1022401.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088561.0','1047968.0','111', '107','0','0.0', '107','0','0.0', '21','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000298.0','1022401.0','5', '4','1','1104.0', '4','1','1104.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088562.0','1047968.0','107', '103','9','20186.17', '100','8','15213.36', '19','4','4972.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000299.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088563.0','1047968.0','3', '3','1','24461.08', '3','1','24461.08', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000300.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088564.0','1047968.0','7', '7','0','0.0', '7','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000301.0','1022401.0','10', '8','1','2250.0', '8','1','2250.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088565.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000302.0','1022401.0','4', '4','3','5093.82', '4','3','5093.82', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088566.0','1047968.0','9', '9','6','4806.5', '9','6','4277.0', '6','1','529.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000303.0','1022401.0','5', '5','4','17024.86', '5','4','17024.86', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088567.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000304.0','1022401.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088568.0','1047968.0','1653', '1426','1196','5488454.72', '1405','1194','5205166.33', '500','69','283288.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000305.0','1022401.0','7', '5','0','0.0', '5','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088569.0','1047968.0','4', '4','3','5543.31', '3','2','3827.02', '4','2','1716.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000306.0','1022401.0','5', '5','2','1133.61', '5','2','1133.61', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088570.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000307.0','1022401.0','6', '4','2','14160.07', '2','0','0.0', '2','2','14160.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088571.0','1047968.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000308.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088572.0','1047968.0','2', '2','1','2419.2', '0','0','0.0', '2','1','2419.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000309.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088573.0','1047968.0','11', '10','0','0.0', '9','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000310.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088574.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000311.0','1022401.0','2', '2','2','2167.7', '2','2','2167.7', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088575.0','1047968.0','23', '23','6','41098.04', '23','6','41098.04', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000312.0','1022401.0','167', '155','114','253508.47', '154','112','234034.49', '105','21','19473.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088576.0','1047968.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000313.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088577.0','1047968.0','3', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000314.0','1022401.0','158', '129','61','253453.16', '126','59','247932.49', '74','7','5520.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088578.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000315.0','1022401.0','33', '31','23','32628.93', '30','21','25688.33', '19','4','6940.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088579.0','1047968.0','3', '2','2','5560.23', '2','2','5560.23', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000316.0','1022401.0','288', '275','219','454429.94', '272','215','446904.56', '173','20','7525.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088580.0','1047968.0','48', '40','27','29018.52', '38','26','26917.55', '19','2','2100.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000317.0','1022401.0','1', '1','1','165.02', '1','1','165.02', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088581.0','1047968.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000318.0','1022401.0','1', '1','1','274.51', '1','1','274.51', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088582.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000319.0','1022401.0','66', '62','48','76932.47', '62','48','76932.47', '32','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088583.0','1047968.0','5', '5','0','0.0', '4','0','0.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000320.0','1022401.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088584.0','1047968.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000321.0','1022399.0','4', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088585.0','1047966.0','25', '23','19','63147.38', '23','19','56212.72', '9','1','6934.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000322.0','1022399.0','776', '598','316','2104923.47', '564','304','1756228.42', '333','91','348695.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088586.0','1047966.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000323.0','1022399.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088587.0','1047966.0','2179', '1932','1332','4883579.57', '1896','1271','4614583.99', '1083','235','268995.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000324.0','1022399.0','3', '2','1','12610.43', '2','1','12610.43', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088588.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000325.0','1022399.0','1', '1','1','4996.65', '1','1','2356.0', '1','1','2640.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088589.0','1047966.0','387', '347','246','482553.77', '338','233','437606.93', '200','43','44946.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000326.0','1022399.0','134', '107','43','173205.82', '96','42','162810.48', '68','5','10395.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088590.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000327.0','1022399.0','4', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088591.0','1047966.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000328.0','1022399.0','13', '13','10','41010.53', '12','10','41010.53', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088592.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000329.0','1022399.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088593.0','1047966.0','30', '27','15','43211.68', '26','15','32646.58', '14','4','10565.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000330.0','1022399.0','4', '4','1','1000.0', '4','0','0.0', '2','1','1000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088594.0','1047966.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000331.0','1022399.0','5', '5','2','3180.8', '0','0','0.0', '5','2','3180.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088595.0','1047966.0','7', '7','1','1296.0', '7','1','1296.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000332.0','1022399.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088596.0','1047966.0','4', '4','3','23791.52', '3','1','1712.0', '3','3','22079.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000333.0','1022399.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088597.0','1047966.0','55', '50','43','141035.12', '50','42','136146.61', '33','6','4888.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000334.0','1022399.0','9', '9','6','19453.4', '9','6','16962.73', '6','2','2490.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088598.0','1047966.0','3', '3','2','5639.06', '3','2','5639.06', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000335.0','1022399.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088599.0','1047966.0','1117', '913','689','4893139.78', '859','673','4690115.4', '589','127','203024.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000336.0','1022399.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088600.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000337.0','1022399.0','10', '7','0','0.0', '7','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088601.0','1047966.0','1', '1','1','258.51', '1','1','258.51', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000338.0','1022399.0','517', '481','352','918922.18', '470','331','848870.06', '284','62','70052.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088602.0','1047966.0','4', '4','0','0.0', '4','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000339.0','1022399.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088603.0','1047966.0','1', '1','1','1169.28', '0','0','0.0', '1','1','1169.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000340.0','1022399.0','10', '9','4','37285.79', '9','4','37285.79', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088604.0','1047966.0','152', '144','6','22049.39', '141','6','12615.53', '34','4','9433.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000341.0','1022399.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088605.0','1047966.0','3', '3','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000342.0','1022399.0','127', '114','62','122189.49', '112','59','105052.22', '74','14','17137.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088606.0','1047966.0','5', '5','3','4549.52', '5','3','4549.52', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000343.0','1022399.0','1', '1','1','2368.82', '1','1','2368.82', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088607.0','1047966.0','2740', '2497','1834','5623081.06', '2447','1797','5350797.37', '1661','293','272283.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000344.0','1022399.0','3', '2','1','350.63', '2','1','350.63', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088608.0','1047966.0','3', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000345.0','1022399.0','291', '247','211','1204076.26', '243','210','1165035.66', '100','8','39040.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088609.0','1047966.0','112', '93','48','103106.26', '89','48','96330.23', '43','4','6776.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000346.0','1022399.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088610.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000347.0','1022399.0','2', '2','1','351.52', '2','1','351.52', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088611.0','1047966.0','172', '155','82','178482.66', '153','74','137098.01', '87','30','41384.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000348.0','1022399.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088612.0','1047966.0','6', '5','1','840.07', '5','1','840.07', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000349.0','1022399.0','3', '3','2','825.3', '3','2','825.3', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088613.0','1047966.0','1241', '1091','802','1838128.17', '1064','787','1672474.93', '696','118','165653.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000350.0','1022399.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088614.0','1047966.0','164', '135','71','135699.7', '129','70','134951.54', '55','2','748.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000351.0','1022399.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088615.0','1047966.0','121', '103','46','97761.13', '96','44','94759.48', '60','8','3001.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000352.0','1022399.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088616.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000353.0','1022399.0','3', '2','2','1859.46', '2','2','1859.46', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088617.0','1047966.0','82', '74','47','85999.33', '72','46','62902.32', '41','7','23097.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000354.0','1022399.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088618.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000355.0','1022399.0','220', '197','119','229991.1', '192','116','194323.05', '134','33','35668.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088619.0','1047966.0','74', '58','30','56906.11', '54','29','55000.55', '25','2','1905.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000356.0','1022399.0','24', '20','15','58344.16', '20','15','58101.61', '10','1','242.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088620.0','1047966.0','1', '1','1','1219.9', '1','1','1219.9', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000357.0','1022399.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088621.0','1047966.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000358.0','1022399.0','39', '35','24','40350.37', '35','24','39187.86', '24','5','1162.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088622.0','1047966.0','99', '86','60','185131.84', '84','59','184363.86', '29','3','767.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000359.0','1022399.0','14', '13','10','10408.93', '13','10','10408.93', '11','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088623.0','1047966.0','1', '1','1','954.67', '1','1','954.67', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000360.0','1022399.0','81', '76','48','77246.29', '76','48','74086.6', '42','5','3159.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088624.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000361.0','1022399.0','139', '122','75','207277.17', '117','73','189901.79', '82','20','17375.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088625.0','1047966.0','45', '40','30','68447.02', '40','30','65663.53', '23','6','2783.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000362.0','1022399.0','186', '151','74','165930.29', '142','74','139978.35', '95','17','25951.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088626.0','1047966.0','3', '3','2','1398.7', '3','2','1398.7', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000363.0','1022399.0','1', '1','1','2290.9', '1','1','1244.0', '1','1','1046.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088627.0','1047966.0','2', '2','2','4100.56', '2','2','4100.56', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000364.0','1022399.0','141', '137','63','135090.9', '134','60','72283.98', '114','47','62806.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088628.0','1047966.0','2', '2','1','886.72', '2','1','886.72', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000365.0','1022399.0','276', '237','166','373929.45', '232','161','347841.24', '144','28','26088.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088629.0','1047966.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000366.0','1022399.0','41', '35','21','30561.79', '32','20','26086.99', '29','5','4474.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088630.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000367.0','1022399.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088631.0','1047966.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000368.0','1022399.0','1', '1','1','1254.89', '1','1','1254.89', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088632.0','1047966.0','21', '20','11','64129.78', '20','11','59788.01', '9','1','4341.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000369.0','1022399.0','1', '1','1','476.27', '1','1','476.27', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088633.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000370.0','1022399.0','2', '2','1','772.64', '2','1','772.64', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088634.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000371.0','1022399.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088635.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000372.0','1022399.0','58', '48','23','62826.13', '45','22','62306.15', '25','2','519.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088636.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000373.0','1022399.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088637.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000374.0','1022399.0','3', '3','3','5039.13', '3','3','5039.13', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088638.0','1047966.0','6', '6','4','4808.09', '6','4','4808.09', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000375.0','1022399.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088639.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000376.0','1022399.0','2', '2','1','2232.97', '2','0','0.0', '1','1','2232.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088640.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000377.0','1022399.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088641.0','1047966.0','54', '48','15','33478.17', '42','9','18979.25', '35','9','14498.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000378.0','1022399.0','21', '17','6','25216.05', '16','6','25216.05', '10','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088642.0','1047966.0','2', '2','1','3178.0', '2','1','3178.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000379.0','1022399.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088643.0','1047966.0','9', '6','4','8985.77', '6','4','8985.77', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000380.0','1022399.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088644.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000381.0','1022399.0','9', '6','0','0.0', '6','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088645.0','1047966.0','4', '3','1','17145.54', '3','1','17145.54', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000382.0','1022399.0','20', '12','9','25270.4', '12','9','22015.74', '8','2','3254.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088646.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000383.0','1022399.0','84', '79','65','152062.25', '78','64','145436.67', '50','12','6625.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088647.0','1047966.0','11', '9','3','8056.67', '9','3','8056.67', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000384.0','1022399.0','3', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088648.0','1047966.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000385.0','1022399.0','16', '14','10','20826.22', '14','10','20306.24', '10','2','519.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088649.0','1047966.0','79', '70','39','103369.39', '67','39','90698.97', '23','1','12670.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000386.0','1022399.0','14', '6','4','16731.26', '6','3','12989.78', '5','3','3741.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088650.0','1047966.0','19', '18','11','29322.41', '18','10','29062.42', '11','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000387.0','1022399.0','2', '1','1','440.32', '1','1','440.32', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088651.0','1047966.0','26', '25','8','12442.44', '25','8','10727.24', '15','2','1715.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000388.0','1022399.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088652.0','1047966.0','6', '6','1','1243.98', '6','1','1243.98', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000389.0','1022399.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088653.0','1047966.0','1', '1','1','2116.05', '1','1','1452.0', '1','1','664.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000390.0','1022399.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088654.0','1047966.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000391.0','1022399.0','3', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088655.0','1047966.0','7', '4','1','781.67', '2','1','781.67', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000392.0','1022399.0','1', '1','1','942.26', '1','1','942.26', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088656.0','1047966.0','4', '3','2','10183.24', '3','2','10183.24', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000393.0','1022399.0','9', '8','0','0.0', '7','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088657.0','1047966.0','0', '1','1','1938.19', '1','1','1123.2', '1','1','814.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000394.0','1022399.0','97', '89','36','90021.37', '86','30','76416.34', '64','16','13605.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088658.0','1047966.0','33', '31','7','63908.88', '28','6','31054.34', '16','2','32854.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000395.0','1022399.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088659.0','1047966.0','31', '24','16','262820.61', '24','16','244887.7', '11','3','17932.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000396.0','1022399.0','24', '23','19','21441.13', '23','19','20957.56', '15','1','483.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088660.0','1047966.0','20', '19','14','51374.6', '19','14','47595.28', '15','5','3779.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000397.0','1022399.0','11', '10','8','99352.29', '10','8','98142.43', '4','1','1209.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088661.0','1047966.0','6', '6','4','12443.26', '6','4','12443.26', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000398.0','1022399.0','8', '4','0','0.0', '0','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088662.0','1047966.0','3', '2','1','1850.05', '2','1','1252.0', '1','1','598.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000399.0','1022399.0','10', '8','5','9293.81', '8','4','8793.82', '3','1','499.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088663.0','1047966.0','2', '2','2','8353.62', '2','2','8353.62', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000400.0','1022399.0','2', '1','1','1025.65', '1','1','1025.65', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088664.0','1047966.0','17', '15','7','12993.15', '14','7','12993.15', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000401.0','1022399.0','13', '11','2','1599.54', '10','2','1599.54', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088665.0','1047966.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000402.0','1022399.0','6', '3','3','9568.66', '3','3','9568.66', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088666.0','1047966.0','49', '43','22','70060.97', '40','22','63830.27', '25','3','6230.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000403.0','1022399.0','1', '1','1','248.72', '1','1','248.72', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088667.0','1047966.0','9', '7','5','5737.47', '7','5','5737.47', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000404.0','1022399.0','9', '8','6','8379.36', '8','6','8379.36', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088668.0','1047966.0','7', '7','6','9872.82', '7','6','9872.82', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000405.0','1022399.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088669.0','1047966.0','37', '33','17','61445.88', '32','17','61185.89', '24','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000406.0','1022399.0','9', '7','1','1459.42', '6','1','1199.43', '3','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088670.0','1047966.0','3', '2','2','2358.21', '2','2','2098.22', '2','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000407.0','1022399.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088671.0','1047966.0','7', '5','3','23353.86', '4','3','18316.47', '3','1','5037.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000408.0','1022398.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088672.0','1047965.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000409.0','1022398.0','16', '15','4','5984.28', '13','3','4190.67', '7','2','1793.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088673.0','1047965.0','13', '10','8','18133.94', '10','8','18089.32', '7','1','44.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000410.0','1022398.0','78', '62','25','43951.91', '60','25','42501.5', '26','2','1450.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088674.0','1047965.0','1', '1','1','2220.53', '1','1','2220.53', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000411.0','1022398.0','45', '42','20','29970.94', '41','18','27849.73', '32','3','2121.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088675.0','1047965.0','2', '2','2','1164.11', '2','2','1164.11', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000412.0','1022398.0','40', '33','19','77642.74', '32','19','77642.74', '14','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088676.0','1047965.0','1', '1','1','2468.56', '1','1','1904.0', '1','1','564.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000413.0','1022398.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088677.0','1047965.0','436', '371','264','1002069.02', '360','264','985767.5', '165','15','16301.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000414.0','1022398.0','64', '48','31','116697.37', '47','30','109761.78', '26','3','6935.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088678.0','1047965.0','1', '1','1','1253.96', '1','1','1253.96', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000415.0','1022398.0','14', '12','5','31046.29', '10','5','29270.83', '5','1','1775.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088679.0','1047965.0','14', '9','2','4800.38', '7','2','4563.97', '8','1','236.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000416.0','1022398.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088680.0','1047965.0','68', '53','7','25163.01', '46','6','21241.11', '30','3','3921.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000417.0','1022398.0','24', '23','6','53599.6', '23','6','41036.26', '11','2','12563.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088681.0','1047965.0','20', '17','5','88864.9', '17','5','74946.43', '11','1','13918.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000418.0','1022398.0','5', '4','1','2783.39', '4','1','1244.0', '3','1','1539.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088682.0','1047965.0','135', '108','82','229232.21', '106','80','227993.06', '42','6','1239.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000419.0','1022398.0','1', '1','1','2290.3', '1','1','2290.3', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088683.0','1047965.0','484', '412','337','800712.84', '407','337','793927.39', '115','12','6785.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000420.0','1022398.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088684.0','1047965.0','4', '3','1','17336.48', '3','1','17336.48', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000421.0','1022398.0','277', '155','77','499013.77', '145','74','461518.59', '79','17','37495.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088685.0','1047965.0','90', '86','59','144478.31', '86','57','142498.12', '51','5','1980.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000422.0','1022398.0','38', '26','15','77644.88', '25','15','74279.8', '12','2','3365.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088686.0','1047965.0','228', '182','128','533251.78', '176','127','526950.29', '65','5','6301.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000423.0','1022398.0','13', '13','7','11100.42', '12','7','11100.42', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088687.0','1047965.0','5', '3','2','2180.0', '3','2','2180.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000424.0','1022398.0','1', '1','1','1850.05', '1','1','1252.0', '1','1','598.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088688.0','1047965.0','95', '88','27','55750.9', '83','27','52369.08', '42','3','3381.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000425.0','1022398.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088689.0','1047965.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000426.0','1022398.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088690.0','1047965.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000427.0','1022398.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088691.0','1047965.0','11', '11','8','15628.32', '11','8','14479.32', '7','2','1149.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000428.0','1022398.0','2', '1','1','94.34', '1','1','94.34', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088692.0','1047965.0','75', '65','49','144176.61', '65','46','127950.27', '46','10','16226.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000429.0','1022398.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088693.0','1047965.0','1', '1','1','2008.35', '1','1','1102.0', '1','1','906.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000430.0','1022398.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088694.0','1047965.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000431.0','1022398.0','2', '2','1','1622.92', '2','1','1622.92', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088695.0','1047965.0','4', '4','4','4746.28', '4','4','4746.28', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000432.0','1022398.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088696.0','1047965.0','28', '27','13','21217.57', '27','10','19641.99', '18','5','1575.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000433.0','1022398.0','12', '7','1','1738.05', '5','1','1738.05', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088697.0','1047965.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000434.0','1022398.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088698.0','1047965.0','3', '25','22','275310.88', '23','15','108585.93', '25','21','166724.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000435.0','1022398.0','484', '438','78','212329.5', '430','68','126212.29', '213','32','86117.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088699.0','1047965.0','85', '77','17','59033.35', '72','16','52903.64', '34','3','6129.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000436.0','1022398.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088700.0','1047965.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000437.0','1022398.0','4', '4','4','17835.03', '4','4','17835.03', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088701.0','1047965.0','19', '14','7','10762.36', '13','7','10520.58', '8','1','241.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000438.0','1022398.0','4', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088702.0','1047965.0','10', '8','5','8007.11', '8','5','8007.11', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000439.0','1022398.0','51', '42','20','29735.06', '36','20','29475.07', '28','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088703.0','1047965.0','8', '8','5','3976.25', '8','5','3976.25', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000440.0','1022398.0','4', '4','3','14904.92', '4','2','2333.17', '3','2','12571.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088704.0','1047965.0','1465', '1071','641','1611293.84', '1020','632','1578081.18', '483','54','33212.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000441.0','1022398.0','10', '10','6','9100.07', '10','6','7461.64', '4','1','1638.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088705.0','1047965.0','163', '139','114','313846.35', '137','108','286485.97', '92','21','27360.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000442.0','1022398.0','5', '21','14','99199.83', '18','6','7504.85', '13','10','91694.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088706.0','1047965.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000443.0','1022398.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088707.0','1047965.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000444.0','1022398.0','155', '128','80','412374.9', '125','79','376600.85', '61','6','35774.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088708.0','1047965.0','619', '529','381','6665622.87', '508','364','5589490.32', '385','206','1076132.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000445.0','1022371.0','20', '20','7','25439.8', '19','7','25439.8', '15','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088709.0','1047938.0','78', '67','28','66231.13', '61','20','49760.67', '55','15','16470.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000446.0','1022371.0','7', '5','1','1496.0', '5','1','1496.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088710.0','1047938.0','4', '3','3','4671.02', '3','3','4671.02', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000447.0','1022371.0','25', '21','2','15052.41', '19','2','15052.41', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088711.0','1047938.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000448.0','1022371.0','1', '1','1','15235.36', '1','1','15235.36', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088712.0','1047938.0','1', '1','1','2120.95', '1','1','2120.95', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000449.0','1022371.0','4', '3','2','2212.96', '3','2','2212.96', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088713.0','1047938.0','144', '135','88','201291.2', '124','77','163583.24', '102','31','37707.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000450.0','1022371.0','420', '398','303','1267203.3', '384','285','1116889.48', '307','115','150313.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088714.0','1047938.0','157', '152','103','176063.64', '144','96','144112.66', '115','23','31950.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000451.0','1022371.0','8', '8','4','11652.18', '8','3','5192.0', '5','4','6460.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088715.0','1047938.0','1', '1','1','2435.36', '1','1','2435.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000452.0','1022371.0','12', '9','1','7697.75', '9','1','5933.53', '8','1','1764.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088716.0','1047938.0','196', '189','174','2059322.43', '185','172','1955337.5', '159','72','103984.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000453.0','1022371.0','27', '26','21','59532.4', '25','19','56493.7', '25','5','3038.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088717.0','1047938.0','6', '6','5','9331.28', '6','5','9331.28', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000454.0','1022371.0','509', '478','361','815112.71', '463','352','770020.5', '333','74','45092.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088718.0','1047938.0','239', '233','161','323354.86', '226','153','293816.14', '165','28','29538.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000455.0','1022371.0','20', '15','7','12149.11', '13','7','9240.89', '10','1','2908.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088719.0','1047938.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000456.0','1022371.0','40', '38','11','31282.71', '38','10','23049.23', '14','4','8233.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088720.0','1047938.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000457.0','1022371.0','2', '2','1','135.0', '2','0','0.0', '2','1','135.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088721.0','1047938.0','3', '2','2','14067.14', '2','2','14067.14', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000458.0','1022371.0','9', '9','3','5818.09', '9','3','5818.09', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088722.0','1047938.0','42', '39','11','32814.25', '39','11','31078.64', '14','2','1735.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000459.0','1022371.0','65', '58','20','48221.87', '57','15','32650.21', '42','10','15571.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088723.0','1047938.0','2', '2','1','775.89', '2','1','775.89', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000460.0','1022371.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088724.0','1047938.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000461.0','1022371.0','2', '2','2','2187.68', '2','1','92.15', '1','1','2095.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088725.0','1047938.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000462.0','1022371.0','17', '14','3','16855.79', '10','2','5598.52', '13','3','11257.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088726.0','1047938.0','254', '244','170','296697.06', '235','153','252489.35', '185','51','44207.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000463.0','1022371.0','184', '169','75','209445.75', '150','53','161582.66', '152','45','47863.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088727.0','1047938.0','48', '45','31','106021.74', '44','31','102439.45', '37','5','3582.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000464.0','1022371.0','2', '1','1','5946.89', '1','1','5946.89', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088728.0','1047938.0','43', '38','18','122564.75', '35','17','90910.16', '27','10','31654.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000465.0','1022371.0','536', '516','395','1141988.68', '500','346','938966.83', '415','146','203021.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088729.0','1047938.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000466.0','1022371.0','15', '15','10','20751.78', '14','8','19862.68', '13','3','889.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088730.0','1047938.0','146', '139','109','237579.28', '135','100','207661.27', '96','26','29918.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000467.0','1022371.0','5', '5','4','7360.16', '4','3','6380.56', '5','2','979.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088731.0','1047938.0','21', '19','8','17873.75', '16','8','17690.06', '17','1','183.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000468.0','1022371.0','7', '5','0','0.0', '3','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088732.0','1047938.0','32', '28','21','83155.93', '28','20','79272.24', '16','3','3883.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000469.0','1022371.0','866', '837','699','1566813.95', '819','680','1466812.63', '611','135','100001.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088733.0','1047938.0','16', '14','0','0.0', '14','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000470.0','1022371.0','1', '1','1','509.66', '1','1','509.66', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088734.0','1047938.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000471.0','1022371.0','405', '387','315','678253.79', '381','308','620048.57', '263','59','58205.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088735.0','1047938.0','11', '11','2','2255.12', '9','2','2255.12', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000472.0','1022371.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088736.0','1047938.0','1', '1','1','13862.89', '1','1','12027.93', '1','1','1834.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000473.0','1022371.0','34', '31','20','34351.87', '28','17','26906.76', '27','9','7445.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088737.0','1047938.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000474.0','1022371.0','7', '5','4','4775.46', '5','3','2718.34', '3','1','2057.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088738.0','1047938.0','2', '2','2','30961.79', '2','2','29132.08', '2','1','1829.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000475.0','1022371.0','73', '70','39','121411.81', '66','34','114267.46', '57','13','7144.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088739.0','1047938.0','977', '952','532','1900607.65', '925','435','1461379.58', '782','261','439228.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000476.0','1022371.0','1', '1','1','567.78', '1','1','567.78', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088740.0','1047938.0','1301', '1265','1002','2299844.87', '1235','958','2117609.3', '885','232','182235.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000477.0','1022371.0','1848', '1790','1305','2674887.1', '1713','1086','2174515.41', '1424','561','500371.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088741.0','1047938.0','191', '178','133','402374.2', '174','130','375010.28', '124','26','27363.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000478.0','1022244.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088742.0','1047811.0','332', '323','215','670397.64', '315','195','620985.0', '240','56','49412.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000479.0','1022244.0','2010', '1944','1234','3101450.84', '1881','1126','2812999.81', '1450','348','288451.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088743.0','1047811.0','1', '1','1','3098.81', '1','1','2833.81', '1','1','265.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000480.0','1022244.0','67', '63','54','116902.91', '63','53','105950.95', '46','15','10951.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088744.0','1047811.0','50', '49','34','168846.42', '46','32','148329.54', '37','14','20516.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000481.0','1022244.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088745.0','1047811.0','79', '77','52','109522.74', '71','47','93880.72', '61','17','15642.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000482.0','1022244.0','1', '1','1','7217.98', '1','1','7217.98', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088746.0','1047811.0','104', '89','41','142180.61', '79','37','73606.1', '58','22','68574.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000483.0','1022244.0','1725', '1675','1251','3421783.04', '1625','1107','2795972.33', '1296','556','625810.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088747.0','1047811.0','27', '26','8','8611.14', '26','7','7901.17', '9','1','709.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000484.0','1022244.0','20', '19','9','32480.87', '18','9','32143.61', '17','1','337.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088748.0','1047811.0','205', '185','65','527593.98', '178','56','451931.69', '117','28','75662.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000485.0','1022244.0','769', '727','217','709915.58', '690','188','538012.87', '388','80','171902.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088749.0','1047811.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000486.0','1022244.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088750.0','1047811.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000487.0','1022244.0','8', '7','2','3319.01', '7','2','2841.74', '5','1','477.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088751.0','1047811.0','1', '1','1','2362.72', '1','1','2362.72', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000488.0','1022244.0','212', '195','37','75744.1', '184','30','63417.27', '133','15','12326.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088752.0','1047811.0','8', '8','5','21406.73', '7','5','21146.74', '6','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000489.0','1022244.0','3', '3','1','149.88', '3','1','149.88', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088753.0','1047811.0','217', '209','158','504160.59', '202','144','456323.14', '160','53','47837.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000490.0','1022244.0','55', '55','45','98626.56', '54','42','91992.69', '41','10','6633.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088754.0','1047811.0','33', '67','57','540674.91', '50','15','112375.4', '54','49','428299.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000491.0','1022244.0','97', '90','42','95960.97', '88','38','81598.95', '41','13','14362.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088755.0','1047811.0','5072', '4404','872','3881191.14', '4198','767','1965936.26', '2130','440','1915254.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000492.0','1022244.0','14', '12','1','86.21', '10','1','86.21', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088756.0','1047811.0','103', '91','13','50993.13', '90','12','17403.3', '33','4','33589.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000493.0','1022244.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088757.0','1047811.0','10', '10','1','4511.13', '10','1','3801.16', '6','1','709.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000494.0','1022244.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088758.0','1047811.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000495.0','1022244.0','256', '229','87','288623.75', '217','78','227475.49', '168','45','61148.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088759.0','1047811.0','42', '36','6','14695.23', '31','6','11299.71', '24','3','3395.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000496.0','1022244.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088760.0','1047811.0','1', '1','1','2085.73', '1','1','2085.73', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000497.0','1022244.0','51', '41','22','124412.57', '40','20','98435.06', '21','8','25977.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088761.0','1047811.0','2', '1','1','2166.91', '1','1','2166.91', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000498.0','1022244.0','12', '12','8','9574.15', '11','8','9574.15', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088762.0','1047811.0','2', '2','2','2726.0', '2','1','1932.0', '2','2','794.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000499.0','1022244.0','14', '9','6','21763.56', '9','6','20704.57', '4','1','1058.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088763.0','1047811.0','52', '49','27','50305.25', '43','21','34336.11', '39','10','15969.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000500.0','1022244.0','83', '80','54','222953.85', '78','52','199318.66', '55','11','23635.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088764.0','1047811.0','1502', '1455','812','1929631.38', '1396','576','1478411.83', '1218','466','451219.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000501.0','1022244.0','2842', '2792','2019','4281041.71', '2730','1805','3816678.99', '2044','618','464362.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088765.0','1047811.0','868', '820','326','647843.53', '769','256','549439.15', '623','125','98404.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000502.0','1022244.0','1', '1','1','989.18', '1','1','989.18', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088766.0','1047811.0','24', '24','17','47820.79', '24','17','46692.07', '16','2','1128.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000503.0','1022244.0','121', '115','66','222658.3', '113','56','189662.27', '97','39','32996.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088767.0','1047811.0','245', '240','173','661984.58', '235','170','649233.71', '187','27','12750.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000504.0','1022244.0','2', '2','2','3370.67', '2','2','3370.67', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088768.0','1047811.0','93', '89','70','166356.39', '81','66','159767.55', '67','15','6588.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000505.0','1022244.0','90', '87','58','173748.39', '83','57','168554.37', '72','8','5194.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088769.0','1047811.0','15', '14','5','18918.1', '14','4','18598.12', '11','2','319.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000506.0','1022244.0','736', '701','526','1225399.77', '682','514','1160590.48', '506','82','64809.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088770.0','1047811.0','395', '387','232','631223.24', '367','221','597567.62', '295','44','33655.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000507.0','1022244.0','42', '40','29','80762.53', '36','25','73457.57', '31','11','7304.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088771.0','1047811.0','170', '161','98','503453.1', '156','91','303804.17', '116','45','199648.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000508.0','1022244.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088772.0','1047811.0','2', '2','2','2979.42', '2','2','2719.43', '2','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000509.0','1022244.0','12', '12','7','17807.47', '11','6','16609.03', '11','2','1198.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088773.0','1047811.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000510.0','1022244.0','7', '6','2','10202.27', '6','1','10017.28', '1','1','184.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088774.0','1047811.0','109', '101','26','50517.19', '93','25','45072.19', '40','3','5445.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000511.0','1022244.0','62', '37','4','15974.69', '24','3','6424.0', '24','3','9550.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088775.0','1047811.0','9', '8','1','2048.4', '8','1','2048.4', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000512.0','1022244.0','1', '1','1','643.11', '1','1','458.12', '1','1','184.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088776.0','1047811.0','6', '5','2','2993.02', '5','2','2993.02', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000513.0','1022244.0','35', '29','3','3096.0', '27','2','2992.0', '20','1','104.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088777.0','1047811.0','21', '15','6','13903.74', '15','6','12324.2', '6','1','1579.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000514.0','1022244.0','33', '31','12','22551.12', '30','9','21004.55', '19','3','1546.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088778.0','1047811.0','88', '79','28','121125.94', '76','23','81626.26', '56','11','39499.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000515.0','1022244.0','5', '5','3','14175.17', '4','3','13915.18', '4','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088779.0','1047811.0','7', '7','1','248.83', '6','0','0.0', '5','1','248.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000516.0','1022244.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088780.0','1047811.0','19', '18','12','27136.39', '16','12','25773.76', '14','4','1362.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000517.0','1022244.0','293', '277','228','704949.61', '268','218','642718.57', '212','64','62231.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088781.0','1047811.0','421', '403','229','625396.38', '384','166','459840.44', '345','127','165555.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000518.0','1022244.0','679', '666','499','1614664.74', '651','424','1188153.55', '521','258','426511.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088782.0','1047811.0','1195', '1146','802','2315205.05', '1105','713','2057856.35', '884','286','257348.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000519.0','1022244.0','1', '1','1','1142.46', '1','0','0.0', '1','1','1142.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088783.0','1047811.0','18', '17','8','15921.32', '17','6','10771.58', '13','3','5149.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000520.0','1022244.0','6', '5','1','787.67', '5','1','787.67', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088784.0','1047811.0','2', '2','1','626.0', '2','1','626.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000521.0','1022244.0','5', '4','3','4398.19', '4','3','4398.19', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088785.0','1047811.0','7', '7','5','5899.72', '7','5','5600.11', '4','1','299.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000522.0','1022244.0','659', '638','471','1139495.44', '622','438','1013743.38', '454','150','125752.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088786.0','1047811.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000523.0','1022244.0','2953', '2871','1771','3534339.21', '2778','1557','2975514.79', '2104','619','558824.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088787.0','1047811.0','4', '3','1','6800.0', '3','1','6800.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000524.0','1022244.0','1814', '1766','1086','2955103.74', '1714','902','2191059.99', '1474','522','764043.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088788.0','1047811.0','5', '3','1','1168.0', '3','1','1168.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000525.0','1022244.0','475', '465','356','1006064.98', '452','320','754138.4', '349','151','251926.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088789.0','1047811.0','66', '54','17','267632.52', '51','14','228479.9', '29','9','39152.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000526.0','1022244.0','188', '175','111','245117.1', '164','98','217880.93', '127','29','27236.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088790.0','1047811.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000527.0','1022244.0','40', '32','11','12504.04', '26','4','7486.96', '27','7','5017.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088791.0','1047811.0','280', '256','104','224325.57', '233','80','149467.07', '185','52','74858.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000528.0','1022244.0','8', '8','6','28793.1', '7','6','26311.35', '8','2','2481.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088792.0','1047811.0','63', '55','19','36582.98', '53','13','27885.92', '39','10','8697.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000529.0','1022244.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088793.0','1047811.0','4', '4','2','21764.62', '3','2','21764.62', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000530.0','1022244.0','1533', '1489','1073','3113404.2', '1457','1003','2915193.1', '1121','266','198211.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088794.0','1047811.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000531.0','1022244.0','33', '32','26','218625.98', '30','26','211863.18', '19','7','6762.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088795.0','1047811.0','13', '12','5','6149.18', '10','4','5889.19', '8','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000532.0','1022244.0','95', '83','69','597241.85', '81','66','490918.59', '55','21','106323.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088796.0','1047811.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000533.0','1022244.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088797.0','1047811.0','34', '27','4','14626.22', '22','4','14626.22', '12','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000534.0','1022244.0','284', '274','188','589302.59', '267','170','484206.26', '224','82','105096.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088798.0','1047811.0','3', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000535.0','1022244.0','2', '1','1','4965.0', '0','0','0.0', '1','1','4965.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088799.0','1047811.0','23', '20','10','101172.78', '18','10','73553.27', '13','4','27619.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000536.0','1022244.0','14', '12','5','7276.78', '11','5','6975.5', '10','1','301.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088800.0','1047811.0','8', '8','6','20984.29', '8','5','19297.4', '7','2','1686.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000537.0','1022244.0','4', '4','2','7330.08', '2','1','2330.08', '2','1','5000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088801.0','1047811.0','1', '1','1','865.51', '1','1','865.51', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000538.0','1022244.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088802.0','1047811.0','1', '1','1','1866.77', '1','1','1866.77', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000539.0','1022244.0','143', '142','99','269878.63', '141','98','261041.63', '100','13','8837.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088803.0','1047811.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000540.0','1022244.0','666', '638','427','1096291.46', '616','393','986859.66', '456','111','109431.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088804.0','1047811.0','33', '32','21','45226.11', '32','21','43337.4', '18','2','1888.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000541.0','1022244.0','1', '1','1','1093.22', '1','1','1093.22', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088805.0','1047811.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000542.0','1022244.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088806.0','1047811.0','45', '36','14','22006.86', '31','11','21029.06', '21','3','977.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000543.0','1022244.0','38', '34','15','35965.7', '31','14','33575.42', '27','5','2390.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088807.0','1047811.0','276', '243','106','259140.13', '233','85','167274.99', '177','64','91865.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000544.0','1022244.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088808.0','1047811.0','2', '2','2','876.12', '2','1','611.12', '1','1','265.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000545.0','1022244.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088809.0','1047811.0','58', '52','42','100055.51', '49','39','95006.45', '33','14','5049.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000546.0','1022244.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088810.0','1047811.0','2', '2','2','6816.23', '2','2','6816.23', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000547.0','1022244.0','217', '203','146','541258.13', '193','128','387868.34', '167','66','153389.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088811.0','1047811.0','609', '593','419','1224362.02', '578','385','1086992.41', '429','140','137369.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000548.0','1022244.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088812.0','1047811.0','5604', '5452','3743','7305846.45', '5307','3220','6236544.88', '4209','1413','1069301.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000549.0','1022244.0','1', '1','1','5598.85', '1','1','5598.85', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088813.0','1047811.0','386', '374','290','530073.51', '368','278','496750.17', '279','67','33323.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000550.0','1022244.0','1760', '1701','1065','2562931.85', '1653','843','2161839.09', '1400','522','401092.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088814.0','1047811.0','140', '133','79','254521.67', '131','62','218443.67', '108','34','36078.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000551.0','1022244.0','10', '9','4','13387.85', '8','4','13387.85', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088815.0','1047811.0','1', '1','1','424.32', '1','1','424.32', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000552.0','1022244.0','29', '25','17','76025.58', '25','17','75248.83', '7','1','776.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088816.0','1047811.0','9', '6','5','46152.77', '6','5','45916.36', '5','1','236.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000553.0','1022244.0','1', '1','1','2837.72', '1','1','2837.72', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088817.0','1047811.0','262', '215','79','383788.23', '202','75','309796.2', '107','16','73992.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000554.0','1022244.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088818.0','1047811.0','143', '131','26','42880.71', '123','20','24826.77', '62','9','18053.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000555.0','1022244.0','16', '15','11','44330.81', '15','11','44330.81', '12','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088819.0','1047811.0','3', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000556.0','1022244.0','1', '1','1','8049.87', '1','1','6586.44', '1','1','1463.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088820.0','1047811.0','1', '1','1','299.99', '1','0','0.0', '1','1','299.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000557.0','1022244.0','62', '57','35','60253.13', '52','21','42848.62', '46','22','17404.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088821.0','1047811.0','123', '109','29','101513.3', '108','28','100860.81', '31','1','652.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000558.0','1022244.0','200', '195','153','246433.4', '187','152','242956.39', '124','10','3477.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088822.0','1047811.0','106', '95','31','101632.89', '83','26','82328.35', '77','12','19304.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000559.0','1022244.0','1', '1','1','9006.02', '1','1','1932.0', '1','1','7074.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088823.0','1047811.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000560.0','1022244.0','85', '79','22','92598.51', '77','20','89314.67', '39','6','3283.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088824.0','1047811.0','1', '1','1','566.08', '1','1','566.08', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000561.0','1022244.0','1', '1','1','582.92', '1','1','582.92', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088825.0','1047811.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000562.0','1022244.0','4', '4','3','22735.23', '3','2','18426.88', '2','2','4308.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088826.0','1047811.0','222', '214','176','566272.73', '208','168','524388.41', '165','46','41884.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000563.0','1022244.0','143', '137','91','334734.28', '129','86','315132.65', '113','24','19601.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088827.0','1047811.0','235', '223','128','388340.43', '218','106','347613.92', '168','46','40726.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000564.0','1022244.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088828.0','1047811.0','1', '1','1','6053.34', '1','1','6053.34', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000565.0','1022244.0','189', '186','156','2291690.48', '185','143','1276017.03', '130','81','1015673.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088829.0','1047811.0','202', '187','61','174847.62', '183','51','160217.4', '91','18','14630.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003580.0', '2000566.0','1022244.0','1', '1','1','25412.41', '1','1','25412.41', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008072.0', '2088830.0','1047811.0','476', '451','349','665699.57', '439','340','622732.32', '314','57','42967.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000567.0','1022244.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088831.0','1047811.0','154', '146','103','169962.97', '140','97','152721.0', '110','31','17241.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000568.0','1022244.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088832.0','1047811.0','1', '1','1','935.94', '1','1','935.94', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000569.0','1022244.0','5', '5','4','11143.01', '5','4','11143.01', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088833.0','1047811.0','30', '27','8','12139.69', '25','6','11212.23', '16','2','927.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000570.0','1022244.0','29', '29','18','34420.73', '29','16','32984.09', '21','3','1436.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088834.0','1047811.0','8', '8','3','1932.02', '7','3','1932.02', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000571.0','1022244.0','67', '63','42','73018.79', '62','40','62640.02', '45','10','10378.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088835.0','1047811.0','28', '25','17','42709.02', '24','16','39656.83', '22','5','3052.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000572.0','1022244.0','6', '5','4','13897.05', '5','1','8970.87', '4','4','4926.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088836.0','1047811.0','5', '3','1','643.0', '3','1','643.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000573.0','1022244.0','9', '9','5','7146.25', '9','5','7146.25', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088837.0','1047811.0','127', '122','75','210399.05', '118','68','186806.38', '96','29','23592.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000574.0','1022244.0','148', '140','82','225942.83', '137','72','200130.8', '111','30','25812.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088838.0','1047811.0','41', '38','23','38233.88', '33','13','25527.02', '32','12','12706.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000575.0','1022244.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088839.0','1047811.0','2020', '1969','1253','3081699.93', '1894','1010','2310203.87', '1567','593','771496.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000576.0','1022244.0','1', '1','1','2325.36', '1','1','2325.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088840.0','1047811.0','519', '484','307','1004254.16', '459','270','817819.47', '375','134','186434.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000577.0','1022244.0','68', '65','49','233632.25', '63','47','225626.4', '49','13','8005.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088841.0','1047811.0','69', '66','43','121590.72', '63','39','115559.72', '48','12','6031.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000578.0','1022244.0','1', '1','1','1929.61', '1','1','1630.0', '1','1','299.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088842.0','1047811.0','179', '165','115','370493.28', '160','107','299732.64', '119','35','70760.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000579.0','1022244.0','285', '279','174','558168.96', '272','165','538447.57', '205','25','19721.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088843.0','1047811.0','1', '1','1','1568.21', '1','1','1568.21', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000580.0','1022244.0','6', '5','3','8657.91', '4','3','7740.41', '4','2','917.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088844.0','1047811.0','26', '26','16','54041.81', '26','16','50546.11', '24','5','3495.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000581.0','1022244.0','4', '4','3','5724.53', '4','3','5724.53', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088845.0','1047811.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000582.0','1022244.0','8', '8','4','40023.27', '7','4','39763.28', '4','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088846.0','1047811.0','37', '36','28','63404.29', '36','22','40497.52', '27','16','22906.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000583.0','1022244.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088847.0','1047811.0','2', '2','2','1995.66', '2','2','1995.66', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000584.0','1022244.0','3', '3','1','5947.82', '3','1','5217.32', '1','1','730.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088848.0','1047811.0','1', '1','1','765.74', '1','1','765.74', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000585.0','1022244.0','6', '6','1','1168.0', '6','1','1168.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088849.0','1047811.0','48', '46','15','29249.35', '42','11','19054.39', '34','5','10194.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000586.0','1022244.0','15', '15','2','6711.45', '14','2','6529.95', '10','1','181.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088850.0','1047811.0','13', '12','5','5612.48', '12','5','5612.48', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003578.0', '2000587.0','1022244.0','3', '3','3','1945.34', '3','3','1945.34', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008071.0', '2088851.0','1047811.0','2063', '1992','1521','5124214.62', '1938','1361','4131456.7', '1522','676','992757.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000588.0','1022244.0','861', '838','527','1285594.22', '808','379','952630.73', '684','334','332963.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088852.0','1047811.0','13', '11','8','26574.58', '11','8','26574.58', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000589.0','1022244.0','930', '885','499','1124564.1', '835','338','874961.65', '744','275','249602.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088853.0','1047811.0','1', '1','1','1289.17', '1','1','1289.17', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000590.0','1022244.0','1', '1','1','521.27', '1','1','521.27', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088854.0','1047811.0','144', '130','85','328306.72', '125','76','287478.14', '97','24','40828.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000591.0','1022244.0','111', '104','74','123876.02', '97','68','113520.14', '79','16','10355.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088855.0','1047811.0','1107', '1076','714','1839229.42', '1050','600','1576672.51', '812','270','262556.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000592.0','1022171.0','18', '18','7','20368.9', '16','7','20296.64', '15','1','72.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088856.0','1047738.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000593.0','1022171.0','4', '4','3','3619.98', '4','3','3619.98', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088857.0','1047738.0','1', '1','1','1221.72', '1','1','692.22', '1','1','529.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000594.0','1022171.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088858.0','1047738.0','19', '19','9','16580.37', '16','7','13246.11', '13','3','3334.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000595.0','1022171.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088859.0','1047738.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000596.0','1022171.0','453', '447','311','794293.22', '433','304','755874.86', '337','52','38418.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088860.0','1047738.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000597.0','1022171.0','10', '9','5','42574.24', '9','5','41952.07', '7','1','622.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088861.0','1047738.0','61', '57','22','49612.88', '55','15','42649.41', '40','12','6963.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000598.0','1022171.0','8', '8','8','25263.57', '8','8','23924.61', '5','2','1338.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088862.0','1047738.0','228', '201','93','259250.31', '184','74','163002.67', '138','51','96247.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000599.0','1022171.0','16', '16','10','28723.45', '16','10','28379.96', '14','1','343.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088863.0','1047738.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000600.0','1022171.0','2', '1','1','2290.0', '1','1','2290.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088864.0','1047738.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000601.0','1022171.0','3', '4','3','3535.72', '4','3','3535.72', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088865.0','1047738.0','4', '3','1','504.19', '2','1','504.19', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000602.0','1022171.0','16', '16','2','1558.1', '16','2','1558.1', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088866.0','1047738.0','29', '27','15','33529.14', '27','15','33529.14', '20','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000603.0','1022171.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088867.0','1047738.0','4', '3','3','3263.6', '3','3','2301.51', '3','1','962.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000604.0','1022171.0','508', '489','370','647586.47', '472','351','597697.27', '363','73','49889.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088868.0','1047738.0','47', '41','19','122213.89', '41','18','118161.67', '24','4','4052.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000605.0','1022171.0','15', '13','2','4541.18', '12','2','3712.07', '9','1','829.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088869.0','1047738.0','45', '39','15','57360.29', '36','12','50141.36', '18','5','7218.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000606.0','1022171.0','18', '18','5','8677.69', '15','4','8492.35', '12','1','185.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088870.0','1047738.0','576', '515','210','689249.76', '468','168','479244.76', '385','128','210005.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000607.0','1022171.0','3', '3','1','631.39', '3','1','631.39', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088871.0','1047738.0','6', '2','1','620.0', '1','0','0.0', '1','1','620.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000608.0','1022171.0','438', '335','279','1168309.44', '333','278','1051465.78', '104','22','116843.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088872.0','1047738.0','12', '10','4','3498.24', '10','4','3498.24', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000609.0','1022171.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088873.0','1047738.0','174', '168','130','595217.78', '162','119','541247.69', '125','38','53970.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000610.0','1022171.0','783', '764','497','1465507.17', '737','444','1331817.47', '577','149','133689.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088874.0','1047738.0','8', '6','4','14360.04', '6','4','14360.04', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000611.0','1022171.0','619', '604','353','1126210.07', '589','313','1021103.56', '469','123','105106.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088875.0','1047738.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000612.0','1022171.0','5', '2','1','3521.0', '1','1','3521.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088876.0','1047738.0','8', '8','4','7777.52', '7','4','7777.52', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000613.0','1022171.0','523', '361','249','1294254.86', '344','245','1134233.34', '183','37','160021.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088877.0','1047738.0','27', '21','9','29612.69', '21','9','28990.98', '14','1','621.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000614.0','1022171.0','90', '84','62','99763.74', '82','61','93927.3', '56','7','5836.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088878.0','1047738.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000615.0','1022171.0','165', '114','70','511453.16', '106','67','445389.32', '75','24','66063.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088879.0','1047738.0','14', '14','0','0.0', '14','0','0.0', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000616.0','1022171.0','551', '521','192','1186310.52', '513','180','974118.8', '313','59','212191.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088880.0','1047738.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000617.0','1022171.0','1745', '1600','198','1062735.95', '1564','172','542903.61', '683','97','519832.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088881.0','1047738.0','12', '12','4','23744.64', '12','4','23744.64', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000618.0','1022171.0','7', '6','3','15712.17', '6','3','15712.17', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088882.0','1047738.0','21', '17','1','184.99', '14','0','0.0', '10','1','184.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000619.0','1022171.0','4', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088883.0','1047738.0','61', '54','23','44325.41', '49','18','27102.88', '38','7','17222.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000620.0','1022171.0','163', '150','50','113018.41', '143','48','104261.78', '94','13','8756.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088884.0','1047738.0','414', '368','105','252052.44', '345','89','187120.67', '220','51','64931.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000621.0','1022171.0','276', '236','87','1009063.97', '230','79','850346.37', '149','35','158717.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088885.0','1047738.0','21', '20','16','161326.38', '20','16','126304.33', '14','9','35022.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000622.0','1022171.0','190', '165','139','350804.92', '154','131','326660.6', '113','36','24144.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088886.0','1047738.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000623.0','1022171.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088887.0','1047738.0','13', '6','3','3409.34', '6','3','3409.34', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000624.0','1022171.0','98', '93','53','153727.7', '84','43','103876.12', '77','25','49851.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088888.0','1047738.0','6', '6','3','9604.77', '6','2','9176.17', '4','2','428.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000625.0','1022171.0','2571', '2508','1539','3448754.61', '2423','1237','2751573.28', '2068','710','697181.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088889.0','1047738.0','4415', '4297','2699','5313449.91', '4141','2212','4388605.56', '3294','1105','924844.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000626.0','1022171.0','170', '164','134','252515.81', '161','124','221625.58', '114','26','30890.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088890.0','1047738.0','104', '93','64','210084.37', '86','53','147806.73', '73','35','62277.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000627.0','1022171.0','158', '146','101','166716.09', '141','92','140612.76', '115','30','26103.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088891.0','1047738.0','17', '16','13','40845.94', '15','8','20818.17', '13','9','20027.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000628.0','1022171.0','413', '400','302','1034358.07', '388','275','799940.9', '288','115','234417.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088892.0','1047738.0','91', '86','17','34248.81', '81','14','26977.28', '35','6','7271.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000629.0','1022171.0','1', '1','1','10980.1', '1','1','10980.1', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088893.0','1047738.0','21', '18','16','42019.2', '17','16','38148.49', '15','6','3870.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000630.0','1022171.0','21', '20','14','71354.52', '19','14','68100.46', '15','5','3254.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088894.0','1047738.0','231', '213','108','297918.49', '198','77','226320.32', '176','68','71598.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000631.0','1022171.0','18', '16','6','13849.14', '14','3','10030.5', '14','5','3818.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088895.0','1047738.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000632.0','1022171.0','171', '169','127','461643.4', '164','123','443428.08', '125','21','18215.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088896.0','1047738.0','1', '1','1','265.0', '1','0','0.0', '1','1','265.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000633.0','1022171.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088897.0','1047738.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000634.0','1022171.0','18', '17','11','23159.97', '17','10','22639.99', '14','2','519.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088898.0','1047738.0','36', '18','6','31301.94', '15','4','14695.0', '12','2','16606.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000635.0','1022171.0','1', '1','1','783.98', '1','1','783.98', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088899.0','1047738.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000636.0','1022171.0','6', '6','5','16031.07', '6','5','14223.62', '5','2','1807.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088900.0','1047738.0','135', '109','72','763606.23', '104','68','685493.0', '70','23','78113.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000637.0','1022171.0','58', '54','34','73309.36', '52','32','71283.2', '42','6','2026.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088901.0','1047738.0','23', '34','26','156464.61', '32','10','18439.5', '30','26','138025.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000638.0','1022171.0','27', '25','17','45572.03', '23','13','37942.26', '18','9','7629.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088902.0','1047738.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000639.0','1022171.0','12', '11','7','8954.97', '11','7','8954.97', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088903.0','1047738.0','6', '6','0','0.0', '6','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000640.0','1022171.0','116', '115','79','380452.42', '110','71','331914.47', '89','30','48537.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088904.0','1047738.0','79', '73','5','35430.04', '70','4','34750.29', '33','2','679.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000641.0','1022171.0','1', '1','1','833.67', '1','1','833.67', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088905.0','1047738.0','6', '6','0','0.0', '6','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000642.0','1022171.0','393', '381','238','689817.7', '369','196','616514.04', '303','95','73303.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088906.0','1047738.0','9', '9','5','11595.88', '9','4','11230.97', '8','2','364.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000643.0','1022171.0','9', '8','5','20591.6', '7','4','18966.22', '6','2','1625.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088907.0','1047738.0','1', '1','1','7294.51', '1','1','7294.51', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000644.0','1022171.0','124', '120','41','112742.34', '107','36','91269.08', '93','18','21473.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088908.0','1047738.0','1', '1','1','4096.26', '1','1','4096.26', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000645.0','1022171.0','2', '1','1','826.46', '1','1','826.46', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088909.0','1047738.0','1', '1','1','1286.0', '1','1','1286.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000646.0','1022171.0','425', '403','338','1147160.02', '390','327','1063029.85', '317','95','84130.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088910.0','1047738.0','4130', '3965','2745','6591773.07', '3838','2387','5512737.12', '3048','1134','1079035.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000647.0','1022171.0','9', '9','7','21510.07', '9','7','21210.46', '8','1','299.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088911.0','1047738.0','3', '3','1','376.68', '3','1','376.68', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000648.0','1022171.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088912.0','1047738.0','267', '165','141','736614.15', '164','141','725061.22', '49','6','11552.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000649.0','1022171.0','3', '6','5','65088.23', '6','5','49117.59', '4','4','15970.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088913.0','1047738.0','12', '4','2','35183.75', '3','2','35183.75', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000650.0','1022171.0','29', '27','7','5586.56', '27','6','5107.06', '17','1','479.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088914.0','1047738.0','42', '33','26','354674.4', '32','25','318207.47', '22','7','36466.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000651.0','1022171.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088915.0','1047738.0','1', '7','7','49029.8', '7','7','29442.94', '6','6','19586.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000652.0','1022171.0','6', '5','1','26544.96', '4','1','26544.96', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088916.0','1047738.0','42', '34','12','57052.82', '29','11','54491.68', '20','6','2561.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000653.0','1022171.0','174', '164','107','294855.59', '162','102','180002.32', '121','45','114853.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088917.0','1047738.0','1', '1','1','27963.79', '1','1','21805.58', '1','1','6158.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000654.0','1022171.0','4', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088918.0','1047738.0','136', '119','94','334130.08', '109','91','141126.18', '92','64','193003.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000655.0','1022171.0','9', '4','3','8083.2', '2','2','2336.0', '3','2','5747.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088919.0','1047738.0','7', '5','1','2481.4', '5','1','2481.4', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000656.0','1022171.0','35', '29','8','14685.36', '28','7','9597.02', '20','5','5088.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088920.0','1047738.0','5', '5','4','3345.21', '4','4','2551.21', '3','1','794.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000657.0','1022171.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088921.0','1047738.0','2', '2','1','824.22', '2','1','621.41', '2','1','202.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000658.0','1022171.0','5', '4','4','9607.49', '4','4','9113.0', '1','1','494.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088922.0','1047738.0','354', '328','208','442231.5', '309','176','383619.88', '250','78','58611.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000659.0','1022171.0','3', '3','3','5232.88', '3','3','5232.88', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088923.0','1047738.0','7', '7','3','2936.2', '6','1','888.26', '7','2','2047.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000660.0','1022171.0','126', '118','82','214283.12', '112','73','172499.35', '81','30','41783.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088924.0','1047738.0','15', '15','11','44354.96', '15','8','39315.88', '9','4','5039.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000661.0','1022171.0','3', '3','1','752.58', '3','1','752.58', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088925.0','1047738.0','317', '304','212','590669.19', '299','199','555418.01', '223','44','35251.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000662.0','1022171.0','94', '87','57','134372.88', '85','50','119738.0', '62','20','14634.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088926.0','1047738.0','4', '4','3','3914.64', '4','3','3914.64', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000663.0','1022171.0','260', '243','168','372468.82', '228','152','332578.25', '184','55','39890.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088927.0','1047738.0','2346', '2270','1464','3901237.48', '2182','1275','3436660.69', '1769','574','464576.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000664.0','1022171.0','1175', '1148','692','2255862.26', '1107','553','1650428.98', '990','396','605433.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088928.0','1047738.0','405', '388','220','563493.7', '367','151','418616.55', '312','116','144877.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000665.0','1022171.0','1', '1','1','727.98', '1','1','727.98', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088929.0','1047738.0','360', '349','271','442442.45', '341','262','415927.23', '260','41','26515.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000666.0','1022171.0','742', '724','527','1774461.44', '707','485','1638885.39', '544','167','135576.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088930.0','1047738.0','204', '195','132','266225.75', '188','121','233157.99', '131','32','33067.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000667.0','1022171.0','47', '45','31','63873.35', '42','25','59175.34', '33','11','4698.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088931.0','1047738.0','122', '115','91','165185.7', '113','87','155693.49', '87','15','9492.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000668.0','1022171.0','26', '24','13','43681.72', '21','11','39503.92', '18','5','4177.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088932.0','1047738.0','558', '538','347','970645.25', '511','298','852374.89', '429','120','118270.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000669.0','1022171.0','107', '104','73','145175.93', '101','61','134258.35', '80','18','10917.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088933.0','1047738.0','2', '2','1','5173.79', '2','1','4913.8', '2','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000670.0','1022171.0','39', '35','26','50541.46', '33','22','39074.64', '27','9','11466.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088934.0','1047738.0','214', '199','155','353340.53', '194','148','327014.47', '141','32','26326.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000671.0','1022171.0','3', '2','1','3377.95', '2','1','2290.0', '2','1','1087.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088935.0','1047738.0','1', '1','1','1186.35', '1','1','1186.35', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000672.0','1022171.0','15', '15','8','27286.94', '14','7','25328.51', '12','5','1958.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088936.0','1047738.0','67', '64','43','255066.2', '61','41','242455.09', '43','10','12611.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000673.0','1022171.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088937.0','1047738.0','312', '310','240','723092.01', '302','237','694946.71', '224','47','28145.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000674.0','1022171.0','15', '13','6','56360.27', '11','6','55566.27', '10','1','794.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088938.0','1047738.0','565', '542','330','951985.83', '522','292','869904.48', '421','107','82081.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000675.0','1022171.0','684', '652','489','1241471.36', '625','461','1098464.12', '515','154','143007.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088939.0','1047738.0','2', '2','1','1315.12', '2','1','1315.12', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000676.0','1022171.0','1', '1','1','3158.34', '1','1','3158.34', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088940.0','1047738.0','6', '5','3','15559.78', '5','3','15559.78', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003577.0', '2000677.0','1022171.0','20', '19','13','20155.06', '18','12','18939.14', '17','3','1215.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008070.0', '2088941.0','1047738.0','67', '63','43','100442.14', '56','38','87070.1', '50','14','13372.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000678.0','1022171.0','28', '28','17','52796.61', '28','17','50897.66', '20','2','1898.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088942.0','1047738.0','5', '5','2','2106.31', '5','2','1786.33', '4','2','319.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003581.0', '2000679.0','1022171.0','9', '5','3','6632.21', '5','2','6301.25', '5','1','330.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008064.0', '2088943.0','1047738.0','31', '29','24','50904.48', '26','22','44204.05', '21','6','6700.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000680.0','1022171.0','1', '1','1','2079.49', '1','1','1818.0', '1','1','261.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088944.0','1047738.0','57', '50','25','38355.78', '42','14','25502.42', '43','16','12853.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000681.0','1022171.0','6', '6','2','3061.35', '6','2','3061.35', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088945.0','1047738.0','7', '7','4','16378.01', '7','4','16378.01', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000682.0','1022171.0','46', '43','30','82926.81', '43','28','79173.28', '35','9','3753.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088946.0','1047738.0','15', '15','11','19675.16', '14','11','19155.18', '11','2','519.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000683.0','1022171.0','7', '7','6','16626.61', '7','6','16626.61', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088947.0','1047738.0','2', '2','2','5678.27', '2','2','4239.9', '2','1','1438.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000684.0','1022171.0','15', '14','8','16631.73', '14','6','15428.36', '13','2','1203.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088948.0','1047738.0','2', '1','1','654.01', '1','0','0.0', '1','1','654.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000685.0','1022171.0','218', '208','133','435258.58', '202','128','426920.84', '165','27','8337.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088949.0','1047738.0','2', '2','2','26499.17', '2','2','26240.17', '2','1','259.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000686.0','1022171.0','1', '1','1','8710.58', '1','1','7651.59', '1','1','1058.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088950.0','1047738.0','48', '46','37','152592.59', '44','33','146654.77', '34','12','5937.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000687.0','1022171.0','25', '25','21','141481.89', '25','21','140057.12', '16','2','1424.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088951.0','1047738.0','32', '31','25','111103.97', '31','23','104416.93', '23','8','6687.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000688.0','1022171.0','722', '692','497','2015336.48', '674','464','1945952.93', '529','118','69383.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088952.0','1047738.0','409', '392','280','814360.98', '378','257','742100.45', '300','94','72260.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000689.0','1022171.0','10', '10','10','26348.86', '10','10','22777.2', '5','1','3571.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088953.0','1047738.0','1', '1','1','2021.42', '1','1','2021.42', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000690.0','1022171.0','35', '32','19','66291.91', '29','17','61908.28', '26','7','4383.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088954.0','1047738.0','3', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000691.0','1022171.0','2', '2','2','3181.09', '2','1','3121.1', '1','1','59.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088955.0','1047738.0','1', '1','1','1216.89', '1','1','1216.89', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000692.0','1022171.0','2', '2','2','16990.57', '2','2','15671.59', '1','1','1318.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088956.0','1047738.0','21', '21','17','27561.77', '18','7','17609.27', '18','12','9952.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000693.0','1022171.0','199', '183','154','652393.08', '178','148','627450.93', '139','42','24942.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088957.0','1047738.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000694.0','1022171.0','511', '481','368','1505929.97', '468','353','1384604.08', '351','87','121325.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088958.0','1047738.0','6', '5','3','5952.11', '5','3','3026.36', '3','2','2925.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000695.0','1022171.0','14', '11','6','12829.41', '10','5','12052.66', '7','1','776.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088959.0','1047738.0','6', '6','4','7881.61', '6','4','7881.61', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000696.0','1022171.0','179', '165','140','879367.21', '162','135','842952.26', '117','31','36414.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088960.0','1047738.0','7', '5','5','33818.69', '5','5','29241.91', '3','1','4576.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000697.0','1022171.0','1', '1','1','762.87', '1','1','762.87', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088961.0','1047738.0','19', '13','9','11951.23', '12','8','9110.97', '9','2','2840.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000698.0','1022171.0','2', '2','1','3088.78', '2','1','2823.78', '1','1','265.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088962.0','1047738.0','31', '29','22','68546.43', '27','21','53715.25', '21','6','14831.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000699.0','1022171.0','12', '11','8','18080.6', '11','8','16675.19', '7','3','1405.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088963.0','1047738.0','5', '5','3','7413.82', '4','3','5217.86', '3','2','2195.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000700.0','1022171.0','14', '11','8','18160.89', '11','8','15785.31', '10','3','2375.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088964.0','1047738.0','12', '12','10','27326.53', '10','9','26701.93', '10','3','624.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000701.0','1022171.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088965.0','1047738.0','46', '44','36','96875.99', '42','34','91592.23', '34','10','5283.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000702.0','1022171.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088966.0','1047738.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000703.0','1022171.0','62', '58','44','138412.82', '57','42','124750.34', '35','12','13662.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088967.0','1047738.0','3', '3','3','3356.35', '3','3','3356.35', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000704.0','1022171.0','1', '1','1','1636.88', '1','1','1636.88', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088968.0','1047738.0','1', '1','1','757.99', '1','1','757.99', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003558.0', '2000705.0','1022171.0','66', '58','51','134203.27', '58','50','128449.71', '31','8','5753.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008053.0', '2088969.0','1047738.0','310', '301','224','954944.44', '286','218','919839.61', '235','62','35104.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000706.0','1022171.0','202', '188','152','413428.04', '183','143','376891.82', '155','43','36536.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088970.0','1047738.0','102', '100','83','1215729.46', '96','82','1157910.72', '68','20','57818.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000707.0','1022171.0','12', '10','7','11942.06', '9','6','10327.43', '9','2','1614.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088971.0','1047738.0','3', '3','2','3566.66', '3','2','3037.16', '2','1','529.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000708.0','1022171.0','3', '3','3','7089.94', '3','3','7089.94', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088972.0','1047738.0','13', '12','9','21240.45', '12','9','20460.48', '8','3','779.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000709.0','1022171.0','379', '373','185','373506.63', '352','130','296316.26', '321','103','77190.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088973.0','1047738.0','1', '1','1','5793.59', '1','1','5793.59', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000710.0','1022171.0','852', '768','594','1992880.59', '752','571','1795458.41', '361','100','197422.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088974.0','1047738.0','4', '4','4','10183.42', '4','4','10183.42', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000711.0','1022171.0','2', '2','2','4260.4', '2','2','4260.4', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088975.0','1047738.0','1', '1','1','1932.0', '1','1','1932.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000712.0','1022171.0','87', '83','56','126246.77', '80','54','118672.44', '65','20','7574.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088976.0','1047738.0','16', '15','9','18136.0', '15','8','14050.16', '14','4','4085.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000713.0','1022171.0','4', '4','4','14098.85', '4','3','12554.39', '4','3','1544.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088977.0','1047738.0','12', '12','12','38302.71', '12','10','35434.75', '7','4','2867.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000714.0','1022171.0','1', '1','1','828.5', '1','1','828.5', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088978.0','1047738.0','94', '88','54','278804.05', '84','52','274293.81', '64','11','4510.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000715.0','1022171.0','12', '10','10','11385.8', '10','10','10891.31', '5','1','494.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088979.0','1047738.0','16', '15','6','12184.7', '14','5','10477.34', '12','3','1707.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000716.0','1022171.0','14', '14','9','13811.48', '14','9','13551.49', '11','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088980.0','1047738.0','3', '3','2','13589.41', '3','2','12201.37', '2','1','1388.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000717.0','1022171.0','2', '2','1','1914.86', '2','1','1914.86', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088981.0','1047738.0','1', '1','1','429.94', '1','1','429.94', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000718.0','1022171.0','37', '37','25','92179.93', '32','19','77112.4', '31','11','15067.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088982.0','1047738.0','251', '234','178','568451.46', '226','174','556784.73', '165','36','11666.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000719.0','1022171.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088983.0','1047738.0','175', '169','137','581662.69', '162','131','564158.95', '122','26','17503.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000720.0','1022171.0','23', '21','16','35936.71', '21','16','31955.85', '17','5','3980.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088984.0','1047738.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000721.0','1022171.0','1', '1','1','1492.3', '1','1','1492.3', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088985.0','1047738.0','17', '16','10','26716.4', '12','9','25798.9', '13','2','917.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000722.0','1022171.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088986.0','1047738.0','61', '57','48','397083.19', '56','47','365692.58', '38','14','31390.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000723.0','1022171.0','1', '1','1','52.46', '1','1','52.46', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088987.0','1047738.0','55', '46','34','62532.25', '42','32','59359.85', '23','7','3172.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000724.0','1022171.0','8', '7','6','6341.67', '7','6','6341.67', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088988.0','1047738.0','4', '4','1','2015.13', '4','1','1755.14', '3','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000725.0','1022171.0','25', '25','19','190471.48', '23','19','190151.5', '22','2','319.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088989.0','1047738.0','4', '4','4','10649.92', '4','4','10649.92', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000726.0','1022171.0','5', '3','2','1851.56', '3','2','1851.56', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088990.0','1047738.0','2', '2','1','9890.67', '2','1','9890.67', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000727.0','1022171.0','1', '1','1','2285.47', '1','1','2285.47', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088991.0','1047738.0','29', '28','22','69948.39', '28','22','69628.41', '20','1','319.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000728.0','1022171.0','21', '19','12','38718.75', '16','12','38064.26', '15','2','654.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088992.0','1047738.0','76', '73','49','167237.41', '68','42','150889.09', '52','16','16348.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000729.0','1022171.0','50', '48','30','99279.35', '44','24','87137.38', '40','13','12141.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088993.0','1047738.0','1', '1','1','9361.11', '1','1','9361.11', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000730.0','1022171.0','1', '1','1','5368.45', '1','1','5368.45', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088994.0','1047738.0','13', '13','10','18492.81', '13','7','16946.12', '10','4','1546.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000731.0','1022171.0','7', '5','5','9565.91', '5','5','8985.94', '5','3','579.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088995.0','1047738.0','223', '199','153','516177.84', '188','149','482661.34', '139','32','33516.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000732.0','1022171.0','1', '1','1','1011.06', '1','1','1011.06', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088996.0','1047738.0','1', '1','1','5600.59', '1','1','5600.59', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000733.0','1022171.0','2', '1','1','1592.07', '1','1','1592.07', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088997.0','1047738.0','41', '39','35','125161.42', '36','34','109964.54', '20','12','15196.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000734.0','1022171.0','1', '1','1','2255.09', '1','1','1995.1', '1','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088998.0','1047738.0','2', '2','2','3385.49', '2','2','2596.0', '2','2','789.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000735.0','1022171.0','26', '21','15','66812.81', '20','15','59798.25', '15','3','7014.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2088999.0','1047738.0','7', '7','3','5075.08', '6','3','4490.6', '6','2','584.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000736.0','1022171.0','15', '15','13','50612.33', '15','13','47675.39', '9','1','2936.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089000.0','1047738.0','4', '3','3','9542.41', '3','3','8367.88', '2','1','1174.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000737.0','1022171.0','7', '5','4','26607.28', '3','3','25151.3', '5','2','1455.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089001.0','1047738.0','56', '50','27','41438.71', '47','23','35896.13', '43','12','5542.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000738.0','1022171.0','1', '1','1','1161.85', '1','1','1161.85', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089002.0','1047738.0','1', '1','1','2538.0', '1','1','2538.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000739.0','1022171.0','5', '5','5','23223.97', '5','5','21670.49', '4','1','1553.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089003.0','1047738.0','19', '17','13','21789.86', '15','13','21469.88', '15','2','319.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000740.0','1022171.0','5', '5','2','2399.87', '5','2','2399.87', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089004.0','1047738.0','30', '20','16','166032.43', '19','16','134691.37', '15','7','31341.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000741.0','1022171.0','1', '1','1','4686.44', '1','1','3097.32', '1','1','1589.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089005.0','1047738.0','2', '2','1','12220.92', '2','1','9869.12', '1','1','2351.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000742.0','1022171.0','1', '1','1','772.92', '1','1','772.92', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089006.0','1047738.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000743.0','1022171.0','17', '16','12','21642.81', '16','12','20960.58', '8','3','682.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089007.0','1047738.0','4', '2','2','2258.48', '2','2','2258.48', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000744.0','1022171.0','30', '29','25','46603.9', '29','25','42271.14', '18','6','4332.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089008.0','1047738.0','300', '290','208','577959.98', '284','195','530841.0', '231','65','47118.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000745.0','1022171.0','1', '1','1','513.74', '1','1','513.74', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089009.0','1047738.0','1', '1','1','1223.21', '1','1','1223.21', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000746.0','1022171.0','2', '1','1','760.32', '1','1','760.32', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089010.0','1047738.0','48', '46','40','136560.16', '43','39','133629.29', '36','7','2930.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000747.0','1022171.0','18', '17','13','26244.78', '15','11','24361.19', '15','5','1883.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089011.0','1047738.0','341', '299','271','3630947.23', '297','266','3236749.8', '237','128','394197.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000748.0','1022171.0','3', '3','3','13683.7', '3','3','13683.7', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089012.0','1047738.0','9', '9','5','6188.25', '9','5','5658.26', '7','1','529.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000749.0','1022171.0','17', '15','14','31240.74', '15','14','29873.21', '9','4','1367.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089013.0','1047738.0','13', '13','10','43658.23', '13','10','40433.14', '12','2','3225.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000750.0','1022171.0','276', '245','197','538679.66', '240','190','499317.77', '163','47','39361.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089014.0','1047738.0','2', '2','1','1088.85', '2','1','1088.85', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000751.0','1022171.0','3', '3','2','1638.86', '2','2','1638.86', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089015.0','1047738.0','2', '2','2','2647.64', '2','2','2647.64', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000752.0','1022171.0','96', '92','63','142767.31', '90','60','131221.6', '66','15','11545.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089016.0','1047738.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000753.0','1022171.0','1', '1','1','6163.05', '1','1','6163.05', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089017.0','1047738.0','5', '4','2','12489.95', '4','2','12489.95', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000754.0','1022171.0','1', '1','1','1057.4', '1','1','1057.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089018.0','1047738.0','33', '27','21','59823.57', '25','20','51571.03', '21','8','8252.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000755.0','1022171.0','48', '46','32','65387.1', '45','29','61223.08', '43','9','4164.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089019.0','1047738.0','57', '53','40','124493.52', '51','39','118922.68', '40','8','5570.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000756.0','1022171.0','16', '16','12','20937.55', '15','11','19614.05', '15','3','1323.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089020.0','1047738.0','7', '6','5','12006.21', '6','5','10947.22', '6','1','1058.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000757.0','1022171.0','20', '20','16','27711.93', '19','16','24627.89', '16','3','3084.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089021.0','1047738.0','1', '1','1','467.34', '1','1','467.34', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000758.0','1022171.0','2', '2','2','3757.77', '2','2','3757.77', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089022.0','1047738.0','11', '11','7','14818.82', '11','7','14558.83', '8','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000759.0','1022171.0','5', '5','5','13113.22', '5','5','11628.95', '4','2','1484.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089023.0','1047738.0','39', '32','22','84643.54', '28','22','81876.66', '27','4','2766.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000760.0','1022171.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089024.0','1047738.0','1', '1','1','657.51', '0','0','0.0', '1','1','657.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000761.0','1022171.0','257', '237','166','494534.69', '224','145','462046.17', '193','49','32488.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089025.0','1047738.0','3', '3','2','8407.7', '3','2','8347.71', '2','1','59.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000762.0','1022171.0','4', '4','3','8589.5', '4','3','8589.5', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089026.0','1047738.0','2', '2','1','3907.61', '2','1','3907.61', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000763.0','1022171.0','2', '2','2','5851.51', '2','1','5231.51', '1','1','620.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089027.0','1047738.0','4', '4','4','21740.29', '4','4','20421.31', '3','1','1318.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000764.0','1022171.0','25', '24','19','52742.57', '24','19','51693.59', '20','3','1048.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089028.0','1047738.0','38', '36','13','52074.64', '35','11','48249.48', '29','5','3825.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000765.0','1022171.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089029.0','1047738.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000766.0','1022171.0','10', '9','8','10402.06', '9','8','9309.01', '4','2','1093.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089030.0','1047738.0','45', '40','26','59329.68', '38','26','57351.01', '27','9','1978.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000767.0','1022171.0','430', '416','290','478944.92', '400','226','393583.15', '334','112','85361.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089031.0','1047738.0','6', '5','3','6039.76', '5','3','6039.76', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000768.0','1022171.0','11', '9','5','9189.34', '9','5','7391.05', '7','1','1798.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089032.0','1047738.0','430', '402','314','1144376.57', '383','297','1075325.0', '310','85','69051.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000769.0','1022171.0','52', '52','47','180754.45', '52','46','169628.99', '39','16','11125.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089033.0','1047738.0','9', '8','7','16280.88', '8','6','9147.65', '5','3','7133.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000770.0','1022171.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089034.0','1047738.0','1', '1','1','1687.36', '1','1','1687.36', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000771.0','1022171.0','4', '4','1','1191.61', '4','1','1191.61', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089035.0','1047738.0','12', '11','9','48017.0', '11','9','46871.58', '8','2','1145.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000772.0','1022171.0','47', '45','38','288621.81', '44','37','277219.83', '31','6','11401.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089036.0','1047738.0','3', '3','3','4153.01', '2','2','3623.51', '3','1','529.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000773.0','1022171.0','29', '27','18','80387.49', '26','11','72919.64', '26','11','7467.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089037.0','1047738.0','3', '2','2','3472.15', '2','2','3412.16', '2','1','59.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000774.0','1022171.0','6', '5','2','4914.35', '5','2','4914.35', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089038.0','1047738.0','3', '2','2','6343.02', '2','2','6343.02', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000775.0','1022171.0','8', '8','6','31774.78', '8','6','29100.91', '5','3','2673.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089039.0','1047738.0','46', '45','22','23366.16', '41','17','17740.2', '39','7','5625.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000776.0','1022171.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089040.0','1047738.0','1', '1','1','4583.57', '1','1','4583.57', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000777.0','1022171.0','11', '10','8','18950.06', '10','8','17955.58', '3','1','994.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089041.0','1047738.0','8', '6','5','8525.02', '6','5','8525.02', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000778.0','1022171.0','45', '41','16','30817.3', '37','10','23795.74', '32','7','7021.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089042.0','1047738.0','6', '6','4','5951.4', '6','4','5951.4', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000779.0','1022171.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089043.0','1047738.0','6', '6','5','4416.87', '5','5','4416.87', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000780.0','1022171.0','1', '1','1','3300.02', '1','1','3300.02', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089044.0','1047738.0','17', '16','16','40729.49', '16','16','37983.27', '9','4','2746.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000781.0','1022171.0','8', '8','8','64010.67', '8','8','63763.42', '3','1','247.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089045.0','1047738.0','2', '2','2','7510.44', '2','2','7510.44', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000782.0','1022171.0','13', '11','6','14877.82', '10','5','13585.6', '9','4','1292.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089046.0','1047738.0','101', '87','69','121474.92', '83','67','116172.35', '62','12','5302.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000783.0','1022171.0','21', '17','9','15112.57', '15','7','11224.94', '13','5','3887.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089047.0','1047738.0','5', '5','4','6530.26', '5','4','6470.27', '3','1','59.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000784.0','1022171.0','310', '296','218','419166.77', '283','198','372090.15', '221','71','47076.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089048.0','1047738.0','2', '2','1','607.57', '2','1','547.58', '2','1','59.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000785.0','1022171.0','1', '1','1','476.2', '1','1','476.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089049.0','1047738.0','4', '3','1','605.57', '3','1','605.57', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000786.0','1022171.0','99', '90','61','201075.56', '82','54','151908.84', '64','26','49166.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089050.0','1047738.0','5', '5','5','6365.54', '5','4','6105.55', '4','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003523.0', '2000787.0','1022171.0','273', '266','194','600215.46', '257','190','544000.32', '205','73','56215.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008018.0', '2089051.0','1047738.0','2', '2','2','3224.1', '2','2','3224.1', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000788.0','1022171.0','20', '17','14','23510.67', '16','14','22930.7', '9','2','579.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089052.0','1047738.0','1', '1','1','818.62', '1','1','818.62', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000789.0','1022171.0','5', '5','3','3675.55', '5','3','2755.57', '5','2','919.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089053.0','1047738.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000790.0','1022171.0','70', '50','31','91832.45', '47','31','84989.23', '41','5','6843.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089054.0','1047738.0','32', '30','23','39364.22', '30','20','35412.27', '22','5','3951.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000791.0','1022171.0','24', '23','13','39602.93', '23','8','13342.0', '20','12','26260.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089055.0','1047738.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000792.0','1022171.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089056.0','1047738.0','159', '149','128','273561.14', '145','128','260420.58', '83','21','13140.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000793.0','1022171.0','4', '3','2','6299.31', '3','1','1334.31', '3','1','4965.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089057.0','1047738.0','35', '33','20','59503.16', '31','20','57439.31', '24','5','2063.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000794.0','1022171.0','1', '1','1','1013.7', '1','1','1013.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089058.0','1047738.0','405', '398','215','347765.82', '389','161','288408.53', '333','98','59357.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000795.0','1022171.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089059.0','1047738.0','1', '1','1','1422.0', '1','1','1422.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000796.0','1022171.0','27', '26','20','81765.05', '26','19','75728.36', '23','8','6036.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089060.0','1047738.0','108', '100','80','245279.24', '98','78','227918.76', '73','18','17360.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000797.0','1022171.0','15', '14','11','15532.95', '13','11','15003.45', '9','1','529.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089061.0','1047738.0','4', '4','3','4365.83', '4','3','4105.84', '3','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000798.0','1022171.0','4', '4','4','17113.77', '4','3','15960.23', '3','2','1153.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089062.0','1047738.0','18', '14','13','114185.24', '14','13','98523.04', '11','5','15662.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000799.0','1022171.0','7', '7','5','30838.48', '7','5','30631.3', '3','1','207.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089063.0','1047738.0','9', '9','7','15498.36', '8','7','15498.36', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000800.0','1022171.0','10', '10','9','33603.19', '10','8','32282.54', '8','4','1320.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089064.0','1047738.0','8', '7','6','22915.65', '7','6','22823.15', '4','1','92.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000801.0','1022171.0','5', '5','4','25623.57', '5','4','25623.57', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089065.0','1047738.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000802.0','1022171.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089066.0','1047738.0','1', '1','1','1777.44', '1','1','1034.0', '1','1','743.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000803.0','1022171.0','6', '6','5','10188.22', '6','5','8465.59', '6','1','1722.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089067.0','1047738.0','5', '4','3','2798.84', '4','3','2798.84', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000804.0','1022171.0','3', '3','1','638.96', '3','1','638.96', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089068.0','1047738.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000805.0','1022171.0','188', '183','140','318489.68', '175','136','309873.42', '130','15','8616.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089069.0','1047738.0','7', '7','7','24276.05', '7','7','23858.85', '4','2','417.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000806.0','1022171.0','78', '57','34','92559.55', '50','33','89686.34', '36','8','2873.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089070.0','1047738.0','14', '13','11','34332.99', '13','11','33753.02', '10','2','579.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000807.0','1022171.0','4', '4','4','16032.75', '4','4','16032.75', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089071.0','1047738.0','14', '13','9','24805.99', '13','9','21635.57', '10','4','3170.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000808.0','1022171.0','19', '18','12','33913.68', '18','12','31828.13', '14','3','2085.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089072.0','1047738.0','37', '33','26','49366.48', '32','25','34599.3', '27','8','14767.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000809.0','1022171.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089073.0','1047738.0','1', '1','1','4282.13', '1','1','4282.13', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000810.0','1022171.0','35', '34','23','51309.36', '33','22','50864.03', '32','2','445.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089074.0','1047738.0','31', '31','21','31886.57', '29','20','27660.13', '22','7','4226.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000811.0','1022171.0','22', '21','18','53092.45', '21','18','51842.15', '17','3','1250.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089075.0','1047738.0','11', '11','7','22624.52', '11','7','22624.52', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000812.0','1022171.0','9', '8','3','8636.0', '8','3','8636.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089076.0','1047738.0','36', '35','21','36397.69', '35','16','29882.06', '25','6','6515.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000813.0','1022171.0','544', '531','381','929538.77', '515','310','709449.24', '481','214','220089.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089077.0','1047738.0','1', '1','1','1581.21', '1','1','1321.22', '1','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000814.0','1022171.0','50', '36','32','237489.82', '36','32','223695.51', '22','4','13794.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089078.0','1047738.0','11', '11','8','9155.17', '10','8','9155.17', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000815.0','1022171.0','5', '4','3','1779.66', '4','3','1779.66', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089079.0','1047738.0','4', '2','2','1642.92', '2','2','1642.92', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000816.0','1022171.0','12', '9','6','7813.75', '8','4','5184.55', '8','3','2629.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089080.0','1047738.0','127', '112','83','219315.71', '108','75','194364.21', '82','26','24951.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000817.0','1022171.0','2', '2','2','1573.68', '2','2','1573.68', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089081.0','1047738.0','19', '17','9','9551.75', '16','8','8671.76', '11','2','879.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000818.0','1022171.0','5', '4','3','6968.41', '4','3','6968.41', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089082.0','1047738.0','5', '4','3','4316.21', '3','3','4316.21', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000819.0','1022171.0','54', '50','36','122583.74', '46','36','116320.88', '37','8','6262.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089083.0','1047738.0','1', '1','1','378.63', '1','1','378.63', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000820.0','1022171.0','5', '4','3','4033.12', '4','3','3773.13', '4','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089084.0','1047738.0','40', '37','30','106750.55', '36','29','94512.51', '27','11','12238.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000821.0','1022171.0','10', '9','1','2207.49', '9','1','2207.49', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089085.0','1047738.0','47', '46','14','91151.3', '46','13','90301.3', '27','2','850.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000822.0','1022171.0','1', '1','1','1062.43', '1','1','1062.43', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089086.0','1047738.0','31', '30','23','62163.14', '28','22','59251.16', '22','7','2911.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000823.0','1022171.0','146', '145','118','335986.47', '139','116','316710.83', '116','20','19275.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089087.0','1047738.0','1', '1','1','8592.16', '1','1','7524.16', '1','1','1068.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000824.0','1022171.0','26', '25','19','45308.99', '25','19','44706.98', '16','2','602.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089088.0','1047738.0','2', '2','2','29213.36', '2','2','22256.42', '1','1','6956.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000825.0','1022171.0','13', '13','8','5474.52', '13','8','5474.52', '11','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089089.0','1047738.0','8', '8','6','15468.87', '8','6','14688.9', '5','3','779.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000826.0','1022171.0','3', '3','3','2193.25', '3','1','1416.0', '3','2','777.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089090.0','1047738.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000827.0','1022171.0','6', '5','4','15381.61', '4','4','14711.63', '4','1','669.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089091.0','1047738.0','10', '9','1','974.0', '8','1','974.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000828.0','1022171.0','8', '8','7','8948.46', '7','7','8948.46', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089092.0','1047738.0','3', '3','2','19352.48', '2','2','18232.33', '3','2','1120.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000829.0','1022171.0','265', '252','188','584894.39', '243','168','540502.91', '199','73','44391.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089093.0','1047738.0','2', '2','1','360.38', '2','1','360.38', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000830.0','1022171.0','22', '22','18','50535.86', '22','18','49971.52', '20','2','564.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089094.0','1047738.0','14', '11','11','30464.9', '11','11','29710.42', '9','2','754.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000831.0','1022171.0','21', '20','7','8444.72', '16','6','6793.89', '17','2','1650.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089095.0','1047738.0','5', '4','1','6913.89', '4','1','6817.17', '3','1','96.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000832.0','1022171.0','2', '2','2','2057.9', '2','2','2057.9', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089096.0','1047738.0','3', '3','2','2034.46', '3','2','2034.46', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000833.0','1022171.0','32', '32','26','55689.59', '32','26','44748.39', '24','7','10941.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089097.0','1047738.0','26', '23','18','34710.56', '21','17','33141.6', '14','5','1568.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000834.0','1022171.0','277', '272','221','540083.38', '264','217','520699.91', '215','53','19383.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089098.0','1047738.0','2', '2','1','1718.85', '2','1','1718.85', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000835.0','1022171.0','21', '21','6','22457.16', '19','6','22171.62', '20','1','285.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089099.0','1047738.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000836.0','1022171.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089100.0','1047738.0','7', '6','6','33582.36', '6','6','32639.29', '5','2','943.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000837.0','1022171.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089101.0','1047738.0','19', '16','7','94326.63', '16','7','72627.37', '10','4','21699.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000838.0','1022171.0','1', '1','1','1340.07', '1','1','1340.07', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089102.0','1047738.0','49', '45','33','111665.24', '42','31','106056.63', '29','9','5608.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000839.0','1022171.0','16', '11','7','19838.26', '11','7','19838.26', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089103.0','1047738.0','640', '585','175','1066510.38', '548','146','738696.07', '371','115','327814.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000840.0','1022171.0','8', '7','7','23517.25', '7','7','23217.64', '5','1','299.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089104.0','1047738.0','170', '165','27','63849.85', '163','26','53301.85', '78','6','10548.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000841.0','1022171.0','1', '1','1','986.05', '1','1','986.05', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089105.0','1047738.0','10', '8','7','30210.15', '7','6','22133.74', '6','3','8076.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000842.0','1022171.0','6', '4','4','27879.76', '4','4','20956.91', '2','1','6922.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089106.0','1047738.0','6', '3','3','24046.9', '3','3','20600.14', '3','2','3446.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000843.0','1022171.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089107.0','1047738.0','13', '11','10','15984.06', '10','10','15125.51', '9','2','858.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000844.0','1022171.0','67', '57','44','133768.16', '55','43','104343.17', '41','13','29424.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089108.0','1047738.0','1', '1','1','1121.49', '1','1','1121.49', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000845.0','1022171.0','2', '2','2','1598.2', '2','2','1598.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089109.0','1047738.0','11', '11','6','8649.23', '11','6','8589.24', '8','1','59.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000846.0','1022171.0','143', '136','69','162479.89', '126','48','113260.66', '115','41','49219.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089110.0','1047738.0','3', '3','2','11910.97', '3','2','11910.97', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000847.0','1022171.0','26', '23','15','49375.35', '21','15','47505.04', '19','4','1870.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089111.0','1047738.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000848.0','1022171.0','17', '17','14','42049.52', '17','14','36545.83', '11','4','5503.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089112.0','1047738.0','27', '25','18','46667.83', '23','17','43773.73', '18','5','2894.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000849.0','1022171.0','26', '24','13','49771.84', '24','12','18007.37', '19','11','31764.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089113.0','1047738.0','7', '7','3','1713.41', '5','3','1713.41', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000850.0','1022171.0','1226', '1028','321','1078110.51', '942','269','781010.72', '704','173','297099.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089114.0','1047738.0','20', '20','4','11206.47', '20','3','10045.26', '10','1','1161.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000851.0','1022171.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089115.0','1047738.0','1', '1','1','1428.56', '1','1','1428.56', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000852.0','1022171.0','16', '15','10','33634.76', '15','10','33105.26', '12','1','529.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089116.0','1047738.0','9', '8','5','4667.81', '8','5','4347.83', '8','2','319.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000853.0','1022171.0','132', '125','72','151223.25', '113','57','127594.79', '106','36','23628.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089117.0','1047738.0','7', '7','3','8188.48', '7','3','8035.82', '6','2','152.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000854.0','1022171.0','15', '14','11','26200.69', '13','10','24437.79', '10','5','1762.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089118.0','1047738.0','11', '11','4','24167.05', '11','4','24167.05', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000855.0','1022171.0','12', '12','8','82654.06', '11','8','55347.6', '8','4','27306.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089119.0','1047738.0','103', '100','51','128133.6', '93','41','107150.1', '81','24','20983.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000856.0','1022171.0','5', '5','4','4139.38', '4','3','3006.79', '4','3','1132.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089120.0','1047738.0','4', '3','3','13517.49', '3','3','11165.84', '2','1','2351.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000857.0','1022171.0','6', '6','5','37079.98', '6','5','37079.98', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089121.0','1047738.0','11', '10','7','31178.21', '8','7','30918.22', '7','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000858.0','1022171.0','6', '6','3','4522.93', '6','3','4262.94', '4','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089122.0','1047738.0','24', '22','21','101842.6', '22','21','101056.77', '10','2','785.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000859.0','1022171.0','1', '1','1','2064.57', '1','1','2064.57', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089123.0','1047738.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000860.0','1022171.0','5', '3','2','5215.67', '3','2','4703.42', '2','2','512.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089124.0','1047738.0','65', '65','38','45259.87', '65','29','35327.88', '54','17','9931.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000861.0','1022171.0','11', '9','8','12443.34', '9','8','12443.34', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089125.0','1047738.0','1', '1','1','1736.6', '1','1','1736.6', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000862.0','1022171.0','2', '2','2','2952.79', '2','2','2952.79', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089126.0','1047738.0','121', '115','105','311602.03', '113','100','293027.57', '78','23','18574.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000863.0','1022171.0','3', '3','2','8870.61', '3','2','8870.61', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089127.0','1047738.0','1', '1','1','1630.0', '1','1','1630.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000864.0','1022171.0','9', '8','6','31732.56', '8','5','28165.45', '5','4','3567.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089128.0','1047738.0','11', '11','8','22303.48', '11','7','19741.34', '7','2','2562.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000865.0','1022171.0','5', '5','3','6763.3', '2','2','5174.81', '5','2','1588.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089129.0','1047738.0','7', '7','7','25394.65', '7','7','19890.87', '4','1','5503.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000866.0','1022171.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089130.0','1047738.0','5', '3','3','9484.59', '3','3','8014.99', '3','2','1469.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000867.0','1022171.0','4', '4','2','1408.59', '4','2','1408.59', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089131.0','1047738.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000868.0','1022171.0','11', '10','8','46760.25', '9','8','43261.64', '8','3','3498.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089132.0','1047738.0','7', '7','2','1659.72', '7','2','1583.2', '4','1','76.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003523.0', '2000869.0','1022171.0','378', '358','181','327957.6', '330','137','263278.77', '306','83','64678.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008018.0', '2089133.0','1047738.0','1', '1','1','1379.45', '1','1','1379.45', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000870.0','1022171.0','43', '36','28','203308.29', '35','25','176078.42', '33','10','27229.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089134.0','1047738.0','4', '4','2','1878.98', '3','2','1878.98', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000871.0','1022171.0','15', '10','9','34616.43', '9','7','32458.94', '8','2','2157.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089135.0','1047738.0','19', '18','12','46509.89', '16','11','34191.94', '14','6','12317.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000872.0','1022171.0','3', '3','3','4266.25', '3','3','4266.25', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089136.0','1047738.0','13', '12','11','35478.68', '12','11','34128.75', '11','2','1349.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000873.0','1022171.0','3', '1','1','887.31', '1','1','887.31', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089137.0','1047738.0','5', '4','3','3713.61', '4','3','3453.62', '2','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000874.0','1022171.0','2', '2','2','7723.29', '2','2','7723.29', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089138.0','1047738.0','6', '6','6','36401.95', '6','6','36401.95', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000875.0','1022171.0','17', '17','7','18611.91', '16','7','17898.24', '10','1','713.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089139.0','1047738.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000876.0','1022171.0','59', '56','35','94040.97', '53','35','93720.99', '40','1','319.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089140.0','1047738.0','106', '104','74','143585.8', '96','71','134595.74', '78','15','8990.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000877.0','1022171.0','5', '4','3','7551.04', '4','3','7551.04', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089141.0','1047738.0','2', '2','2','11158.36', '2','2','11158.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000878.0','1022171.0','19', '18','11','17723.86', '18','9','15600.92', '15','3','2122.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089142.0','1047738.0','352', '311','97','493358.95', '296','88','393545.34', '187','51','99813.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000879.0','1022171.0','1', '1','1','3500.0', '1','0','0.0', '1','1','3500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089143.0','1047738.0','19', '18','2','4399.7', '18','2','4399.7', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000880.0','1022171.0','1', '1','1','719.56', '1','1','719.56', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089144.0','1047738.0','37', '36','19','59221.56', '34','16','49119.17', '31','7','10102.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000881.0','1022171.0','2', '1','1','818.43', '1','1','818.43', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089145.0','1047738.0','10', '10','7','10852.04', '10','7','10072.07', '10','3','779.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000882.0','1022171.0','25', '8','2','1750.0', '1','0','0.0', '8','2','1750.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089146.0','1047738.0','43', '37','28','51866.3', '34','27','49122.01', '28','7','2744.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000883.0','1022171.0','8', '8','7','12431.45', '8','7','12171.46', '8','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089147.0','1047738.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003523.0', '2000884.0','1022171.0','27', '26','7','50723.42', '26','6','50123.29', '12','2','600.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008018.0', '2089148.0','1047738.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000885.0','1022171.0','5', '5','2','6283.17', '4','2','6283.17', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089149.0','1047738.0','37', '36','32','73441.88', '36','31','72221.95', '26','6','1219.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000886.0','1022171.0','2', '1','1','1493.51', '1','1','1493.51', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089150.0','1047738.0','22', '22','8','15503.49', '22','8','15503.49', '13','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000887.0','1022171.0','8', '8','8','21466.87', '8','8','20308.63', '6','2','1158.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089151.0','1047738.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000888.0','1022171.0','1', '1','1','900.0', '1','0','0.0', '1','1','900.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089152.0','1047738.0','20', '20','16','33402.29', '20','16','25939.93', '12','5','7462.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000889.0','1022171.0','4', '4','2','2726.99', '4','2','2726.99', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089153.0','1047738.0','515', '504','287','448812.73', '476','225','371768.02', '414','123','77044.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000890.0','1022054.0','30', '29','23','150462.17', '29','22','134254.52', '22','9','16207.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089154.0','1047621.0','1', '1','1','7638.03', '1','1','7378.04', '1','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000891.0','1022054.0','13', '11','10','23765.46', '11','10','23565.51', '8','1','199.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089155.0','1047621.0','38', '37','34','80468.54', '37','34','76168.06', '21','7','4300.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000892.0','1022054.0','4', '3','2','4326.2', '3','2','4326.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089156.0','1047621.0','151', '143','82','164815.06', '129','70','139189.24', '118','26','25625.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000893.0','1022054.0','4', '4','4','17161.75', '4','4','16081.14', '3','2','1080.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089157.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000894.0','1022054.0','3', '2','2','8760.39', '2','1','7563.46', '2','1','1196.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089158.0','1047621.0','1', '1','1','2144.74', '1','1','1884.75', '1','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000895.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089159.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000896.0','1022054.0','19', '15','7','17923.62', '15','6','16411.92', '10','2','1511.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089160.0','1047621.0','1', '1','1','290.4', '1','1','290.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000897.0','1022054.0','2', '2','1','1309.37', '2','1','1309.37', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089161.0','1047621.0','4', '4','3','6022.02', '4','3','4963.03', '2','1','1058.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000898.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089162.0','1047621.0','2', '1','1','2162.72', '1','1','2162.72', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000899.0','1022054.0','28', '27','22','48199.12', '27','21','46569.18', '17','6','1629.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089163.0','1047621.0','10', '9','6','14693.86', '8','6','14693.86', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000900.0','1022054.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089164.0','1047621.0','1', '1','1','2889.56', '1','1','2889.56', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000901.0','1022054.0','7', '4','4','22004.96', '4','4','22004.96', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089165.0','1047621.0','4', '3','2','3478.97', '2','2','2934.0', '3','1','544.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000902.0','1022054.0','12', '12','10','19420.84', '11','9','17681.97', '11','4','1738.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089166.0','1047621.0','16', '14','10','21905.05', '14','10','21150.23', '11','2','754.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000903.0','1022054.0','1', '1','1','5673.91', '1','1','4043.87', '1','1','1630.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089167.0','1047621.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000904.0','1022054.0','5', '4','4','2649.28', '4','4','2649.28', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089168.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000905.0','1022054.0','1', '1','1','529.5', '0','0','0.0', '1','1','529.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089169.0','1047621.0','2', '2','2','11684.46', '2','2','10365.48', '2','1','1318.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000906.0','1022054.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089170.0','1047621.0','3', '3','2','1632.5', '3','2','1372.51', '2','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000907.0','1022054.0','8', '8','5','34557.75', '7','4','34264.06', '6','2','293.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089171.0','1047621.0','9', '8','2','2818.29', '8','1','2670.3', '3','1','147.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000908.0','1022054.0','184', '179','122','258145.74', '166','109','221786.26', '142','40','36359.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089172.0','1047621.0','33', '32','21','63678.9', '30','18','59648.58', '27','9','4030.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000909.0','1022054.0','28', '27','19','73120.97', '26','17','67126.05', '23','6','5994.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089173.0','1047621.0','64', '62','48','187354.06', '61','46','184676.49', '37','6','2677.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2000910.0','1022054.0','12', '12','9','44635.97', '12','9','40259.75', '9','1','4376.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089174.0','1047621.0','1', '1','1','1180.0', '1','1','1180.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000911.0','1022054.0','15', '13','11','16886.04', '13','11','15507.07', '5','1','1378.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089175.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000912.0','1022054.0','7', '7','6','15435.54', '6','6','15178.66', '5','1','256.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089176.0','1047621.0','2', '2','2','2344.22', '2','2','2344.22', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000913.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089177.0','1047621.0','20', '16','14','31587.04', '16','13','29282.06', '15','3','2304.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000914.0','1022054.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089178.0','1047621.0','70', '65','42','126795.22', '58','39','96550.94', '52','18','30244.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000915.0','1022054.0','7', '7','5','7976.13', '6','5','7976.13', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089179.0','1047621.0','9', '8','4','8100.29', '8','4','8100.29', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000916.0','1022054.0','7', '7','7','9330.57', '7','7','9070.58', '3','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089180.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000917.0','1022054.0','16', '15','4','7156.42', '15','3','6186.03', '9','1','970.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089181.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000918.0','1022054.0','4', '4','2','15095.33', '3','2','14835.34', '3','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089182.0','1047621.0','29', '26','20','37290.81', '24','19','36143.56', '21','2','1147.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000919.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089183.0','1047621.0','14', '14','9','68545.4', '14','8','64719.3', '8','4','3826.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000920.0','1022054.0','21', '18','13','33478.72', '17','13','32464.25', '15','3','1014.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089184.0','1047621.0','1', '1','1','4809.18', '1','1','1400.0', '1','1','3409.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000921.0','1022054.0','16', '12','9','12007.24', '12','7','8475.61', '8','3','3531.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089185.0','1047621.0','2', '2','1','3529.22', '2','1','3281.97', '1','1','247.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000922.0','1022054.0','9', '6','5','18804.66', '5','5','18544.67', '3','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089186.0','1047621.0','13', '9','7','15705.18', '9','7','12860.93', '5','2','2844.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000923.0','1022054.0','16', '14','7','25162.59', '14','7','25162.59', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089187.0','1047621.0','113', '109','86','266521.94', '106','79','216785.65', '77','28','49736.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000924.0','1022054.0','4', '4','2','6784.89', '4','2','6195.4', '3','1','589.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089188.0','1047621.0','8', '8','6','23331.21', '8','6','21494.5', '5','1','1836.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000925.0','1022054.0','22', '21','17','38996.89', '21','16','36902.58', '15','2','2094.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089189.0','1047621.0','2', '2','1','594.42', '2','1','594.42', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000926.0','1022054.0','32', '32','27','84173.76', '32','27','79727.59', '22','3','4446.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089190.0','1047621.0','59', '56','40','72410.25', '54','34','59836.66', '49','16','12573.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000927.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089191.0','1047621.0','3', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000928.0','1022054.0','1', '1','1','15237.15', '1','1','15237.15', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089192.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000929.0','1022054.0','13', '9','1','2652.5', '9','1','2467.5', '4','1','185.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089193.0','1047621.0','2', '2','2','8653.09', '2','2','8653.09', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000930.0','1022054.0','3', '2','2','8904.97', '2','2','8644.98', '2','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089194.0','1047621.0','2', '2','2','1302.88', '2','2','1302.88', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000931.0','1022054.0','10', '7','2','10944.01', '4','2','2800.0', '6','2','8144.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089195.0','1047621.0','30', '29','19','37668.96', '25','19','37421.71', '22','1','247.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000932.0','1022054.0','3', '3','3','7377.41', '3','3','7117.42', '2','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089196.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000933.0','1022054.0','5', '4','1','2923.04', '4','1','2058.0', '4','1','865.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089197.0','1047621.0','17', '16','10','19976.9', '14','8','18365.54', '16','4','1611.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000934.0','1022054.0','173', '147','48','162372.22', '130','40','78829.97', '101','34','83542.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089198.0','1047621.0','1', '1','1','15599.71', '1','1','15599.71', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000935.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089199.0','1047621.0','2', '2','1','27557.16', '2','1','27557.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000936.0','1022054.0','32', '29','22','168515.1', '28','22','167740.92', '19','2','774.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089200.0','1047621.0','8', '7','5','6304.56', '6','5','6304.56', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000663.0','1022054.0','9', '8','5','9860.91', '8','5','8714.97', '3','2','1145.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088927.0','1047621.0','13', '13','11','26776.36', '11','11','26679.64', '7','1','96.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000937.0','1022054.0','1', '1','1','776.75', '1','0','0.0', '1','1','776.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089201.0','1047621.0','3', '3','2','9016.77', '3','2','8696.79', '2','1','319.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000938.0','1022054.0','4', '3','3','3011.52', '3','3','2751.53', '3','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089202.0','1047621.0','46', '44','30','78749.47', '41','26','76412.02', '31','8','2337.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000939.0','1022054.0','96', '90','72','367115.7', '88','63','271469.73', '63','32','95645.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089203.0','1047621.0','36', '32','3','2776.53', '31','3','2776.53', '22','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000940.0','1022054.0','86', '78','53','128060.36', '72','50','121918.42', '56','10','6141.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089204.0','1047621.0','5', '5','1','2994.19', '5','1','2846.2', '2','1','147.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000941.0','1022054.0','5', '4','4','15277.15', '4','4','13382.25', '4','2','1894.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089205.0','1047621.0','102', '100','81','156778.64', '96','80','151365.0', '72','11','5413.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000942.0','1022054.0','13', '13','10','27738.99', '12','10','27479.0', '10','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089206.0','1047621.0','1', '1','1','268.66', '1','1','268.66', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000943.0','1022054.0','19', '17','14','18003.5', '17','12','16850.43', '14','4','1153.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089207.0','1047621.0','4', '4','0','0.0', '4','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000944.0','1022054.0','22', '22','5','7510.13', '21','5','7280.25', '10','1','229.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089208.0','1047621.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000945.0','1022054.0','2', '2','1','570.36', '2','1','570.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089209.0','1047621.0','3', '3','2','4176.17', '3','2','3916.18', '1','1','259.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000946.0','1022054.0','1', '1','1','2403.59', '1','1','2403.59', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089210.0','1047621.0','51', '48','35','188302.18', '47','35','178045.87', '36','8','10256.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000947.0','1022054.0','239', '235','160','504348.51', '232','153','466396.77', '187','46','37951.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089211.0','1047621.0','2', '2','1','300.63', '2','0','0.0', '2','1','300.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000948.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089212.0','1047621.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000949.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089213.0','1047621.0','27', '27','1','194.5', '27','1','194.5', '12','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000950.0','1022054.0','2', '2','2','15000.0', '0','0','0.0', '2','2','15000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089214.0','1047621.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000951.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089215.0','1047621.0','1420', '1365','589','1251037.3', '1310','402','952869.26', '891','348','298168.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000952.0','1022054.0','25', '22','10','26264.48', '20','6','22060.01', '12','6','4204.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089216.0','1047621.0','2', '2','2','5093.54', '2','2','4663.56', '1','1','429.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000953.0','1022054.0','28', '25','8','25956.95', '24','6','21654.98', '10','4','4301.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089217.0','1047621.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000954.0','1022054.0','373', '333','201','310114.21', '311','158','237651.04', '166','98','72463.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089218.0','1047621.0','1', '1','1','229.99', '1','0','0.0', '1','1','229.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000955.0','1022054.0','280', '250','96','185958.85', '235','77','156967.98', '108','40','28990.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089219.0','1047621.0','3', '3','1','4716.07', '2','1','4716.07', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000956.0','1022054.0','15', '11','5','2556.45', '10','2','1818.04', '5','3','738.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089220.0','1047621.0','3', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000957.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089221.0','1047621.0','26', '25','8','21499.34', '24','8','21499.34', '12','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000958.0','1022054.0','26', '22','3','3538.66', '20','1','1296.0', '8','3','2242.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089222.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000959.0','1022054.0','4', '3','1','4103.01', '2','1','4103.01', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089223.0','1047621.0','10', '10','3','9699.94', '9','3','9699.94', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000960.0','1022054.0','2', '1','1','2123.6', '1','0','0.0', '1','1','2123.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089224.0','1047621.0','1951', '1785','1231','2680485.83', '1759','1121','2328984.02', '710','466','351501.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000961.0','1022054.0','11', '10','5','19434.09', '10','5','18877.23', '4','1','556.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089225.0','1047621.0','3', '1','1','645.0', '0','0','0.0', '1','1','645.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000962.0','1022054.0','36', '33','8','18722.1', '30','5','12776.97', '9','3','5945.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089226.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003523.0', '2000963.0','1022054.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008018.0', '2089227.0','1047621.0','14', '14','6','9692.12', '14','2','5865.16', '7','4','3826.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000964.0','1022054.0','4', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089228.0','1047621.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000965.0','1022054.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089229.0','1047621.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000966.0','1022054.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089230.0','1047621.0','15', '13','3','3615.76', '13','2','2546.42', '5','1','1069.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000967.0','1022054.0','30', '27','10','13558.1', '25','10','13425.97', '7','1','132.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089231.0','1047621.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000968.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089232.0','1047621.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000969.0','1022054.0','46', '42','11','27431.03', '41','9','23833.93', '21','6','3597.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089233.0','1047621.0','1', '1','1','132.13', '1','0','0.0', '1','1','132.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000970.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089234.0','1047621.0','3', '3','2','5223.59', '3','2','5223.59', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000971.0','1022054.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089235.0','1047621.0','1', '1','1','2484.42', '1','1','2484.42', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000972.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089236.0','1047621.0','1', '1','1','1296.0', '1','1','1296.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000973.0','1022054.0','4', '4','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089237.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000974.0','1022054.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089238.0','1047621.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000975.0','1022054.0','1', '1','1','1122.99', '1','1','1122.99', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089239.0','1047621.0','4', '3','2','1416.98', '1','0','0.0', '3','2','1416.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000976.0','1022054.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089240.0','1047621.0','4', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000977.0','1022054.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089241.0','1047621.0','69', '63','28','57511.94', '57','17','33291.66', '44','22','24220.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000978.0','1022054.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089242.0','1047621.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000979.0','1022054.0','128', '117','45','90169.09', '109','24','69270.67', '61','27','20898.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089243.0','1047621.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003523.0', '2000980.0','1022054.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008018.0', '2089244.0','1047621.0','5', '3','1','2221.0', '2','1','1692.0', '3','1','529.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000981.0','1022054.0','85', '74','36','219700.53', '68','31','210317.25', '34','9','9383.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089245.0','1047621.0','23', '19','10','28686.61', '17','5','24417.66', '13','7','4268.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000982.0','1022054.0','67', '62','26','127843.32', '56','20','117989.95', '30','9','9853.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089246.0','1047621.0','7', '6','1','278.43', '5','0','0.0', '3','1','278.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000983.0','1022054.0','1', '1','1','50.0', '1','0','0.0', '1','1','50.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089247.0','1047621.0','1', '1','1','1183.08', '1','1','1183.08', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000984.0','1022054.0','2', '2','2','4775.72', '2','2','4775.72', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089248.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000985.0','1022054.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089249.0','1047621.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000986.0','1022054.0','1', '1','1','1459.94', '1','1','1459.94', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089250.0','1047621.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000987.0','1022054.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089251.0','1047621.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000988.0','1022054.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089252.0','1047621.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000989.0','1022054.0','6', '6','4','14270.1', '6','3','14040.11', '1','1','229.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089253.0','1047621.0','4', '3','2','2759.61', '3','2','2627.48', '1','1','132.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000990.0','1022054.0','4', '4','1','5896.14', '4','1','5896.14', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089254.0','1047621.0','12', '9','4','21145.7', '8','4','20898.57', '3','1','247.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000991.0','1022054.0','3', '3','1','1289.95', '3','1','1289.95', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089255.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000992.0','1022054.0','1841', '1679','1130','3060676.03', '1600','910','2378385.53', '1053','617','682290.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089256.0','1047621.0','3', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2000993.0','1022054.0','4', '3','1','1721.6', '3','1','1721.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089257.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000994.0','1022054.0','59', '52','18','51283.31', '47','18','47634.09', '20','3','3649.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089258.0','1047621.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000995.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089259.0','1047621.0','1', '1','1','4639.0', '0','0','0.0', '1','1','4639.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000996.0','1022054.0','20', '19','7','21160.68', '18','7','20930.69', '5','1','229.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089260.0','1047621.0','177', '164','101','269531.88', '157','80','221537.2', '112','60','47994.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000997.0','1022054.0','811', '775','454','1078043.9', '745','362','903438.61', '539','251','174605.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089261.0','1047621.0','1', '1','1','168.3', '1','1','168.3', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000998.0','1022054.0','521', '462','272','562856.89', '445','239','492528.89', '194','100','70328.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089262.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000999.0','1022054.0','704', '652','433','856499.62', '646','408','762193.07', '182','125','94306.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089263.0','1047621.0','2', '2','2','2783.77', '2','2','2783.77', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001000.0','1022054.0','512', '482','228','472355.91', '471','198','409218.38', '226','86','63137.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089264.0','1047621.0','14', '13','4','7866.98', '13','4','7866.98', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001001.0','1022054.0','664', '605','327','450930.44', '583','284','391266.41', '207','101','59664.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089265.0','1047621.0','535', '491','297','653893.47', '459','234','550235.74', '261','143','103657.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001002.0','1022054.0','1', '1','1','2752.97', '1','1','1464.98', '1','1','1287.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089266.0','1047621.0','6', '5','0','0.0', '5','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001003.0','1022054.0','3', '3','1','3713.7', '3','1','3713.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089267.0','1047621.0','18', '18','4','3549.07', '18','4','3549.07', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001004.0','1022054.0','6', '6','3','4966.96', '5','2','4410.1', '3','1','556.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089268.0','1047621.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001005.0','1022054.0','73', '67','30','62436.9', '62','21','48534.64', '29','14','13902.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089269.0','1047621.0','1285', '1261','769','1745811.63', '1261','685','1647452.69', '400','287','98358.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001006.0','1022054.0','62', '56','14','24686.48', '54','12','21517.14', '24','3','3169.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089270.0','1047621.0','219', '198','63','140208.35', '186','53','119929.02', '83','24','20279.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001007.0','1022054.0','349', '318','165','270787.67', '314','145','237989.15', '100','46','32798.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089271.0','1047621.0','11', '11','2','948.17', '9','1','397.12', '7','1','551.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001008.0','1022054.0','2', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089272.0','1047621.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001009.0','1022054.0','10', '10','2','1880.39', '9','1','822.39', '2','1','1058.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089273.0','1047621.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001010.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089274.0','1047621.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001011.0','1022054.0','3', '2','1','632.77', '2','0','0.0', '2','1','632.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089275.0','1047621.0','2', '1','1','2256.0', '1','1','2256.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001012.0','1022054.0','3', '1','1','4639.0', '0','0','0.0', '1','1','4639.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089276.0','1047621.0','1', '1','1','434.86', '1','1','434.86', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001013.0','1022054.0','71', '66','21','44810.34', '65','16','39164.13', '49','12','5646.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089277.0','1047621.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001014.0','1022054.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089278.0','1047621.0','7', '7','2','2991.91', '6','2','2761.92', '5','1','229.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001015.0','1022054.0','325', '289','133','301187.01', '285','112','266153.56', '113','50','35033.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089279.0','1047621.0','14', '13','6','30778.04', '12','5','26516.6', '6','3','4261.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001016.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089280.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001017.0','1022054.0','18', '15','8','6594.11', '15','5','5674.15', '6','4','919.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089281.0','1047621.0','3', '2','1','885.56', '2','1','885.56', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001018.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089282.0','1047621.0','11', '8','2','8170.09', '6','1','6832.37', '4','2','1337.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001019.0','1022054.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089283.0','1047621.0','2134', '1960','1275','2806108.42', '1839','946','2033167.54', '1218','742','772940.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001020.0','1022054.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089284.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001021.0','1022054.0','1', '1','1','2620.3', '1','0','0.0', '1','1','2620.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089285.0','1047621.0','7', '7','1','529.0', '6','0','0.0', '5','1','529.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001022.0','1022054.0','1524', '1326','843','1663555.05', '1280','677','1355389.68', '621','401','308165.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089286.0','1047621.0','1', '1','1','6207.88', '1','1','2256.0', '1','1','3951.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001023.0','1022054.0','46', '42','18','33202.99', '39','14','30509.72', '16','5','2693.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089287.0','1047621.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001024.0','1022054.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089288.0','1047621.0','122', '109','55','71893.99', '105','45','64732.48', '35','13','7161.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001025.0','1022054.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089289.0','1047621.0','3', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001026.0','1022054.0','1', '1','1','977.02', '1','1','712.52', '1','1','264.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089290.0','1047621.0','69', '63','18','24797.91', '63','9','19494.99', '46','12','5302.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001027.0','1022054.0','45', '41','31','74883.82', '40','25','65865.42', '17','15','9018.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089291.0','1047621.0','14', '13','6','8369.49', '13','4','7644.51', '3','3','724.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001028.0','1022054.0','1667', '1511','879','1586490.61', '1500','799','1420033.11', '409','280','166457.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089292.0','1047621.0','3', '2','1','809.9', '2','1','809.9', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001029.0','1022054.0','51', '44','11','50750.29', '44','10','49942.86', '16','2','807.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089293.0','1047621.0','1', '1','1','1139.56', '1','1','610.56', '1','1','529.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001030.0','1022054.0','1', '1','1','229.99', '1','0','0.0', '1','1','229.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089294.0','1047621.0','122', '117','55','77657.45', '114','31','54540.01', '75','34','23117.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001031.0','1022054.0','136', '122','40','38963.36', '99','7','18015.78', '104','36','20947.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089295.0','1047621.0','1', '1','1','1296.0', '1','1','1296.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001032.0','1022054.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089296.0','1047621.0','7833', '7524','5210','11431865.32', '7330','3746','8603698.4', '5574','3451','2828166.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001033.0','1022054.0','245', '236','92','199073.16', '219','51','148083.8', '167','59','50989.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089297.0','1047621.0','1', '1','1','5508.64', '1','1','1296.0', '1','1','4212.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001034.0','1022054.0','1', '1','1','4639.0', '0','0','0.0', '1','1','4639.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089298.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001035.0','1022054.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089299.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001036.0','1022054.0','1', '1','1','1642.72', '1','0','0.0', '1','1','1642.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089300.0','1047621.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001037.0','1022054.0','3', '2','1','714.01', '2','1','714.01', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089301.0','1047621.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001038.0','1022054.0','39', '30','16','17779.43', '26','6','12457.71', '20','13','5321.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089302.0','1047621.0','14', '12','4','3171.35', '11','2','2018.74', '6','2','1152.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001039.0','1022054.0','915', '870','441','1023356.67', '848','376','896760.91', '408','164','126595.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089303.0','1047621.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001040.0','1022054.0','690', '606','330','650165.2', '573','284','550190.95', '263','128','99974.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089304.0','1047621.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001041.0','1022054.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089305.0','1047621.0','1803', '1744','936','1985246.15', '1692','677','1634528.05', '1265','575','350718.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001042.0','1022054.0','59', '54','29','74009.06', '52','25','61924.21', '29','13','12084.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089306.0','1047621.0','63', '63','33','38722.39', '63','18','24568.11', '43','21','14154.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001043.0','1022054.0','6', '5','2','2126.61', '5','2','2126.61', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089307.0','1047621.0','57', '56','26','30582.79', '54','18','24730.46', '24','10','5852.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001044.0','1022054.0','87', '83','26','49477.01', '79','25','47280.51', '35','4','2196.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089308.0','1047621.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001045.0','1022054.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089309.0','1047621.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001046.0','1022054.0','5831', '5501','4029','8814691.7', '5406','3314','7060974.66', '3563','2382','1753717.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089310.0','1047621.0','4134', '3955','2595','5485231.61', '3861','1990','4348225.6', '2856','1553','1137006.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001047.0','1022054.0','1461', '1210','891','3344512.8', '1149','701','3126603.63', '475','334','217909.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089311.0','1047621.0','6035', '5795','3898','8292844.42', '5674','2920','6363215.36', '4104','2438','1929629.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001048.0','1022054.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089312.0','1047621.0','10', '9','2','3944.68', '9','2','3944.68', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001049.0','1022054.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089313.0','1047621.0','33', '30','12','19517.32', '29','10','18107.9', '14','5','1409.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001050.0','1022054.0','128', '115','51','94828.69', '113','36','61632.38', '63','29','33196.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089314.0','1047621.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001051.0','1022090.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089315.0','1047657.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001052.0','1022090.0','3488', '3347','2220','4868502.92', '3271','1804','3896769.45', '2110','1220','971733.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089316.0','1047657.0','1', '1','1','414.08', '1','1','414.08', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001053.0','1022090.0','661', '620','271','562589.71', '593','175','458197.75', '453','174','104391.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089317.0','1047657.0','1459', '1378','831','1967785.69', '1337','631','1450523.86', '937','522','517261.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001054.0','1022090.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089318.0','1047657.0','3', '3','3','16173.79', '3','3','16173.79', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001055.0','1022090.0','101', '81','49','74299.9', '79','42','62416.83', '30','18','11883.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089319.0','1047657.0','107', '101','45','56039.98', '92','27','43080.36', '63','26','12959.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001056.0','1022090.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089320.0','1047657.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001057.0','1022090.0','17', '15','6','6643.64', '14','5','4710.03', '3','2','1933.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089321.0','1047657.0','1', '1','1','8366.7', '1','1','8366.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001058.0','1022090.0','232', '216','104','147481.85', '192','53','120968.29', '101','56','26513.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089322.0','1047657.0','682', '649','353','891404.7', '636','294','752686.49', '339','160','138718.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001059.0','1022090.0','432', '413','257','532442.13', '401','185','409855.39', '314','162','122586.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089323.0','1047657.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001060.0','1022090.0','1460', '1339','850','1635214.88', '1329','792','1496727.51', '391','246','138487.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089324.0','1047657.0','803', '777','431','880583.01', '746','255','627196.97', '539','288','253386.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001061.0','1022090.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089325.0','1047657.0','3', '3','1','529.0', '3','0','0.0', '1','1','529.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001062.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089326.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001063.0','1022044.0','84', '80','59','93802.19', '80','56','80942.79', '25','18','12859.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089327.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001064.0','1022044.0','15', '9','0','0.0', '9','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089328.0','1047611.0','5', '5','2','11589.11', '5','2','11589.11', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001065.0','1022044.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089329.0','1047611.0','1325', '1236','841','1549339.87', '1216','777','1366203.14', '452','259','183136.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001066.0','1022044.0','1855', '1789','1046','2514438.59', '1752','764','2033088.44', '1323','677','481350.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089330.0','1047611.0','21', '15','6','9736.71', '15','5','9632.94', '6','1','103.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001067.0','1022044.0','9', '8','4','9000.1', '8','4','9000.1', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089331.0','1047611.0','2', '2','2','7459.8', '2','2','6999.82', '2','2','459.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001068.0','1022044.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089332.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001069.0','1022044.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089333.0','1047611.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001070.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089334.0','1047611.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001071.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089335.0','1047611.0','6', '6','3','1903.25', '6','2','1775.3', '2','1','127.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001072.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089336.0','1047611.0','3', '2','1','579.99', '2','0','0.0', '1','1','579.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001073.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089337.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001074.0','1022044.0','1', '1','1','5134.83', '1','1','5134.83', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089338.0','1047611.0','1', '1','1','1138.68', '1','1','874.18', '1','1','264.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001075.0','1022044.0','438', '419','228','438191.56', '402','161','339405.5', '317','151','98786.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089339.0','1047611.0','3942', '3798','2516','5617107.32', '3696','1921','4471794.86', '2827','1612','1145312.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001076.0','1022044.0','4564', '4419','2225','4658763.11', '4284','1576','3651362.77', '3091','1334','1007400.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089340.0','1047611.0','69', '63','29','77052.53', '63','19','71239.54', '33','13','5812.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001077.0','1022044.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089341.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001078.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089342.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001079.0','1022044.0','322', '305','185','357834.11', '296','141','297018.71', '214','106','60815.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089343.0','1047611.0','91', '89','47','84691.84', '88','45','80348.4', '30','5','4343.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001080.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089344.0','1047611.0','3', '2','1','1172.67', '2','1','900.78', '1','1','271.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001081.0','1022044.0','1', '1','1','2069.57', '1','1','2069.57', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089345.0','1047611.0','5', '3','1','3571.64', '2','1','2018.16', '2','1','1553.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001082.0','1022044.0','1014', '905','542','1249105.42', '863','433','1008997.17', '487','280','240108.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089346.0','1047611.0','4391', '4115','2285','4736402.97', '3996','1762','3798064.43', '2131','1159','938338.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001083.0','1022044.0','2', '2','1','278.43', '2','0','0.0', '1','1','278.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089347.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001084.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089348.0','1047611.0','673', '612','375','1027897.01', '597','299','818636.09', '351','211','209260.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001085.0','1022044.0','11', '10','3','3316.42', '9','2','3051.92', '5','1','264.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089349.0','1047611.0','515', '487','304','625146.44', '474','229','427726.53', '357','211','197419.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001086.0','1022044.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089350.0','1047611.0','161', '155','66','130920.42', '151','53','111974.4', '97','34','18946.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001087.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089351.0','1047611.0','10', '9','6','11526.36', '9','6','8806.59', '8','3','2719.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001088.0','1022044.0','13', '7','1','650.0', '4','1','650.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089352.0','1047611.0','12', '10','5','4973.58', '10','3','3263.14', '6','4','1710.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001089.0','1022044.0','2', '2','2','1112.11', '2','2','1112.11', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089353.0','1047611.0','276', '248','97','133192.12', '212','76','104238.39', '150','38','28953.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001090.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089354.0','1047611.0','253', '230','95','189013.04', '219','79','173314.63', '111','27','15698.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001091.0','1022044.0','24', '23','13','22554.26', '22','12','20533.3', '6','1','2020.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089355.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001092.0','1022044.0','452', '427','230','386802.29', '401','128','328539.98', '212','130','58262.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089356.0','1047611.0','750', '705','459','931819.91', '691','367','725027.7', '512','289','206792.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001093.0','1022044.0','1', '1','1','645.0', '1','0','0.0', '1','1','645.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089357.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001094.0','1022044.0','14', '13','4','4528.33', '13','2','3751.2', '7','2','777.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089358.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001095.0','1022044.0','26', '22','2','795.59', '21','0','0.0', '11','2','795.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089359.0','1047611.0','4', '4','2','1491.73', '3','0','0.0', '3','2','1491.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001096.0','1022044.0','2', '2','1','807.72', '1','1','807.72', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089360.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001097.0','1022044.0','37', '34','25','60791.83', '32','22','51808.22', '11','8','8983.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089361.0','1047611.0','14', '10','6','8849.25', '10','5','8320.25', '3','2','529.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001098.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089362.0','1047611.0','3543', '3422','1848','3725912.33', '3335','1373','3004488.21', '2254','1028','721424.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001099.0','1022044.0','3', '2','2','4258.92', '2','1','3494.02', '1','1','764.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089363.0','1047611.0','1', '1','1','4048.32', '1','1','2256.0', '1','1','1792.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001100.0','1022044.0','1', '1','1','4314.99', '1','1','4314.99', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089364.0','1047611.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001101.0','1022044.0','1', '1','1','529.0', '0','0','0.0', '1','1','529.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089365.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001102.0','1022044.0','148', '131','64','84576.34', '121','45','63910.84', '66','32','20665.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089366.0','1047611.0','9', '6','1','2467.97', '5','0','0.0', '6','1','2467.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001103.0','1022044.0','1', '1','1','394.5', '1','0','0.0', '1','1','394.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089367.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001104.0','1022044.0','692', '653','280','455177.7', '637','206','365358.66', '464','143','89819.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089368.0','1047611.0','364', '342','242','439934.74', '335','212','408729.93', '113','79','31204.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001105.0','1022044.0','10', '7','2','13398.07', '7','2','13398.07', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089369.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001106.0','1022044.0','2', '2','2','1661.61', '2','0','0.0', '2','2','1661.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089370.0','1047611.0','14', '13','7','5061.32', '12','3','3768.34', '5','4','1292.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001107.0','1022044.0','5141', '5017','2525','5839039.06', '4910','1746','4524429.71', '3801','1703','1314609.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089371.0','1047611.0','2', '2','1','209.78', '2','1','209.78', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001108.0','1022044.0','20', '17','6','16527.81', '17','5','14084.82', '5','3','2442.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089372.0','1047611.0','199', '194','67','162868.71', '185','60','145612.47', '104','20','17256.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001109.0','1022044.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089373.0','1047611.0','12', '12','6','7192.03', '12','6','7192.03', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001110.0','1022044.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089374.0','1047611.0','1636', '1499','905','1526300.25', '1488','794','1321799.67', '567','362','204500.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001111.0','1022044.0','99', '85','21','46612.78', '79','13','39187.46', '46','13','7425.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089375.0','1047611.0','914', '867','552','1236073.89', '829','428','990078.21', '587','293','245995.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001112.0','1022044.0','1', '1','1','2628.7', '1','1','2628.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089376.0','1047611.0','20', '18','5','4214.41', '17','4','4075.52', '3','1','138.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001113.0','1022044.0','121', '117','65','148712.31', '115','52','126112.85', '82','33','22599.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089377.0','1047611.0','38', '37','6','12575.16', '36','5','10164.47', '16','3','2410.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001114.0','1022044.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089378.0','1047611.0','1', '1','1','2618.08', '1','1','2618.08', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001115.0','1022044.0','655', '617','398','857409.12', '595','302','671587.89', '421','223','185821.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089379.0','1047611.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001116.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089380.0','1047611.0','3', '3','1','1289.46', '2','1','760.46', '3','1','529.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001117.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089381.0','1047611.0','4', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001118.0','1022044.0','16', '15','5','29917.5', '15','5','29917.5', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089382.0','1047611.0','4', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001119.0','1022044.0','328', '295','179','474621.83', '285','155','419124.43', '129','78','55497.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089383.0','1047611.0','5', '5','4','7481.26', '5','4','7349.13', '3','1','132.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001120.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089384.0','1047611.0','1', '1','1','774.54', '1','1','774.54', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001121.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089385.0','1047611.0','3023', '2934','1891','4336902.29', '2875','1428','3424956.07', '2205','1223','911946.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001122.0','1022044.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089386.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001123.0','1022044.0','2', '2','2','4074.82', '2','1','2574.49', '2','2','1500.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089387.0','1047611.0','14', '13','4','2451.25', '13','3','2168.45', '4','1','282.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001124.0','1022044.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089388.0','1047611.0','2', '2','2','8299.09', '2','2','8069.1', '1','1','229.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001125.0','1022044.0','37', '36','8','20312.58', '36','5','17027.4', '22','6','3285.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089389.0','1047611.0','2', '1','1','803.57', '1','1','803.57', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001126.0','1022044.0','33', '29','11','28446.33', '28','11','27917.33', '9','1','529.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089390.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001127.0','1022044.0','2', '2','1','850.7', '2','1','850.7', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089391.0','1047611.0','1846', '1660','979','1703370.24', '1641','878','1502538.05', '507','319','200832.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001128.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089392.0','1047611.0','6', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003523.0', '2001129.0','1022044.0','1934', '1845','1190','3073056.63', '1796','954','2435054.55', '1284','724','638002.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008018.0', '2089393.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001130.0','1022044.0','9', '8','4','6664.52', '7','3','4528.35', '8','3','2136.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089394.0','1047611.0','1', '1','1','2354.0', '1','1','1296.0', '1','1','1058.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001131.0','1022044.0','2481', '2386','1504','3201260.9', '2304','1096','2524391.73', '1794','908','676869.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089395.0','1047611.0','7457', '7114','4870','10021567.67', '6963','3576','7600537.19', '5038','3120','2421030.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001132.0','1022044.0','1101', '1055','383','768637.38', '1022','293','646155.24', '645','180','122482.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089396.0','1047611.0','6', '5','1','1290.32', '5','1','1290.32', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001133.0','1022044.0','9', '7','3','1744.79', '6','1','686.79', '5','2','1058.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089397.0','1047611.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001134.0','1022044.0','606', '552','339','600720.56', '526','287','495118.07', '298','138','105602.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089398.0','1047611.0','6', '6','3','2216.14', '2','0','0.0', '6','3','2216.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001135.0','1022044.0','538', '473','223','297118.37', '465','192','260728.96', '168','68','36389.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089399.0','1047611.0','2', '1','1','467.92', '1','0','0.0', '1','1','467.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001136.0','1022044.0','5', '5','2','8931.58', '5','2','8931.58', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089400.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001137.0','1022044.0','1', '1','1','2060.1', '1','1','2060.1', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089401.0','1047611.0','39', '39','27','76064.85', '36','18','55773.32', '35','21','20291.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001138.0','1022044.0','60', '56','24','42954.49', '52','15','33962.5', '29','13','8991.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089402.0','1047611.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001139.0','1022044.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089403.0','1047611.0','13', '13','4','10428.64', '13','4','10428.64', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001140.0','1022044.0','204', '186','60','100841.54', '176','33','70148.68', '107','47','30692.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089404.0','1047611.0','797', '720','438','771707.03', '654','210','670658.01', '413','270','101049.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001141.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089405.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001142.0','1022044.0','53', '52','43','126447.14', '52','40','113470.14', '21','14','12977.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089406.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001143.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089407.0','1047611.0','1', '1','1','3861.42', '1','1','3067.92', '1','1','793.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001144.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089408.0','1047611.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001145.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089409.0','1047611.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001146.0','1022044.0','8', '8','2','2868.19', '8','2','2589.76', '3','1','278.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089410.0','1047611.0','165', '157','81','189784.84', '154','71','166858.52', '58','26','22926.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001147.0','1022044.0','5471', '5326','2905','6982339.28', '5201','2039','5387969.4', '4091','1994','1594369.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089411.0','1047611.0','7', '7','2','33451.15', '7','2','33451.15', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001148.0','1022044.0','7', '7','5','12343.99', '6','3','7671.71', '7','5','4672.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089412.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001149.0','1022044.0','75', '65','31','52563.69', '61','24','44347.58', '37','13','8216.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089413.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001150.0','1022044.0','2253', '2139','1506','3382036.51', '2080','1171','2585233.75', '1614','988','796802.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089414.0','1047611.0','8', '8','2','1216.39', '8','2','1216.39', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001151.0','1022044.0','2337', '2161','1606','3032949.57', '2082','1299','2253996.78', '1555','1023','778952.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089415.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001152.0','1022044.0','7', '6','4','7781.01', '6','2','7104.37', '3','2','676.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089416.0','1047611.0','19', '17','7','10584.85', '15','7','10084.85', '7','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001153.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089417.0','1047611.0','5946', '5698','3231','6271703.81', '5527','2292','4881532.35', '3915','1952','1390171.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001154.0','1022044.0','4', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089418.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001155.0','1022044.0','1435', '1305','885','1490328.12', '1289','811','1299006.49', '462','272','191321.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089419.0','1047611.0','3587', '3286','2281','6098443.82', '3161','1853','5547618.01', '1078','784','550825.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001156.0','1022044.0','6', '5','4','5325.42', '3','3','4250.7', '4','2','1074.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089420.0','1047611.0','19', '18','6','9234.29', '18','5','8965.41', '4','1','268.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001157.0','1022044.0','125', '98','44','60543.47', '93','12','25503.32', '62','33','35040.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089421.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001158.0','1022044.0','14', '13','8','26585.74', '12','3','12260.0', '10','8','14325.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089422.0','1047611.0','520', '472','256','418697.56', '452','78','128047.96', '304','220','290649.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001159.0','1022044.0','47', '38','15','26947.17', '37','7','11861.01', '20','10','15086.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089423.0','1047611.0','130', '109','49','82669.26', '103','12','19307.65', '71','44','63361.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001160.0','1022044.0','1', '1','1','699.99', '1','0','0.0', '1','1','699.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089424.0','1047611.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001161.0','1022044.0','2', '2','2','2833.97', '1','1','1998.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089425.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001162.0','1022044.0','1', '1','1','4416.52', '1','1','1004.0', '1','1','3412.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089426.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001163.0','1022044.0','2', '2','1','813.87', '2','1','813.87', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089427.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001164.0','1022044.0','9228', '8108','3982','10490465.38', '8000','1796','4518181.91', '4860','3238','5972283.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089428.0','1047611.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001165.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089429.0','1047611.0','70', '61','21','30976.34', '57','3','7239.97', '37','20','23736.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001166.0','1022044.0','91', '71','26','46147.53', '65','14','19529.78', '41','18','26617.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089430.0','1047611.0','2', '1','1','6082.0', '1','1','6082.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001167.0','1022044.0','4', '4','4','11478.79', '4','3','3577.42', '4','2','7901.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089431.0','1047611.0','36', '34','15','17061.01', '32','8','11563.41', '17','9','5497.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001168.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089432.0','1047611.0','12', '11','4','3884.68', '11','0','0.0', '7','4','3884.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001169.0','1022044.0','31', '20','5','3450.83', '19','1','86.9', '8','4','3363.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089433.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001170.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089434.0','1047611.0','1', '1','1','279.04', '1','1','279.04', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001171.0','1022044.0','2', '2','1','18821.87', '2','1','11426.0', '1','1','7395.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089435.0','1047611.0','55', '40','15','33498.58', '38','6','9519.5', '18','11','23979.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001172.0','1022044.0','36', '25','8','8907.14', '24','1','2257.0', '12','7','6650.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089436.0','1047611.0','43', '35','8','13489.66', '34','2','3886.18', '22','8','9603.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001173.0','1022044.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089437.0','1047611.0','112', '92','43','56579.04', '83','15','26275.97', '55','36','30303.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001174.0','1022044.0','223', '193','99','184332.93', '179','39','92725.93', '126','73','91607.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089438.0','1047611.0','2', '2','1','1257.81', '2','0','0.0', '2','1','1257.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001175.0','1022044.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089439.0','1047611.0','12', '11','1','1772.26', '11','1','1772.26', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001176.0','1022044.0','7', '7','5','10499.38', '7','3','7610.88', '4','3','2888.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089440.0','1047611.0','2517', '2403','1391','1839719.3', '2379','293','513353.52', '1668','1291','1326365.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001177.0','1022044.0','4633', '4315','2286','4031837.32', '4279','654','1248186.81', '2709','1991','2783650.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089441.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001178.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089442.0','1047611.0','3063', '2640','1134','2448574.8', '2604','511','1103764.81', '1500','917','1344809.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001179.0','1022044.0','29', '24','10','9289.64', '23','2','3579.2', '13','8','5710.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089443.0','1047611.0','571', '482','218','359539.19', '456','66','112409.72', '308','189','247129.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001180.0','1022044.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089444.0','1047611.0','7', '6','1','1275.0', '6','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001181.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089445.0','1047611.0','4', '4','4','12767.27', '4','4','12645.24', '2','1','122.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001182.0','1022044.0','13', '10','5','2175.17', '8','3','1326.34', '5','2','848.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089446.0','1047611.0','1', '1','1','6534.62', '1','1','1004.0', '1','1','5530.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001183.0','1022044.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089447.0','1047611.0','1', '1','1','1221.01', '1','1','982.0', '1','1','239.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001184.0','1022044.0','174', '156','65','163844.01', '140','41','68636.43', '102','40','95207.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089448.0','1047611.0','1', '1','1','10691.34', '1','1','7012.0', '1','1','3679.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001185.0','1022044.0','251', '224','94','112816.03', '212','25','45833.38', '132','83','66982.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089449.0','1047611.0','5', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001186.0','1022044.0','57', '50','12','19753.48', '45','3','4559.0', '33','12','15194.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089450.0','1047611.0','19', '13','3','3244.59', '11','2','2744.59', '3','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001187.0','1022044.0','527', '483','268','437221.77', '462','114','223247.13', '319','207','213974.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089451.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001188.0','1022044.0','5', '4','3','2798.93', '4','0','0.0', '3','3','2798.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089452.0','1047611.0','27', '26','6','5093.47', '26','0','0.0', '10','6','5093.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001189.0','1022044.0','38', '32','16','28433.13', '28','9','19680.93', '17','10','8752.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089453.0','1047611.0','48', '20','3','2822.59', '17','0','0.0', '13','3','2822.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001190.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089454.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001191.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089455.0','1047611.0','17', '15','5','5364.58', '14','3','3302.12', '7','3','2062.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001192.0','1022044.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089456.0','1047611.0','195', '162','62','85931.26', '156','22','50393.56', '77','48','35537.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001193.0','1022044.0','1', '1','1','1446.76', '1','1','1158.69', '1','1','288.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089457.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001194.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089458.0','1047611.0','4584', '4315','2388','3060342.98', '4249','486','878015.42', '2933','2195','2182327.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001195.0','1022044.0','1', '1','1','1004.0', '1','1','1004.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089459.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001196.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089460.0','1047611.0','1', '1','1','2326.62', '1','1','1004.0', '1','1','1322.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001197.0','1022044.0','2', '2','2','5087.89', '2','1','3558.92', '2','2','1528.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089461.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001198.0','1022044.0','70', '47','21','62225.6', '45','16','50105.17', '18','9','12120.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089462.0','1047611.0','2', '1','1','4196.7', '1','1','1004.0', '1','1','3192.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001199.0','1022044.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089463.0','1047611.0','2279', '2115','1044','1998006.06', '2083','379','824666.31', '1270','890','1173339.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001200.0','1022044.0','2', '2','1','1395.0', '2','1','1226.0', '2','1','169.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089464.0','1047611.0','2', '2','2','1714.19', '2','0','0.0', '2','2','1714.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003523.0', '2001201.0','1022044.0','7', '5','1','989.76', '5','0','0.0', '3','1','989.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008018.0', '2089465.0','1047611.0','8', '8','3','2696.19', '7','1','982.0', '5','2','1714.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001202.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089466.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001203.0','1022044.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089467.0','1047611.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001204.0','1022044.0','1', '1','1','179.81', '1','0','0.0', '1','1','179.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089468.0','1047611.0','15', '9','2','1705.74', '8','0','0.0', '9','2','1705.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001205.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089469.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001206.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089470.0','1047611.0','1', '1','1','2258.5', '1','1','2031.7', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001207.0','1022044.0','48', '42','27','175803.56', '40','18','65787.08', '33','23','110016.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089471.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001208.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089472.0','1047611.0','28', '24','9','11485.09', '24','3','6611.66', '11','6','4873.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001209.0','1022044.0','181', '160','48','119445.83', '151','37','95052.46', '78','20','24393.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089473.0','1047611.0','7', '6','4','3561.61', '5','0','0.0', '4','4','3561.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001210.0','1022044.0','1', '1','1','3680.98', '1','1','2387.46', '1','1','1293.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089474.0','1047611.0','1', '1','1','3021.52', '1','1','3021.52', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001211.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089475.0','1047611.0','5', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001212.0','1022044.0','78', '68','45','56869.19', '64','13','23658.62', '54','39','33210.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089476.0','1047611.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001213.0','1022044.0','1', '1','1','896.81', '1','0','0.0', '1','1','896.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089477.0','1047611.0','37', '28','11','24228.5', '27','6','15198.16', '18','8','9030.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001214.0','1022044.0','23', '22','8','6305.34', '19','1','738.24', '14','7','5567.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089478.0','1047611.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001215.0','1022044.0','2032', '1878','573','702676.86', '1855','150','265126.66', '791','478','437550.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089479.0','1047611.0','972', '794','352','595606.62', '750','170','270652.31', '449','237','324954.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001216.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089480.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001217.0','1022044.0','620', '566','168','170581.62', '558','36','59736.08', '228','144','110845.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089481.0','1047611.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001218.0','1022044.0','1', '1','1','500.0', '0','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089482.0','1047611.0','79', '59','22','37940.29', '57','8','20253.37', '32','17','17686.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001219.0','1022044.0','14', '13','4','3476.43', '13','1','900.92', '5','3','2575.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089483.0','1047611.0','1', '1','1','6833.97', '1','1','5998.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001220.0','1022044.0','12', '9','4','3430.07', '9','0','0.0', '6','4','3430.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089484.0','1047611.0','3', '1','1','2173.0', '1','1','2173.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001221.0','1022044.0','1', '1','1','12367.02', '1','1','898.0', '1','1','11469.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089485.0','1047611.0','4', '4','2','1773.34', '3','0','0.0', '3','2','1773.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001222.0','1022044.0','5', '4','1','11016.59', '4','1','1784.0', '2','1','9232.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089486.0','1047611.0','10', '8','3','1493.28', '6','1','171.68', '5','2','1321.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001223.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089487.0','1047611.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001224.0','1022044.0','5', '4','2','4863.87', '4','2','1861.14', '1','1','3002.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089488.0','1047611.0','2', '2','1','841.04', '2','0','0.0', '1','1','841.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001225.0','1022044.0','22', '20','5','6963.39', '18','1','3576.0', '14','5','3387.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089489.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001226.0','1022044.0','71', '60','40','75754.18', '59','20','52945.67', '40','25','22808.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089490.0','1047611.0','1', '1','1','3511.48', '1','1','3427.0', '1','1','84.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001227.0','1022044.0','1', '1','1','1250.0', '1','1','1250.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089491.0','1047611.0','236', '201','75','92371.46', '193','32','48432.96', '94','52','43938.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003523.0', '2001228.0','1022044.0','3', '3','1','1036.0', '3','1','1036.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008018.0', '2089492.0','1047611.0','143', '121','67','103250.87', '119','33','60815.71', '63','43','42435.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001229.0','1022044.0','1050', '907','398','471591.74', '884','73','134460.48', '480','352','337131.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089493.0','1047611.0','1', '1','1','6730.06', '1','1','1250.0', '1','1','5480.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001230.0','1022044.0','103', '89','33','32394.67', '85','5','1130.41', '46','29','31264.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089494.0','1047611.0','33', '31','13','18169.72', '31','4','10128.51', '16','11','8041.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001231.0','1022044.0','120', '90','52','166772.98', '86','33','93510.32', '62','36','73262.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089495.0','1047611.0','3', '3','3','3989.45', '3','1','1036.0', '3','3','2953.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001232.0','1022044.0','18', '6','3','8244.32', '5','2','7014.0', '5','2','1230.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089496.0','1047611.0','2', '2','1','2526.25', '2','1','2291.0', '2','1','235.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001233.0','1022044.0','10', '7','5','4504.53', '5','1','1060.12', '6','4','3444.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089497.0','1047611.0','6', '2','1','844.42', '2','0','0.0', '1','1','844.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001234.0','1022044.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089498.0','1047611.0','11204', '10465','5900','10331008.76', '10324','2084','3909973.43', '7145','5126','6421035.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001235.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089499.0','1047611.0','600', '548','260','767457.92', '548','122','342963.01', '340','213','424494.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001236.0','1022044.0','2', '2','1','11216.0', '2','1','11216.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089500.0','1047611.0','56', '45','16','21989.2', '40','4','11510.64', '23','13','10478.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001237.0','1022044.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089501.0','1047611.0','17', '13','6','12573.51', '12','6','8024.76', '7','2','4548.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001238.0','1022044.0','21', '20','15','12160.52', '16','0','0.0', '19','15','12160.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089502.0','1047611.0','1', '1','1','4300.38', '1','1','4300.38', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001239.0','1022044.0','11', '9','2','6037.37', '8','1','5100.0', '5','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089503.0','1047611.0','1', '1','1','1004.0', '1','1','1004.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001240.0','1022044.0','9', '8','2','2383.95', '7','1','1320.0', '6','2','1063.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089504.0','1047611.0','85', '74','38','63085.39', '72','17','36257.24', '40','26','26828.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001241.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089505.0','1047611.0','1', '1','1','1873.47', '1','1','1873.47', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089506.0','1047611.0','1', '1','1','1234.12', '1','1','1234.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001243.0','1022044.0','13', '13','2','1651.05', '13','0','0.0', '7','2','1651.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089507.0','1047611.0','1316', '1176','655','713231.32', '1133','106','146837.63', '762','609','566393.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001244.0','1022044.0','1', '1','1','499.2', '1','0','0.0', '1','1','499.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089508.0','1047611.0','1', '1','1','747.65', '1','0','0.0', '1','1','747.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001245.0','1022044.0','6', '3','1','1036.0', '3','1','1036.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089509.0','1047611.0','1484', '1308','587','991792.46', '1276','323','597202.47', '644','374','394589.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001246.0','1022044.0','4', '4','2','1341.17', '4','1','386.9', '1','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089510.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001247.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089511.0','1047611.0','75', '69','35','59496.39', '68','26','44501.59', '37','18','14994.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001248.0','1022044.0','2', '2','2','4210.81', '2','2','3664.0', '1','1','546.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089512.0','1047611.0','55', '18','4','6390.26', '14','2','2428.25', '8','2','3962.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001249.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089513.0','1047611.0','25', '20','9','14542.21', '19','4','10122.38', '10','5','4419.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001250.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089514.0','1047611.0','1', '1','1','16109.03', '1','1','6116.0', '1','1','9993.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001251.0','1022044.0','1', '1','1','1113.47', '1','0','0.0', '1','1','1113.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089515.0','1047611.0','2', '1','1','927.23', '1','0','0.0', '1','1','927.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001252.0','1022044.0','6', '3','1','835.97', '3','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089516.0','1047611.0','51', '40','14','12646.28', '36','3','1896.88', '23','13','10749.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001253.0','1022044.0','1', '1','1','898.0', '1','1','898.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089517.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001254.0','1022044.0','306', '299','221','1315654.62', '293','144','457988.12', '255','190','857666.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089518.0','1047611.0','2', '2','2','3160.69', '2','1','2324.72', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001255.0','1022044.0','121', '114','34','109284.78', '105','24','46951.44', '70','23','62333.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089519.0','1047611.0','2', '2','1','12237.73', '2','1','1122.0', '2','1','11115.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001256.0','1022044.0','12', '7','2','1394.12', '6','0','0.0', '5','2','1394.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089520.0','1047611.0','208', '172','105','96796.72', '160','7','11474.93', '129','101','85321.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001257.0','1022044.0','256', '245','176','460311.3', '238','80','215336.3', '191','151','244975.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089521.0','1047611.0','1', '1','1','1733.97', '1','1','898.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001258.0','1022044.0','3', '3','1','837.66', '3','0','0.0', '2','1','837.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089522.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001259.0','1022044.0','6', '5','2','2236.74', '5','0','0.0', '3','2','2236.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089523.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001260.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089524.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001261.0','1022044.0','6988', '6495','4219','14466331.36', '6399','2490','5979538.77', '4818','3429','8486792.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089525.0','1047611.0','5', '4','4','11686.85', '4','4','11120.9', '2','1','565.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001262.0','1022044.0','1', '1','1','898.0', '1','1','898.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089526.0','1047611.0','2', '2','2','3410.34', '2','1','1275.0', '2','2','2135.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001263.0','1022044.0','14', '11','3','2686.38', '11','0','0.0', '5','3','2686.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089527.0','1047611.0','33', '26','18','30590.07', '26','6','17108.9', '19','15','13481.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001264.0','1022044.0','108', '93','19','21482.59', '90','5','10068.61', '28','15','11413.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089528.0','1047611.0','30', '29','11','13488.66', '28','4','5608.01', '15','9','7880.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001265.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089529.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001266.0','1022044.0','14', '12','4','3425.68', '12','0','0.0', '6','4','3425.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089530.0','1047611.0','33', '27','12','29062.93', '25','7','11226.5', '21','11','17836.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001267.0','1022044.0','24', '16','12','15036.6', '16','5','8611.56', '12','7','6425.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089531.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001268.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089532.0','1047611.0','104', '79','24','34660.13', '77','6','12389.65', '39','22','22270.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001269.0','1022044.0','1', '1','1','11204.0', '1','1','11204.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089533.0','1047611.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001270.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089534.0','1047611.0','47', '40','22','80822.0', '39','19','65209.59', '22','9','15612.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001271.0','1022044.0','2', '2','2','1908.54', '2','0','0.0', '2','2','1908.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089535.0','1047611.0','18', '12','4','2315.58', '12','3','2085.4', '2','1','230.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001272.0','1022044.0','1', '1','1','3834.43', '1','1','3834.43', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089536.0','1047611.0','938', '830','533','2181021.68', '814','299','844779.62', '599','454','1336242.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001273.0','1022044.0','2', '2','2','2483.12', '2','2','2483.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089537.0','1047611.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003523.0', '2001274.0','1022044.0','6', '6','5','4996.15', '4','1','1784.0', '5','4','3212.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008018.0', '2089538.0','1047611.0','204', '165','52','60648.43', '161','30','38393.72', '67','25','22254.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001275.0','1022044.0','1', '1','1','6772.86', '1','1','6116.0', '1','1','656.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089539.0','1047611.0','63', '54','29','81415.91', '53','23','47745.51', '24','14','33670.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001276.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089540.0','1047611.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001277.0','1022044.0','2', '2','1','1917.23', '2','1','1917.23', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089541.0','1047611.0','1', '1','1','11204.0', '1','1','11204.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001278.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089542.0','1047611.0','4', '3','2','8677.65', '3','1','3878.49', '2','2','4799.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001279.0','1022044.0','3', '3','3','11102.59', '3','3','5722.0', '2','2','5380.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089543.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001280.0','1022044.0','48', '42','23','21616.95', '34','5','5478.48', '30','21','16138.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089544.0','1047611.0','1', '1','1','1343.97', '1','1','508.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001281.0','1022044.0','1', '1','1','1231.77', '1','0','0.0', '1','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089545.0','1047611.0','15', '15','6','47130.85', '13','3','15118.0', '10','5','32012.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001282.0','1022044.0','1', '1','1','1841.66', '1','1','1004.0', '1','1','837.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089546.0','1047611.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001283.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089547.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001284.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089548.0','1047611.0','1', '1','1','100.32', '1','1','100.32', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001285.0','1022044.0','1', '1','1','1231.77', '1','0','0.0', '1','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089549.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001286.0','1022044.0','48', '33','18','15606.7', '31','3','2599.2', '19','15','13007.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089550.0','1047611.0','1', '1','1','2112.66', '1','1','1275.0', '1','1','837.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001287.0','1022044.0','1', '1','1','3240.39', '1','1','3013.59', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089551.0','1047611.0','97', '85','28','27692.78', '82','5','9966.32', '39','24','17726.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001288.0','1022044.0','7', '5','2','1925.44', '5','0','0.0', '3','2','1925.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089552.0','1047611.0','1195', '866','343','427055.38', '846','137','219956.89', '419','258','207098.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001289.0','1022044.0','4', '3','3','7419.42', '3','3','7419.42', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089553.0','1047611.0','245', '225','157','240733.34', '210','33','77964.78', '191','141','162768.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001290.0','1022044.0','40', '33','24','79876.75', '31','24','62204.51', '19','7','17672.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089554.0','1047611.0','2', '2','1','9427.71', '2','0','0.0', '2','1','9427.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001291.0','1022044.0','1', '1','1','1572.93', '1','0','0.0', '1','1','1572.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089555.0','1047611.0','22', '18','8','21532.32', '18','4','12324.67', '9','5','9207.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001292.0','1022044.0','1', '1','1','107.0', '1','0','0.0', '1','1','107.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089556.0','1047611.0','8', '8','6','4485.54', '6','0','0.0', '6','6','4485.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001293.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089557.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001294.0','1022044.0','36', '32','16','26870.69', '29','5','11259.95', '17','11','15610.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089558.0','1047611.0','1', '1','1','2276.31', '1','0','0.0', '1','1','2276.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001295.0','1022044.0','271', '239','72','97154.31', '238','18','29099.62', '94','62','68054.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089559.0','1047611.0','8', '6','2','7379.0', '6','2','7379.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001296.0','1022044.0','3', '2','1','2179.33', '2','1','2179.33', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089560.0','1047611.0','2', '2','1','920.47', '2','0','0.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003523.0', '2001297.0','1022044.0','77', '58','28','97223.83', '56','20','44948.4', '32','14','52275.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008018.0', '2089561.0','1047611.0','39', '24','13','14155.48', '23','4','6317.26', '12','10','7838.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001298.0','1022044.0','13', '13','13','13119.21', '13','1','2291.0', '13','13','10828.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089562.0','1047611.0','1', '1','1','11098.0', '1','1','11098.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001299.0','1022044.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089563.0','1047611.0','8', '4','3','24631.29', '4','3','9148.0', '2','2','15483.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003547.0', '2001300.0','1022044.0','318', '259','125','170935.15', '252','38','70230.9', '154','104','100704.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008041.0', '2089564.0','1047611.0','3381', '3026','1844','4947021.58', '2986','828','2313790.6', '2152','1557','2633230.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001301.0','1022044.0','15', '12','7','5616.82', '12','1','95.0', '8','6','5521.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089565.0','1047611.0','179', '164','123','486636.99', '162','75','186565.34', '134','104','300071.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003523.0', '2001302.0','1022044.0','13', '3','2','1469.62', '3','1','234.12', '3','2','1235.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008018.0', '2089566.0','1047611.0','6', '5','4','4159.75', '4','0','0.0', '5','4','4159.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001303.0','1022044.0','4', '4','3','4808.61', '4','2','3854.34', '1','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089567.0','1047611.0','5', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001304.0','1022044.0','1', '1','1','1231.77', '1','0','0.0', '1','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089568.0','1047611.0','9', '9','6','5733.44', '9','1','1004.0', '6','5','4729.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001305.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089569.0','1047611.0','2', '2','2','6469.88', '2','2','1796.0', '1','1','4673.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001306.0','1022044.0','1', '1','1','12572.93', '1','0','0.0', '1','1','12572.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089570.0','1047611.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001307.0','1022044.0','8', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089571.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001308.0','1022044.0','43', '35','15','32075.57', '34','10','16277.33', '19','10','15798.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089572.0','1047611.0','1', '1','1','1801.13', '1','1','738.36', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001309.0','1022044.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089573.0','1047611.0','1498', '1385','395','657458.86', '1357','145','338248.19', '559','312','319210.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001310.0','1022044.0','5187', '4822','1733','3400095.93', '4730','963','1988558.15', '2200','1100','1411537.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089574.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001311.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089575.0','1047611.0','1', '1','1','1105.02', '1','0','0.0', '1','1','1105.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001312.0','1022044.0','32', '29','13','20426.08', '25','4','10365.0', '19','11','10061.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089576.0','1047611.0','15', '14','7','10692.53', '12','3','6372.0', '10','5','4320.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003521.0', '2001313.0','1022044.0','21', '18','7','8661.03', '17','5','7460.26', '13','3','1200.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008013.0', '2089577.0','1047611.0','124', '106','58','86544.62', '97','27','46787.2', '71','42','39757.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001314.0','1022044.0','15', '13','11','9807.08', '11','0','0.0', '13','11','9807.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089578.0','1047611.0','1', '1','1','4125.99', '1','1','898.0', '1','1','3227.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001315.0','1022044.0','1', '1','1','6086.21', '1','1','5553.41', '1','1','532.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089579.0','1047611.0','1', '1','1','1766.48', '1','1','898.0', '1','1','868.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001316.0','1022044.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089580.0','1047611.0','3', '2','1','2423.52', '2','1','2423.52', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001317.0','1022044.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089581.0','1047611.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001318.0','1022044.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089582.0','1047611.0','15', '15','7','5937.31', '14','2','2570.2', '7','5','3367.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001319.0','1022044.0','1910', '1648','734','1534054.65', '1547','448','818572.66', '1075','486','715481.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089583.0','1047611.0','1005', '858','369','494663.39', '814','125','210629.48', '513','302','284033.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001320.0','1022044.0','605', '560','341','585154.84', '548','153','323563.98', '375','262','261590.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089584.0','1047611.0','1889', '1636','550','774779.45', '1541','233','366458.66', '915','389','408320.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001321.0','1022044.0','2', '2','1','886.67', '2','0','0.0', '2','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089585.0','1047611.0','159', '142','59','67326.23', '135','11','19323.49', '77','54','48002.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001322.0','1022044.0','1', '1','1','928.92', '1','0','0.0', '1','1','928.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089586.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001323.0','1022044.0','8', '8','7','10272.38', '8','5','8462.08', '5','3','1810.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089587.0','1047611.0','24', '21','12','11440.65', '21','1','1761.64', '16','11','9679.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001324.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089588.0','1047611.0','30', '26','14','27864.77', '24','12','15306.85', '19','8','12557.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001325.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089589.0','1047611.0','2', '2','2','1975.26', '2','1','1105.49', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001326.0','1022044.0','741', '693','485','559572.85', '654','68','145147.88', '551','458','414424.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089590.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001327.0','1022044.0','71', '61','41','118848.99', '58','19','47442.22', '44','30','71406.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089591.0','1047611.0','1', '1','1','1374.0', '1','1','1374.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001328.0','1022044.0','33', '16','8','31529.91', '15','5','17724.3', '7','5','13805.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089592.0','1047611.0','116', '109','68','141602.18', '106','30','80824.58', '76','52','60777.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001329.0','1022044.0','819', '787','322','395089.47', '780','77','129726.36', '391','280','265363.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089593.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001330.0','1022044.0','65', '64','35','28423.21', '64','6','5958.94', '47','32','22464.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089594.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001331.0','1022044.0','3032', '2842','1160','1674533.85', '2798','388','721448.99', '1455','943','953084.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089595.0','1047611.0','1275', '1102','448','845265.44', '1053','265','429719.14', '662','280','415546.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001332.0','1022044.0','1', '1','1','1374.0', '1','1','1374.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089596.0','1047611.0','300', '263','82','107482.48', '256','20','25557.82', '122','69','81924.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001333.0','1022044.0','4', '1','1','741.98', '0','0','0.0', '1','1','741.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089597.0','1047611.0','4721', '4179','2221','5295334.27', '4033','1455','2884750.0', '2522','1441','2410584.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001334.0','1022044.0','17', '14','6','5231.14', '12','2','1598.1', '7','4','3633.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089598.0','1047611.0','2169', '2012','1131','2166799.74', '1979','697','1334907.59', '1151','742','831892.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001335.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089599.0','1047611.0','1', '1','1','1250.0', '1','1','1250.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001336.0','1022044.0','1', '1','1','687.94', '1','0','0.0', '1','1','687.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089600.0','1047611.0','13', '10','7','6309.64', '8','1','1114.0', '8','6','5195.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001337.0','1022044.0','13', '10','2','942.24', '9','1','80.92', '4','1','861.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089601.0','1047611.0','1', '1','1','5061.19', '1','1','1704.0', '1','1','3357.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001338.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089602.0','1047611.0','62', '56','27','46161.4', '56','23','34748.55', '34','10','11412.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001339.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089603.0','1047611.0','1', '1','1','395.8', '1','0','0.0', '1','1','395.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001340.0','1022044.0','3159', '2869','1030','1469023.66', '2780','376','637517.0', '1524','821','831506.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089604.0','1047611.0','1', '1','1','712.19', '1','0','0.0', '1','1','712.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001341.0','1022044.0','645', '569','167','233064.79', '544','56','92938.44', '257','129','140126.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089605.0','1047611.0','8', '6','3','2929.06', '5','0','0.0', '5','3','2929.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001342.0','1022044.0','2', '2','1','2475.97', '2','1','1640.0', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089606.0','1047611.0','39', '35','20','43923.24', '33','6','25631.34', '25','18','18291.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001343.0','1022044.0','4', '4','3','1130.37', '4','0','0.0', '3','3','1130.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089607.0','1047611.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001344.0','1022044.0','25', '23','15','29793.63', '22','10','12540.83', '18','9','17252.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000286.0','1022044.0','2', '2','1','837.66', '2','0','0.0', '1','1','837.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088550.0','1047611.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001345.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089609.0','1047611.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001346.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089610.0','1047611.0','10', '6','4','14334.62', '6','4','13334.62', '4','2','1000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001347.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089611.0','1047611.0','1', '1','1','21930.01', '1','1','7448.0', '1','1','14482.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001348.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089612.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001349.0','1022044.0','4', '4','2','3480.4', '2','1','683.38', '4','1','2797.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089613.0','1047611.0','1391', '1139','535','660688.29', '1094','173','255116.04', '642','428','405572.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001350.0','1022044.0','1', '1','1','2381.34', '1','1','2381.34', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089614.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001351.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089615.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001352.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089616.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001353.0','1022044.0','1', '1','1','1313.73', '1','0','0.0', '1','1','1313.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089617.0','1047611.0','81', '73','38','95197.3', '69','28','44942.53', '57','26','50254.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001354.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089618.0','1047611.0','8', '3','1','2692.12', '3','1','2692.12', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001355.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089619.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001356.0','1022044.0','1', '1','1','1640.0', '1','1','1640.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089620.0','1047611.0','1', '1','1','1182.83', '1','0','0.0', '1','1','1182.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001357.0','1022044.0','880', '717','305','382098.27', '690','100','159835.8', '390','243','222262.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089621.0','1047611.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001358.0','1022044.0','251', '233','151','142218.96', '226','20','27514.64', '173','139','114704.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089622.0','1047611.0','9', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001359.0','1022044.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089623.0','1047611.0','8', '6','2','2024.59', '6','1','1137.92', '5','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001360.0','1022044.0','3', '3','2','1226.05', '2','1','527.55', '2','2','698.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089624.0','1047611.0','1335', '1163','700','873715.61', '1099','224','332192.01', '813','570','541523.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001361.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089625.0','1047611.0','1', '1','1','2649.0', '1','1','2649.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001362.0','1022044.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089626.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001363.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089627.0','1047611.0','835', '783','435','448284.86', '753','54','81135.05', '527','405','367149.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001364.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089628.0','1047611.0','50', '40','19','48161.28', '36','6','13708.25', '30','17','34453.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001365.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089629.0','1047611.0','80', '67','52','86977.55', '62','20','52780.13', '49','41','34197.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001366.0','1022044.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089630.0','1047611.0','1248', '1163','481','520969.09', '1146','117','153721.71', '606','415','367247.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001367.0','1022044.0','5', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089631.0','1047611.0','724', '581','286','435078.56', '562','121','199539.68', '330','212','235538.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001368.0','1022044.0','1', '1','1','6052.21', '1','1','1640.0', '1','1','4412.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089632.0','1047611.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000439.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088703.0','1047611.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000680.0','1022044.0','2853', '2643','1083','1541653.74', '2588','359','736544.03', '1362','865','805109.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088944.0','1047611.0','4', '4','3','3523.57', '4','0','0.0', '3','3','3523.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001369.0','1022044.0','4', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089633.0','1047611.0','6', '5','3','4305.58', '5','1','1965.78', '3','3','2339.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001370.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089634.0','1047611.0','1', '1','1','3620.19', '1','1','2615.22', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001371.0','1022044.0','1', '1','1','4551.07', '1','1','1640.0', '1','1','2911.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089635.0','1047611.0','1142', '1065','420','499646.92', '1054','130','182270.63', '525','345','317376.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001372.0','1022044.0','272', '239','115','307015.64', '238','77','188195.17', '124','63','118820.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089636.0','1047611.0','10', '8','5','34639.99', '7','4','22410.53', '7','3','12229.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001373.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089637.0','1047611.0','27', '8','1','3031.26', '6','1','2308.3', '6','1','722.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088840.0','1047611.0','3', '3','2','1705.74', '3','0','0.0', '3','2','1705.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001374.0','1022044.0','29', '23','13','50789.07', '22','5','18141.15', '13','10','32647.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089638.0','1047611.0','268', '186','74','116363.37', '159','34','62221.6', '120','52','54141.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001375.0','1022044.0','12', '10','5','17443.9', '9','2','5168.57', '8','5','12275.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089639.0','1047611.0','749', '714','195','218169.76', '702','44','94234.85', '326','168','123934.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001376.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089640.0','1047611.0','4', '3','1','2152.0', '3','1','2152.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001377.0','1022044.0','3', '1','1','920.47', '1','0','0.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089641.0','1047611.0','8', '6','1','563.94', '6','1','563.94', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001378.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089642.0','1047611.0','3', '2','2','10114.85', '1','1','2310.57', '2','1','7804.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000621.0','1022044.0','4747', '4493','1452','2139628.39', '4432','528','1138143.34', '1986','1116','1001485.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088885.0','1047611.0','12', '11','9','14839.95', '11','2','6697.34', '9','9','8142.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001379.0','1022044.0','1', '1','1','878.22', '1','0','0.0', '1','1','878.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089643.0','1047611.0','4', '3','1','971.17', '3','0','0.0', '2','1','971.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001380.0','1022044.0','1', '1','1','2152.0', '1','1','2152.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089644.0','1047611.0','1', '1','1','6969.17', '1','1','5998.0', '1','1','971.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001381.0','1022044.0','32', '28','14','20082.52', '28','3','11271.0', '20','12','8811.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089645.0','1047611.0','5', '4','1','1496.03', '4','1','1374.0', '2','1','122.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001382.0','1022044.0','24', '21','8','27191.14', '19','7','17112.0', '14','5','10079.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089646.0','1047611.0','19', '16','11','15152.9', '16','6','11812.48', '9','5','3340.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001383.0','1022044.0','8', '8','7','8551.42', '7','2','3830.43', '6','5','4720.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089647.0','1047611.0','49', '34','9','17885.06', '32','4','13232.95', '19','6','4652.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001384.0','1022044.0','1', '1','1','602.44', '1','1','602.44', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089648.0','1047611.0','287', '184','96','187480.24', '177','77','112884.6', '96','47','74595.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001385.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089649.0','1047611.0','461', '431','210','526730.3', '428','150','373884.94', '222','122','152845.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001386.0','1022044.0','3', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089650.0','1047611.0','3', '3','2','1624.33', '3','2','1624.33', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001387.0','1022044.0','420', '378','144','173421.89', '363','38','59566.73', '184','116','113855.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089651.0','1047611.0','4', '3','2','3942.47', '3','2','3942.47', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001388.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089652.0','1047611.0','3', '2','1','861.32', '2','0','0.0', '2','1','861.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001389.0','1022044.0','13', '9','4','7883.18', '8','1','5100.0', '6','4','2783.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089653.0','1047611.0','11', '8','3','6068.24', '8','2','2832.0', '5','2','3236.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001390.0','1022044.0','8', '5','4','3307.55', '5','2','681.34', '5','3','2626.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089654.0','1047611.0','32', '8','2','14399.72', '7','2','11133.36', '4','1','3266.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001391.0','1022044.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089655.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001392.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089656.0','1047611.0','3', '2','1','3368.46', '2','0','0.0', '1','1','3368.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001393.0','1022044.0','572', '502','243','278583.03', '487','46','76010.77', '293','214','202572.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089657.0','1047611.0','2069', '1805','605','1135496.59', '1710','332','586545.52', '1040','425','548951.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001394.0','1022044.0','801', '690','218','293344.91', '674','83','137659.66', '297','163','155685.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089658.0','1047611.0','231', '214','62','71236.39', '211','16','29596.96', '89','52','41639.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001395.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089659.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001396.0','1022044.0','7', '7','3','6016.38', '6','1','1245.56', '4','2','4770.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089660.0','1047611.0','7', '5','1','1181.07', '5','0','0.0', '4','1','1181.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001397.0','1022044.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089661.0','1047611.0','123', '102','35','52124.84', '101','21','32146.88', '41','20','19977.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001398.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089662.0','1047611.0','1', '1','1','2025.8', '1','1','1036.0', '1','1','989.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001399.0','1022044.0','197', '169','68','108618.3', '164','39','70571.61', '85','42','38046.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089663.0','1047611.0','7', '5','5','5328.86', '5','3','3133.6', '4','3','2195.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001400.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089664.0','1047611.0','110', '102','59','104985.26', '100','35','68588.15', '75','41','36397.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001401.0','1022044.0','2', '2','2','2375.1', '2','2','1370.13', '2','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089665.0','1047611.0','7', '7','3','7894.48', '7','2','5330.39', '3','1','2564.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001402.0','1022044.0','1', '1','1','1640.0', '1','1','1640.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089666.0','1047611.0','6', '5','3','3109.09', '5','1','1016.0', '5','2','2093.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001403.0','1022044.0','1', '1','1','3996.65', '1','1','3996.65', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089667.0','1047611.0','195', '148','64','93395.93', '136','24','43535.15', '89','52','49860.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001404.0','1022044.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089668.0','1047611.0','7', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001405.0','1022044.0','1453', '1322','641','861141.08', '1277','248','369450.63', '796','507','491690.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089669.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001406.0','1022044.0','1', '1','1','1250.0', '1','1','1250.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089670.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001407.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089671.0','1047611.0','1', '1','1','1372.03', '1','1','1250.0', '1','1','122.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001408.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089672.0','1047611.0','62', '54','22','39361.68', '52','11','25046.88', '29','14','14314.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001409.0','1022044.0','4', '3','1','903.57', '3','0','0.0', '1','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089673.0','1047611.0','1146', '967','426','879777.19', '951','207','508126.39', '530','311','371650.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001410.0','1022044.0','19', '10','6','4092.5', '10','2','2650.48', '7','4','1442.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089674.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001411.0','1022044.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089675.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001412.0','1022044.0','49', '47','19','24445.49', '47','5','8287.0', '19','16','16158.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089676.0','1047611.0','1', '1','1','687.98', '1','0','0.0', '1','1','687.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001413.0','1022044.0','1', '1','1','912.02', '1','0','0.0', '1','1','912.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089677.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001414.0','1022044.0','1', '1','1','1524.66', '1','1','687.0', '1','1','837.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089678.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001415.0','1022044.0','5', '5','4','6335.15', '5','1','5100.0', '3','3','1235.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089679.0','1047611.0','5', '5','5','3940.79', '5','0','0.0', '5','5','3940.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001416.0','1022044.0','7', '5','3','7690.35', '5','3','4900.0', '2','1','2790.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089680.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001417.0','1022044.0','1148', '975','444','656541.39', '939','139','243068.22', '564','369','413473.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089681.0','1047611.0','1976', '1809','733','1110520.48', '1755','286','500908.24', '1018','553','609612.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001418.0','1022044.0','404', '355','96','125421.61', '348','51','84424.4', '132','53','40997.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089682.0','1047611.0','1', '1','1','1973.09', '1','1','1374.0', '1','1','599.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001419.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089683.0','1047611.0','3203', '3012','481','728561.43', '2987','195','431345.42', '975','342','297216.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001420.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089684.0','1047611.0','9', '7','3','2578.89', '7','0','0.0', '5','3','2578.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001421.0','1022044.0','11', '9','3','8411.69', '9','1','6420.0', '5','2','1991.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089685.0','1047611.0','1', '1','1','396.82', '1','1','396.82', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001422.0','1022044.0','11', '8','5','4513.12', '7','0','0.0', '8','5','4513.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089686.0','1047611.0','138', '129','83','220998.14', '126','45','69659.73', '101','58','151338.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001423.0','1022044.0','1590', '1404','795','2904620.95', '1382','505','1909689.95', '902','590','994931.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089687.0','1047611.0','1', '1','1','9887.06', '1','0','0.0', '1','1','9887.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089688.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001425.0','1022044.0','3', '3','1','1036.0', '3','1','1036.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089689.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001426.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089690.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001427.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089691.0','1047611.0','130', '98','53','65813.18', '94','13','29047.22', '61','46','36765.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001428.0','1022044.0','31', '28','15','38811.51', '27','12','29129.61', '22','5','9681.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089692.0','1047611.0','1', '1','1','2314.35', '1','1','2314.35', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001429.0','1022044.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089693.0','1047611.0','1', '1','1','7029.58', '1','1','1748.0', '1','1','5281.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001430.0','1022044.0','100', '31','9','66844.06', '27','7','31947.14', '17','8','34896.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089694.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001431.0','1022044.0','745', '631','348','631300.45', '603','158','308256.05', '426','271','323044.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089695.0','1047611.0','151', '144','68','164911.08', '139','52','83076.7', '117','52','81834.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001432.0','1022044.0','1', '1','1','912.02', '1','0','0.0', '1','1','912.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089696.0','1047611.0','2', '2','2','2556.6', '2','2','2505.9', '2','1','50.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001433.0','1022044.0','1320', '1152','414','843773.34', '1097','302','506346.42', '652','215','337426.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089697.0','1047611.0','259', '240','82','126722.5', '237','26','58840.86', '115','68','67881.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001434.0','1022044.0','1', '1','1','4865.06', '1','1','3255.76', '1','1','1609.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089698.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001435.0','1022044.0','26', '25','7','8886.0', '25','4','4394.37', '10','3','4491.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089699.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001436.0','1022044.0','1', '1','1','7422.16', '1','1','898.0', '1','1','6524.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089700.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001437.0','1022044.0','4', '4','1','2088.55', '4','1','1861.75', '2','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089701.0','1047611.0','38', '34','24','80980.42', '31','13','45161.77', '26','19','35818.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001438.0','1022044.0','60', '49','28','59160.95', '46','14','36168.21', '34','20','22992.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089702.0','1047611.0','2850', '2561','931','1205571.49', '2513','279','482135.6', '1183','755','723435.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001439.0','1022044.0','22', '18','10','14445.91', '18','4','7083.18', '13','8','7362.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089703.0','1047611.0','6', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001440.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089704.0','1047611.0','2099', '1610','867','2280391.01', '1570','617','1206569.57', '819','485','1073821.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001441.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089705.0','1047611.0','1', '1','1','965.95', '1','1','129.98', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001442.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089706.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001443.0','1022044.0','20', '13','6','13687.2', '12','4','8187.66', '11','5','5499.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089707.0','1047611.0','1', '1','1','3691.3', '1','1','1275.0', '1','1','2416.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001444.0','1022044.0','71', '52','31','76549.97', '50','14','30318.14', '36','27','46231.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089708.0','1047611.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001445.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089709.0','1047611.0','1', '1','1','351.8', '1','1','351.8', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001446.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089710.0','1047611.0','201', '166','19','38424.49', '162','7','24810.19', '35','14','13614.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001447.0','1022044.0','47', '38','20','21495.52', '36','9','9748.99', '31','13','11746.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089711.0','1047611.0','1', '1','1','4220.51', '1','1','1510.82', '1','1','2709.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001448.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089712.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001449.0','1022044.0','1912', '1704','790','1019764.3', '1647','201','315707.19', '1012','673','704057.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089713.0','1047611.0','26', '6','2','1402.97', '4','0','0.0', '6','2','1402.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001450.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089714.0','1047611.0','10', '9','3','2676.91', '8','0','0.0', '6','3','2676.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001451.0','1022044.0','1', '1','1','11644.74', '1','1','1640.0', '1','1','10004.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089715.0','1047611.0','1', '1','1','12932.97', '1','1','11574.0', '1','1','1358.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001452.0','1022044.0','1', '1','1','317.34', '1','0','0.0', '1','1','317.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089716.0','1047611.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001453.0','1022044.0','1025', '956','653','781456.22', '884','125','196145.52', '778','594','585310.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089717.0','1047611.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001454.0','1022044.0','17', '17','12','24528.65', '17','8','17529.89', '13','9','6998.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089718.0','1047611.0','1059', '996','672','1652360.44', '968','340','756051.77', '763','536','896308.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001455.0','1022044.0','10', '7','6','11003.58', '6','3','7051.57', '6','5','3952.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089719.0','1047611.0','2131', '1982','1097','1595024.04', '1914','408','691294.09', '1309','889','903729.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001456.0','1022044.0','1', '1','1','595.51', '1','0','0.0', '1','1','595.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089720.0','1047611.0','15', '12','5','7756.82', '9','1','3576.0', '9','5','4180.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001457.0','1022044.0','24', '19','9','14895.41', '18','3','10301.79', '11','8','4593.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089721.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001458.0','1022044.0','1', '1','1','1215.22', '1','0','0.0', '1','1','1215.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089722.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001459.0','1022044.0','107', '102','55','115521.02', '97','29','54714.59', '80','45','60806.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089723.0','1047611.0','1', '1','1','2311.98', '1','1','1437.48', '1','1','874.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001460.0','1022044.0','1', '1','1','852.87', '1','0','0.0', '1','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089724.0','1047611.0','1', '1','1','2419.34', '1','1','2419.34', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001461.0','1022044.0','13', '12','9','18111.96', '11','3','10753.95', '10','8','7358.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089725.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001462.0','1022044.0','2727', '2565','621','1120750.47', '2539','281','653043.91', '1022','429','467706.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089726.0','1047611.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001463.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089727.0','1047611.0','30', '29','15','14455.08', '29','3','1536.0', '18','15','12919.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001464.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089728.0','1047611.0','23', '21','11','11980.16', '19','3','4063.26', '13','9','7916.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001465.0','1022044.0','6', '6','4','4928.25', '6','1','1724.65', '5','3','3203.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089729.0','1047611.0','1005', '899','277','414723.43', '868','133','238573.55', '445','194','176149.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001466.0','1022044.0','8', '7','4','2749.12', '6','1','38.41', '4','3','2710.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089730.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001467.0','1022044.0','174', '148','45','46138.24', '143','6','10575.15', '68','43','35563.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089731.0','1047611.0','2380', '2083','940','1912474.63', '2014','405','729557.47', '1095','729','1182917.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001468.0','1022044.0','1402', '1314','914','3129467.72', '1299','475','1521753.54', '1031','755','1607714.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089732.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001469.0','1022044.0','307', '285','180','276026.16', '270','44','81726.84', '204','160','194299.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089733.0','1047611.0','24', '20','13','15431.3', '19','1','4167.73', '16','12','11263.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001470.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089734.0','1047611.0','2', '2','1','1552.82', '2','1','1280.07', '2','1','272.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001471.0','1022044.0','3534', '3326','2183','5997961.58', '3254','1096','2492145.46', '2573','1778','3505816.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089735.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001472.0','1022044.0','22', '18','9','21674.26', '18','7','15886.73', '11','6','5787.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089736.0','1047611.0','3', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001473.0','1022044.0','2', '2','2','7745.85', '2','2','7386.0', '2','1','359.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089737.0','1047611.0','2912', '2722','912','979016.86', '2687','220','322494.47', '1199','768','656522.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001474.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089738.0','1047611.0','1', '1','1','6971.97', '1','1','6136.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001475.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089739.0','1047611.0','1', '1','1','5335.25', '1','1','5100.0', '1','1','235.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001476.0','1022044.0','318', '303','220','368658.75', '291','104','213572.55', '228','175','155086.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089740.0','1047611.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001477.0','1022044.0','284', '241','85','111159.94', '233','22','44057.95', '119','73','67101.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089741.0','1047611.0','2', '2','2','2819.94', '1','1','2291.0', '1','1','528.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001478.0','1022044.0','498', '461','317','591880.69', '439','155','335526.34', '336','246','256354.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089742.0','1047611.0','24', '22','19','19333.39', '20','3','2759.53', '21','18','16573.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001479.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089743.0','1047611.0','3', '3','0','0.0', '1','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001480.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089744.0','1047611.0','363', '313','157','227023.22', '299','47','96371.29', '205','133','130651.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001481.0','1022044.0','1', '1','1','1125.0', '1','1','625.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089745.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001482.0','1022044.0','4', '4','2','7780.81', '4','1','6136.0', '3','2','1644.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089746.0','1047611.0','47', '38','19','34804.3', '34','8','24264.5', '26','14','10539.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001483.0','1022044.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089747.0','1047611.0','1', '1','1','1088.12', '1','0','0.0', '1','1','1088.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001484.0','1022044.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089748.0','1047611.0','1', '1','1','861.32', '1','0','0.0', '1','1','861.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001485.0','1022044.0','1', '1','1','122.03', '1','0','0.0', '1','1','122.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089749.0','1047611.0','1', '1','1','500.0', '1','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001486.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089750.0','1047611.0','2', '1','1','12317.47', '1','1','1250.0', '1','1','11067.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001487.0','1022044.0','7', '7','2','1893.33', '7','0','0.0', '4','2','1893.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089751.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001488.0','1022044.0','1', '1','1','13429.5', '0','0','0.0', '1','1','13429.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089752.0','1047611.0','69', '63','29','59142.09', '60','23','33842.73', '49','19','25299.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001489.0','1022044.0','1688', '1553','617','1045888.67', '1517','297','593949.79', '716','429','451938.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089753.0','1047611.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001490.0','1022044.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089754.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001491.0','1022044.0','2', '1','1','2227.8', '1','1','2227.8', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089755.0','1047611.0','2', '1','1','2558.22', '1','1','2558.22', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001492.0','1022044.0','1173', '967','356','410318.15', '920','122','174169.27', '487','271','236148.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089756.0','1047611.0','19', '19','9','35161.09', '19','6','27296.01', '5','4','7865.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001493.0','1022044.0','17', '16','13','32612.91', '15','8','18216.75', '10','10','14396.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089757.0','1047611.0','17', '15','10','9835.59', '15','2','4398.71', '10','8','5436.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001494.0','1022044.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089758.0','1047611.0','7', '5','2','1736.16', '5','0','0.0', '3','2','1736.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001495.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089759.0','1047611.0','329', '281','125','218903.55', '259','67','128145.27', '174','87','90758.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001496.0','1022044.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089760.0','1047611.0','350', '328','116','165848.22', '326','40','72263.53', '171','95','93584.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001497.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089761.0','1047611.0','16', '12','9','10498.72', '11','4','5165.18', '9','6','5333.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001498.0','1022044.0','9', '7','3','9841.29', '7','2','4078.82', '4','1','5762.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089762.0','1047611.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001499.0','1022044.0','2', '2','2','3492.65', '2','1','2535.0', '1','1','957.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089763.0','1047611.0','614', '560','317','530842.19', '548','145','252706.32', '357','249','278135.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001500.0','1022044.0','1', '1','1','1231.77', '0','0','0.0', '1','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089764.0','1047611.0','4', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001501.0','1022044.0','6', '5','3','4994.65', '4','1','3136.81', '5','2','1857.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089765.0','1047611.0','13', '12','9','12177.53', '12','4','4530.28', '11','9','7647.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001502.0','1022044.0','1', '1','1','9867.46', '1','1','918.0', '1','1','8949.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089766.0','1047611.0','19', '15','7','8295.21', '14','4','4310.13', '12','5','3985.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001503.0','1022044.0','75', '58','17','27090.92', '54','9','17578.86', '28','12','9512.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089767.0','1047611.0','49', '46','35','53383.9', '45','14','28575.4', '33','24','24808.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001504.0','1022044.0','1684', '1534','600','977098.69', '1493','265','549086.15', '741','441','428012.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089768.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001505.0','1022044.0','918', '832','502','746683.26', '784','181','280148.13', '595','414','466535.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089769.0','1047611.0','1', '1','1','1299.69', '1','0','0.0', '1','1','1299.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001506.0','1022044.0','164', '129','45','80827.2', '123','17','41258.79', '63','34','39568.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089770.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001507.0','1022044.0','19', '16','9','19727.43', '16','4','11382.02', '12','6','8345.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089771.0','1047611.0','2', '2','1','215.28', '2','1','215.28', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001508.0','1022044.0','48', '47','16','24272.95', '47','7','11043.95', '20','12','13229.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089772.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001509.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089773.0','1047611.0','5021', '4762','1479','2777288.22', '4722','673','1382262.19', '2362','1111','1395026.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001510.0','1022044.0','1', '1','1','869.77', '1','0','0.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089774.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001511.0','1022044.0','36', '31','20','50543.74', '28','13','42349.77', '18','11','8193.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089775.0','1047611.0','57', '48','16','36124.38', '44','11','29770.48', '27','9','6353.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001512.0','1022044.0','28', '18','11','27006.62', '17','9','15780.75', '9','7','11225.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089776.0','1047611.0','12', '10','7','11279.14', '9','1','5878.35', '8','7','5400.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001513.0','1022044.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089777.0','1047611.0','46', '43','23','74410.6', '43','15','61149.73', '25','11','13260.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001514.0','1022044.0','5', '3','3','6616.27', '3','2','5761.71', '2','1','854.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089778.0','1047611.0','22', '14','11','36979.55', '13','6','18430.87', '10','10','18548.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001515.0','1022044.0','9', '7','3','2639.66', '6','1','1374.0', '5','2','1265.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089779.0','1047611.0','1274', '1212','632','1011492.34', '1189','180','486831.03', '740','537','524661.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001516.0','1022044.0','22', '21','15','49818.22', '21','12','44560.38', '14','8','5257.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089780.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089781.0','1047611.0','84', '74','43','106297.03', '72','27','88576.64', '41','26','17720.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001518.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089782.0','1047611.0','44', '35','14','34580.75', '34','9','24692.12', '18','8','9888.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001519.0','1022044.0','8', '7','3','3546.89', '6','3','3546.89', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089783.0','1047611.0','2', '2','1','226.8', '2','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001520.0','1022044.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089784.0','1047611.0','304', '293','110','242390.6', '292','52','125368.22', '158','82','117022.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001521.0','1022044.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089785.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001522.0','1022044.0','1', '1','1','1284.0', '1','1','1284.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089786.0','1047611.0','38', '37','22','51790.84', '34','15','23625.95', '26','16','28164.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001523.0','1022044.0','1', '1','1','874.78', '1','1','874.78', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089787.0','1047611.0','1', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001524.0','1022044.0','3', '3','2','937.37', '3','0','0.0', '3','2','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089788.0','1047611.0','1', '1','1','1385.67', '1','1','255.3', '1','1','1130.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001525.0','1022044.0','35', '30','19','39381.62', '25','11','18881.14', '21','12','20500.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089789.0','1047611.0','1', '1','1','920.47', '1','0','0.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001526.0','1022044.0','18', '14','10','24851.62', '11','3','9652.2', '11','10','15199.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089790.0','1047611.0','1', '1','1','10888.62', '1','1','7614.0', '1','1','3274.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001527.0','1022044.0','1118', '1042','625','933107.79', '1016','250','438808.27', '688','488','494299.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089791.0','1047611.0','1', '1','1','1062.75', '1','1','1062.75', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001528.0','1022044.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089792.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001529.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089793.0','1047611.0','1', '1','1','2474.0', '1','0','0.0', '1','1','2474.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001530.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089794.0','1047611.0','1', '1','1','2354.07', '1','1','1036.0', '1','1','1318.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001531.0','1022044.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089795.0','1047611.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001532.0','1022044.0','2', '2','2','1403.42', '2','0','0.0', '2','2','1403.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089796.0','1047611.0','1', '1','1','230.18', '1','0','0.0', '1','1','230.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001533.0','1022044.0','1', '1','1','618.29', '1','0','0.0', '1','1','618.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089797.0','1047611.0','1', '1','1','318.14', '1','1','318.14', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001534.0','1022044.0','23', '19','9','36629.66', '16','7','18192.55', '13','5','18437.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089798.0','1047611.0','14', '11','9','15203.82', '11','1','7174.0', '9','9','8029.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001535.0','1022044.0','5079', '4688','2139','3401872.76', '4592','774','1615257.32', '2758','1745','1786615.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089799.0','1047611.0','77', '71','45','145030.01', '71','22','67318.08', '53','35','77711.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001536.0','1022044.0','3691', '3390','1597','2914129.06', '3330','758','1690061.93', '1877','1158','1224067.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089800.0','1047611.0','43', '38','28','75342.22', '37','22','35847.65', '27','18','39494.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001537.0','1022044.0','50', '45','25','95819.69', '42','17','45256.34', '31','18','50563.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089801.0','1047611.0','4', '3','1','2196.7', '3','1','1374.0', '1','1','822.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001538.0','1022044.0','2', '2','1','6739.56', '2','1','6360.0', '2','1','379.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089802.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001539.0','1022044.0','30', '28','9','22579.98', '24','7','18518.65', '15','5','4061.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089803.0','1047611.0','1963', '1802','1007','1914435.61', '1749','503','1029927.73', '1170','744','884507.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001540.0','1022044.0','2982', '2850','910','1787755.41', '2813','411','848869.2', '1389','696','938886.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089804.0','1047611.0','1', '1','1','816.69', '1','0','0.0', '1','1','816.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001541.0','1022044.0','1733', '1609','1079','2372749.76', '1570','495','1135947.02', '1177','892','1236802.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089805.0','1047611.0','61', '54','37','65591.1', '54','20','41677.1', '38','30','23914.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001542.0','1022044.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089806.0','1047611.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001543.0','1022044.0','3', '3','1','3828.61', '3','1','2624.0', '2','1','1204.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089807.0','1047611.0','2', '1','1','4745.14', '1','1','4745.14', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001544.0','1022044.0','1', '1','1','841.04', '1','0','0.0', '1','1','841.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089808.0','1047611.0','1', '1','1','937.37', '1','0','0.0', '1','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001545.0','1022044.0','11', '6','3','10296.3', '5','3','3784.73', '5','2','6511.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089809.0','1047611.0','162', '147','78','125265.93', '142','38','63560.6', '86','57','61705.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001546.0','1022044.0','3', '3','1','1096.57', '3','0','0.0', '1','1','1096.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089810.0','1047611.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001547.0','1022044.0','17', '16','12','19780.27', '16','7','6394.21', '13','9','13386.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089811.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001548.0','1022044.0','6', '6','4','14332.46', '3','2','4080.88', '5','3','10251.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089812.0','1047611.0','15', '14','8','26283.25', '14','6','12798.86', '7','4','13484.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001549.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089813.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001550.0','1022044.0','1059', '1003','576','857035.64', '978','194','458012.44', '652','478','399023.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089814.0','1047611.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001551.0','1022044.0','1', '1','1','1036.0', '1','1','1036.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089815.0','1047611.0','1', '1','1','869.77', '1','0','0.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001552.0','1022044.0','128', '110','57','106219.03', '108','26','70657.63', '63','40','35561.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089816.0','1047611.0','3', '3','3','3515.0', '3','2','1609.46', '2','2','1905.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001553.0','1022044.0','280', '266','138','387276.92', '253','91','162104.13', '220','113','225172.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089817.0','1047611.0','1', '1','1','1826.52', '1','1','1826.52', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001554.0','1022044.0','427', '408','260','263953.39', '390','22','30193.64', '323','255','233759.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089818.0','1047611.0','1', '1','1','1877.04', '1','1','1877.04', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001555.0','1022044.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089819.0','1047611.0','361', '335','179','177595.43', '325','23','22460.5', '233','170','155134.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001556.0','1022044.0','57', '40','15','19790.94', '36','6','11741.23', '22','9','8049.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089820.0','1047611.0','561', '471','193','233655.48', '446','41','66639.22', '263','169','167016.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001557.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089821.0','1047611.0','1', '1','1','6500.0', '0','0','0.0', '1','1','6500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001558.0','1022044.0','1', '1','1','1036.0', '1','1','1036.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089822.0','1047611.0','5', '4','2','1996.8', '4','1','78.44', '2','1','1918.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001559.0','1022044.0','1', '1','1','718.29', '1','0','0.0', '1','1','718.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089823.0','1047611.0','1', '1','1','984.0', '1','1','984.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001560.0','1022044.0','4', '2','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089824.0','1047611.0','116', '103','69','75254.89', '97','12','17674.07', '85','66','57580.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001561.0','1022044.0','1', '1','1','937.37', '1','0','0.0', '1','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089825.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001562.0','1022044.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089826.0','1047611.0','5', '4','3','10472.77', '4','2','3392.28', '3','2','7080.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000595.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088859.0','1047611.0','2157', '1971','1056','1726784.51', '1876','452','766211.26', '1299','825','960573.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001563.0','1022044.0','1', '1','1','1284.0', '1','1','1284.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089827.0','1047611.0','3399', '3198','1926','3205152.71', '3135','782','1490977.09', '2263','1614','1714175.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001564.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089828.0','1047611.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000452.0','1022044.0','10', '7','4','3162.11', '7','1','552.8', '5','3','2609.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088716.0','1047611.0','1', '1','1','4294.69', '1','1','3093.48', '1','1','1201.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001565.0','1022044.0','1330', '1171','597','738157.31', '1118','195','296673.52', '722','491','441483.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089829.0','1047611.0','2195', '1825','892','1470877.59', '1702','532','720302.88', '1135','559','750574.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001566.0','1022044.0','1', '1','1','6136.0', '1','1','6136.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089830.0','1047611.0','2', '1','1','25342.12', '1','1','11118.0', '1','1','14224.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001567.0','1022044.0','207', '186','113','216646.65', '181','73','143215.15', '106','64','73431.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089831.0','1047611.0','1', '1','1','712.52', '1','0','0.0', '1','1','712.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001568.0','1022044.0','1', '1','1','1185.17', '1','1','1185.17', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089832.0','1047611.0','11', '9','5','6187.18', '9','4','5170.03', '5','2','1017.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001569.0','1022044.0','53', '42','12','17196.96', '42','8','14157.81', '18','5','3039.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089833.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001570.0','1022044.0','5', '3','2','1530.4', '1','0','0.0', '2','2','1530.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089834.0','1047611.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001571.0','1022044.0','1704', '1554','619','764001.48', '1519','183','298342.36', '778','516','465659.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089835.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001572.0','1022044.0','1', '1','1','844.42', '1','0','0.0', '1','1','844.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089836.0','1047611.0','1', '1','1','844.42', '1','0','0.0', '1','1','844.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000371.0','1022044.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088635.0','1047611.0','1', '1','1','1589.64', '1','1','1589.64', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001573.0','1022044.0','2933', '2715','1553','3417988.34', '2656','918','1351757.29', '1796','1140','2066231.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089837.0','1047611.0','1', '1','1','918.0', '1','1','918.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001574.0','1022044.0','1', '1','1','2316.81', '1','1','1455.49', '1','1','861.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089838.0','1047611.0','9', '8','4','13481.22', '7','3','7521.28', '4','3','5959.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001575.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089839.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001576.0','1022044.0','15', '9','2','2033.94', '9','0','0.0', '3','2','2033.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089840.0','1047611.0','5', '4','0','0.0', '3','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001577.0','1022044.0','660', '597','285','273030.66', '573','28','41269.71', '357','272','231760.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089841.0','1047611.0','4', '2','1','228.49', '1','0','0.0', '2','1','228.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001578.0','1022044.0','4560', '4300','2259','2276576.2', '4148','311','411236.82', '2898','2107','1865339.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089842.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001579.0','1022044.0','253', '218','150','287760.42', '210','79','158151.6', '151','115','129608.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089843.0','1047611.0','3', '2','1','4165.97', '2','1','984.0', '2','1','3181.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001580.0','1022044.0','964', '876','482','573142.21', '850','145','206329.65', '549','386','366812.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089844.0','1047611.0','29', '26','15','39300.12', '26','14','29916.49', '14','4','9383.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001581.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089845.0','1047611.0','113', '96','55','98998.24', '87','25','43770.64', '59','40','55227.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001582.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089846.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001583.0','1022044.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089847.0','1047611.0','241', '226','151','454380.93', '215','108','220538.81', '167','107','233842.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001584.0','1022044.0','2296', '2099','988','1203730.24', '2041','213','357037.38', '1193','880','846692.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089848.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001585.0','1022044.0','10', '9','6','7006.12', '8','3','4206.13', '6','5','2799.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089849.0','1047611.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001586.0','1022044.0','110', '99','47','41272.59', '96','11','8035.44', '56','42','33237.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089850.0','1047611.0','8', '8','5','21220.84', '7','3','17488.76', '7','4','3732.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001587.0','1022044.0','19', '14','8','5274.72', '12','1','454.02', '12','7','4820.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089851.0','1047611.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001588.0','1022044.0','2', '2','2','3261.31', '2','2','1968.0', '1','1','1293.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089852.0','1047611.0','1078', '978','410','536008.66', '950','138','275612.81', '518','326','260395.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001589.0','1022044.0','236', '228','78','86905.24', '223','23','38011.22', '111','61','48894.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089853.0','1047611.0','1', '1','1','3171.3', '1','1','918.0', '1','1','2253.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001590.0','1022044.0','31', '27','14','68231.06', '24','8','22136.0', '24','12','46095.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089854.0','1047611.0','1', '1','1','1130.37', '1','0','0.0', '1','1','1130.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001591.0','1022044.0','2', '2','1','1592.72', '2','1','1374.0', '1','1','218.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089855.0','1047611.0','1', '1','1','118.3', '1','0','0.0', '1','1','118.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001592.0','1022044.0','208', '190','95','141133.87', '183','32','51815.46', '128','80','89318.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089856.0','1047611.0','5', '4','1','945.82', '4','0','0.0', '2','1','945.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001593.0','1022044.0','3', '3','1','988.07', '3','0','0.0', '1','1','988.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089857.0','1047611.0','1', '1','1','1036.0', '1','1','1036.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001594.0','1022044.0','227', '215','128','225629.84', '205','50','107587.15', '140','101','118042.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089858.0','1047611.0','369', '327','152','328366.48', '313','104','176388.85', '186','91','151977.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001595.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089859.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001596.0','1022044.0','11', '8','4','3487.53', '8','0','0.0', '6','4','3487.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089860.0','1047611.0','1', '1','1','4407.3', '1','1','4407.3', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001597.0','1022044.0','825', '789','539','836564.72', '770','168','406395.63', '595','475','430169.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089861.0','1047611.0','12', '7','3','4272.64', '7','1','2550.0', '5','2','1722.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001598.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089862.0','1047611.0','7', '6','1','852.87', '6','0','0.0', '3','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001599.0','1022044.0','1', '1','1','1071.78', '0','0','0.0', '1','1','1071.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089863.0','1047611.0','28', '27','11','14832.45', '26','10','13609.13', '14','4','1223.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001600.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089864.0','1047611.0','235', '201','89','193070.73', '191','56','103816.57', '117','60','89254.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001601.0','1022044.0','4', '4','1','6018.0', '4','1','6018.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089865.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001602.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089866.0','1047611.0','115', '107','73','277710.59', '105','58','124619.44', '73','51','153091.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001603.0','1022044.0','1', '1','1','6500.0', '0','0','0.0', '1','1','6500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089867.0','1047611.0','4', '3','3','4735.49', '3','1','2537.28', '3','3','2198.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001604.0','1022044.0','271', '222','50','63595.94', '214','25','37719.64', '77','34','25876.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089868.0','1047611.0','1818', '1680','722','886569.09', '1635','241','438233.71', '884','539','448335.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001605.0','1022044.0','503', '435','232','343497.97', '409','80','130353.78', '304','191','213144.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089869.0','1047611.0','27', '26','22','30125.09', '25','7','11789.18', '21','19','18335.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001606.0','1022044.0','355', '314','157','135150.82', '296','18','12537.2', '199','148','122613.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089870.0','1047611.0','1', '1','1','500.0', '1','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001607.0','1022044.0','124', '114','56','113713.32', '108','37','63657.84', '75','36','50055.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089871.0','1047611.0','13', '11','9','17399.06', '8','5','12444.96', '10','7','4954.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001608.0','1022044.0','1', '1','1','971.17', '1','0','0.0', '1','1','971.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089872.0','1047611.0','1', '1','1','675.68', '1','1','675.68', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001609.0','1022044.0','2', '2','2','12581.94', '2','2','7350.57', '2','2','5231.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089873.0','1047611.0','10', '7','3','2245.99', '7','1','235.71', '4','2','2010.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001610.0','1022044.0','1', '1','1','1114.0', '1','1','1114.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089874.0','1047611.0','1', '1','1','888.36', '1','0','0.0', '1','1','888.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001611.0','1022044.0','1', '1','1','1374.0', '1','1','1374.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089875.0','1047611.0','2', '2','1','6008.56', '2','1','3509.85', '2','1','2498.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001612.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089876.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001613.0','1022044.0','75', '73','12','14760.19', '72','3','6860.07', '23','10','7900.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089877.0','1047611.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001614.0','1022044.0','2', '2','2','2252.22', '2','1','1374.0', '1','1','878.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089878.0','1047611.0','2278', '2141','856','850789.3', '2096','131','231009.69', '1134','795','619779.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001615.0','1022044.0','7', '4','3','3955.36', '4','1','1077.0', '3','3','2878.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089879.0','1047611.0','467', '412','163','205725.61', '397','68','109417.83', '202','117','96307.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001616.0','1022044.0','7', '5','0','0.0', '5','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089880.0','1047611.0','77', '75','54','57851.7', '70','6','7072.9', '63','51','50778.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001617.0','1022044.0','864', '727','397','476316.07', '695','121','186934.02', '487','325','289382.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089881.0','1047611.0','1', '1','1','905.49', '1','1','905.49', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001618.0','1022044.0','4', '4','3','2767.14', '4','3','2338.44', '1','1','428.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089882.0','1047611.0','6', '6','2','857.4', '4','0','0.0', '6','2','857.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001619.0','1022044.0','163', '143','54','81937.89', '141','28','36184.37', '59','37','45753.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089883.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001620.0','1022044.0','1', '1','1','759.35', '1','0','0.0', '1','1','759.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089884.0','1047611.0','2002', '1792','890','2247134.42', '1767','487','1167446.52', '1043','659','1079687.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001621.0','1022044.0','314', '274','113','142117.61', '262','28','44058.61', '144','100','98059.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089885.0','1047611.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001622.0','1022044.0','55', '52','34','80191.34', '50','24','49169.1', '35','23','31022.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089886.0','1047611.0','23', '19','3','3233.46', '18','1','2223.96', '5','2','1009.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001623.0','1022044.0','2', '2','1','17138.95', '2','1','6136.0', '1','1','11002.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089887.0','1047611.0','9', '9','7','11155.06', '8','3','6759.0', '6','6','4396.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001624.0','1022044.0','10', '8','4','2987.94', '8','1','80.85', '4','4','2907.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089888.0','1047611.0','1', '1','1','1164.17', '1','0','0.0', '1','1','1164.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001625.0','1022044.0','2', '2','1','757.26', '2','1','757.26', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089889.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000312.0','1022044.0','1', '1','1','587.5', '1','1','587.5', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088576.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001626.0','1022044.0','182', '158','94','201247.1', '148','51','112869.32', '108','68','88377.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089890.0','1047611.0','1694', '1544','887','1108872.86', '1489','222','387693.46', '1053','776','721179.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000377.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088641.0','1047611.0','36', '30','17','11713.85', '29','3','995.16', '19','14','10718.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000654.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088918.0','1047611.0','1', '1','1','2074.0', '1','1','2074.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001627.0','1022044.0','19', '11','3','8386.76', '10','1','1275.0', '6','2','7111.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089891.0','1047611.0','10', '9','4','26159.38', '9','4','9641.83', '6','1','16517.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001628.0','1022044.0','658', '528','250','262283.41', '495','66','85510.1', '295','205','176773.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089892.0','1047611.0','1', '1','1','937.37', '1','0','0.0', '1','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000549.0','1022044.0','962', '839','445','490056.6', '806','70','113530.6', '552','403','376526.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088813.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001629.0','1022044.0','15', '11','6','8478.66', '11','5','6433.04', '8','2','2045.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089893.0','1047611.0','76', '65','34','33363.61', '62','12','10207.72', '44','28','23155.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2000276.0','1022044.0','1', '1','1','1640.0', '1','1','1640.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2088540.0','1047611.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001630.0','1022044.0','1967', '1795','885','1242590.12', '1718','373','500370.52', '1135','669','742219.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089894.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001631.0','1022044.0','20', '15','9','30496.36', '13','5','22482.0', '11','8','8014.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089895.0','1047611.0','1', '1','1','1007.77', '1','1','600.44', '1','1','407.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000299.0','1022044.0','1', '1','1','500.0', '0','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088563.0','1047611.0','1754', '1612','1015','2554293.89', '1588','540','1251097.76', '1130','798','1303196.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001632.0','1022044.0','257', '239','153','185140.74', '232','55','76541.62', '181','124','108599.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089896.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001633.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089897.0','1047611.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001634.0','1022044.0','40', '31','27','74331.65', '30','16','42034.01', '24','19','32297.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089898.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001635.0','1022044.0','13', '12','6','32487.5', '11','5','15368.8', '8','5','17118.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089899.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001636.0','1022044.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089900.0','1047611.0','3', '2','1','2925.91', '2','1','2193.0', '1','1','732.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001637.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089901.0','1047611.0','3689', '3442','1957','3503066.45', '3333','823','1446423.62', '2363','1589','2056642.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001638.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089902.0','1047611.0','152', '122','58','77254.62', '113','19','21392.36', '73','52','55862.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001639.0','1022044.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089903.0','1047611.0','2', '2','1','1079.67', '2','0','0.0', '1','1','1079.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001640.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089904.0','1047611.0','1', '1','1','228.49', '1','0','0.0', '1','1','228.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001641.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089905.0','1047611.0','279', '238','129','138851.96', '222','15','17021.66', '162','122','121830.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001642.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089906.0','1047611.0','12', '8','1','2124.0', '8','1','2124.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000432.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088696.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001643.0','1022044.0','1', '1','1','1746.93', '1','1','984.0', '1','1','762.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089907.0','1047611.0','604', '528','250','313966.9', '505','68','93063.58', '321','208','220903.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001644.0','1022044.0','530', '464','259','332668.95', '425','60','101919.73', '312','229','230749.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089908.0','1047611.0','2', '2','1','2657.25', '1','1','1956.31', '2','1','700.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001645.0','1022044.0','554', '524','307','548004.94', '517','104','223157.8', '371','256','324847.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089909.0','1047611.0','1', '1','1','2465.89', '1','1','918.0', '1','1','1547.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001646.0','1022044.0','1578', '1507','509','732786.14', '1486','200','285038.93', '751','394','447747.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089910.0','1047611.0','10', '8','5','8200.67', '8','3','7213.38', '3','2','987.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001647.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089911.0','1047611.0','1', '1','1','5737.26', '1','1','1114.0', '1','1','4623.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000664.0','1022044.0','85', '70','48','72640.2', '64','11','21054.76', '54','41','51585.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088928.0','1047611.0','718', '658','434','452112.21', '618','69','102172.98', '502','402','349939.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001648.0','1022044.0','7', '5','1','920.47', '5','0','0.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089912.0','1047611.0','1', '1','1','3884.0', '1','1','984.0', '1','1','2900.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001649.0','1022044.0','1', '1','1','1071.22', '1','0','0.0', '1','1','1071.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089913.0','1047611.0','569', '535','296','313432.78', '511','43','72124.41', '348','275','241308.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001650.0','1022044.0','1', '1','1','6277.21', '1','0','0.0', '1','1','6277.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089914.0','1047611.0','660', '642','525','1719690.71', '624','391','1095828.31', '545','423','623862.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001651.0','1022044.0','1', '1','1','984.23', '1','0','0.0', '1','1','984.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089915.0','1047611.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001652.0','1022044.0','1', '1','1','2108.85', '1','1','2108.85', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089916.0','1047611.0','1', '1','1','560.52', '1','1','560.52', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001653.0','1022044.0','1', '1','1','73.4', '1','1','73.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089917.0','1047611.0','3', '2','1','414.43', '2','0','0.0', '1','1','414.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001654.0','1022044.0','1', '1','1','791.6', '1','1','791.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089918.0','1047611.0','3', '3','1','729.27', '3','1','445.47', '3','1','283.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001655.0','1022044.0','1', '1','1','984.0', '1','1','984.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089919.0','1047611.0','25', '25','18','37263.75', '24','11','22745.37', '18','12','14518.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000600.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088864.0','1047611.0','28', '28','25','84413.8', '28','21','60362.36', '23','19','24051.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001656.0','1022044.0','1', '1','1','2819.18', '1','1','2819.18', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089920.0','1047611.0','1', '1','1','16071.72', '1','1','12939.0', '1','1','3132.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001657.0','1022044.0','1', '1','1','3850.37', '1','1','1465.68', '1','1','2384.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089921.0','1047611.0','1', '1','1','2876.17', '1','1','2876.17', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001658.0','1022044.0','1', '1','1','866.19', '1','1','625.04', '1','1','241.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089922.0','1047611.0','4', '4','3','2484.17', '4','1','227.84', '3','2','2256.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001659.0','1022044.0','1', '1','1','931.34', '1','0','0.0', '1','1','931.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089923.0','1047611.0','1', '1','1','700.0', '1','0','0.0', '1','1','700.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001660.0','1022044.0','2', '2','1','2981.99', '2','1','1826.0', '1','1','1155.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089924.0','1047611.0','1', '1','1','262.54', '1','1','262.54', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001661.0','1022044.0','1', '1','1','4399.08', '1','1','2162.0', '1','1','2237.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089925.0','1047611.0','1', '1','1','4337.69', '1','1','1826.0', '1','1','2511.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001662.0','1022044.0','2', '1','1','3208.2', '1','1','1826.0', '1','1','1382.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089926.0','1047611.0','1', '1','1','3548.21', '1','1','2678.2', '1','1','870.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2000269.0','1022044.0','15', '14','8','27868.93', '14','4','14199.67', '13','6','13669.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2088533.0','1047611.0','23', '21','18','100421.12', '20','16','67851.61', '17','14','32569.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001663.0','1022044.0','10', '9','6','16819.26', '9','4','8514.16', '6','4','8305.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089927.0','1047611.0','24', '23','18','15244.85', '18','1','742.02', '22','18','14502.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001664.0','1022044.0','1', '1','1','6697.53', '1','1','4899.92', '1','1','1797.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089928.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001665.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089929.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001666.0','1022044.0','557', '525','346','568990.62', '508','135','286446.19', '382','282','282544.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089930.0','1047611.0','2137', '1915','1157','1194446.85', '1803','258','380965.04', '1329','1000','813481.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001667.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089931.0','1047611.0','1', '1','1','673.48', '1','1','673.48', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001668.0','1022044.0','1', '1','1','12939.0', '1','1','12939.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089932.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001669.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089933.0','1047611.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001670.0','1022044.0','1', '1','1','5878.74', '1','1','5387.1', '1','1','491.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089934.0','1047611.0','50', '38','14','29755.9', '36','8','24340.48', '13','7','5415.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001671.0','1022044.0','13', '13','7','17775.84', '12','5','9399.8', '11','7','8376.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089935.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001672.0','1022044.0','1', '1','1','480.19', '1','0','0.0', '1','1','480.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089936.0','1047611.0','1', '1','1','768.91', '1','0','0.0', '1','1','768.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000639.0','1022044.0','1', '1','1','3388.24', '1','1','1826.0', '1','1','1562.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088903.0','1047611.0','87', '78','27','39229.65', '78','5','15616.87', '36','24','23612.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000248.0','1022044.0','1', '1','1','155.5', '1','1','155.5', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088512.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001673.0','1022044.0','1', '1','1','1138.41', '1','1','1138.41', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089937.0','1047611.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001674.0','1022044.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089938.0','1047611.0','3', '2','2','4423.54', '2','2','3487.89', '1','1','935.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000674.0','1022044.0','9', '9','7','7264.52', '9','6','4990.79', '7','5','2273.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088938.0','1047611.0','1', '1','1','770.03', '1','0','0.0', '1','1','770.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000635.0','1022044.0','7', '7','5','9933.48', '6','2','3246.14', '7','5','6687.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088899.0','1047611.0','1', '1','1','672.09', '1','0','0.0', '1','1','672.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001675.0','1022044.0','1', '1','1','3918.1', '1','0','0.0', '1','1','3918.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089939.0','1047611.0','1', '1','1','216.0', '1','1','216.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001676.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089940.0','1047611.0','4', '4','3','5162.45', '4','3','2709.09', '4','3','2453.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001677.0','1022044.0','1', '1','1','2513.86', '1','1','1826.0', '1','1','687.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089941.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001678.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089942.0','1047611.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001679.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089943.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001680.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089944.0','1047611.0','1', '1','1','5588.11', '1','1','1826.0', '1','1','3762.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001681.0','1022044.0','6', '6','2','4685.44', '6','1','636.53', '5','2','4048.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089945.0','1047611.0','11', '10','6','7990.17', '10','4','4411.6', '7','4','3578.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001682.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089946.0','1047611.0','1', '1','1','14.56', '1','0','0.0', '1','1','14.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001683.0','1022044.0','1', '1','1','1359.59', '1','0','0.0', '1','1','1359.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089947.0','1047611.0','1', '1','1','6243.47', '1','1','4533.4', '1','1','1710.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000456.0','1022044.0','1', '1','1','684.03', '1','0','0.0', '1','1','684.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088720.0','1047611.0','5', '4','2','10868.23', '4','2','8559.08', '2','1','2309.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000483.0','1022044.0','1', '1','1','330.62', '1','0','0.0', '1','1','330.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088747.0','1047611.0','1', '1','1','3645.99', '1','1','1826.0', '1','1','1819.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001684.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089948.0','1047611.0','1', '1','1','1435.76', '1','1','860.49', '1','1','575.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001685.0','1022044.0','8', '8','6','9502.24', '7','4','4332.16', '8','5','5170.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089949.0','1047611.0','1', '1','1','1099.39', '0','0','0.0', '1','1','1099.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001686.0','1022044.0','7', '7','5','23814.16', '7','4','14157.0', '6','4','9657.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089950.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001687.0','1022044.0','1', '1','1','1398.55', '1','0','0.0', '1','1','1398.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089951.0','1047611.0','2', '2','1','2901.86', '2','1','2901.86', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001688.0','1022044.0','2', '1','1','372.66', '1','1','142.0', '1','1','230.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089952.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001689.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089953.0','1047611.0','1', '1','1','1826.0', '1','1','1826.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001690.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089954.0','1047611.0','3', '3','3','14044.45', '3','3','12622.83', '3','3','1421.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001691.0','1022044.0','1', '1','1','450.62', '1','0','0.0', '1','1','450.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089955.0','1047611.0','34', '34','19','45953.32', '32','10','22231.49', '28','17','23721.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001692.0','1022044.0','1', '1','1','1826.0', '1','1','1826.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089956.0','1047611.0','3', '3','2','3602.25', '3','2','2855.32', '3','1','746.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001693.0','1022044.0','1', '1','1','330.62', '1','0','0.0', '1','1','330.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089957.0','1047611.0','945', '878','279','309469.02', '862','53','104722.4', '393','255','204746.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001694.0','1022044.0','21', '19','14','24822.85', '17','9','17755.89', '18','13','7066.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089958.0','1047611.0','1124', '967','465','554764.56', '901','177','229991.02', '628','363','324773.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001695.0','1022044.0','5', '5','3','1451.45', '5','0','0.0', '4','3','1451.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089959.0','1047611.0','1137', '1055','624','640005.88', '1007','82','122406.11', '745','584','517599.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001696.0','1022044.0','1', '1','1','713.76', '1','1','713.76', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089960.0','1047611.0','11', '11','8','53077.94', '11','7','39255.41', '7','7','13822.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001697.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089961.0','1047611.0','1', '1','1','3493.05', '1','1','2967.96', '1','1','525.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001698.0','1022044.0','16', '15','8','15866.02', '14','3','6843.25', '10','5','9022.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089962.0','1047611.0','3', '3','1','5227.53', '3','1','4401.98', '2','1','825.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001699.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089963.0','1047611.0','7', '6','4','7070.49', '6','2','2456.56', '6','4','4613.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001700.0','1022044.0','2', '1','1','179.53', '1','1','152.23', '1','1','27.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089964.0','1047611.0','9', '8','4','11545.79', '7','2','7171.52', '8','4','4374.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001701.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089965.0','1047611.0','1', '1','1','784.36', '0','0','0.0', '1','1','784.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001702.0','1022044.0','3', '3','2','8077.45', '3','2','7649.65', '2','1','427.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089966.0','1047611.0','1', '1','1','3014.2', '1','1','765.0', '1','1','2249.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000334.0','1022044.0','1', '1','1','1118.57', '1','0','0.0', '1','1','1118.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088598.0','1047611.0','1', '1','1','700.0', '0','0','0.0', '1','1','700.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001703.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089967.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001704.0','1022044.0','51', '44','20','47883.58', '41','8','15686.06', '23','14','32197.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089968.0','1047611.0','1', '1','1','2637.36', '1','1','2637.36', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001705.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089969.0','1047611.0','1035', '802','329','533332.27', '752','177','312162.63', '429','213','221169.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001706.0','1022044.0','1', '1','1','1.82', '1','0','0.0', '1','1','1.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089970.0','1047611.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001707.0','1022044.0','3303', '3095','2423','8750029.16', '3010','1960','5960329.48', '2486','1915','2789699.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089971.0','1047611.0','8', '8','6','5227.72', '8','1','447.9', '7','6','4779.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001708.0','1022044.0','2', '2','2','3200.9', '2','2','2267.28', '1','1','933.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089972.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001709.0','1022044.0','2086', '1880','893','1481235.29', '1797','415','698429.19', '1189','653','782806.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089973.0','1047611.0','1', '1','1','16.9', '1','0','0.0', '1','1','16.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001710.0','1022044.0','20', '16','12','10207.26', '16','3','744.91', '14','11','9462.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089974.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2000348.0','1022044.0','3096', '2838','1429','1468583.84', '2735','211','316186.17', '1838','1314','1152397.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2088612.0','1047611.0','1', '1','1','4846.03', '1','1','2368.9', '1','1','2477.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001711.0','1022044.0','370', '297','119','144372.2', '287','30','43784.33', '150','103','100587.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089975.0','1047611.0','6', '6','4','6587.87', '6','3','2407.89', '5','3','4179.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001712.0','1022044.0','2', '2','2','10023.79', '2','2','2445.44', '2','1','7578.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089976.0','1047611.0','14', '12','7','8090.16', '12','3','4975.58', '6','5','3114.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000486.0','1022044.0','2', '2','1','7001.98', '2','1','5340.67', '1','1','1661.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088750.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001713.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089977.0','1047611.0','1', '1','1','2159.19', '1','1','1826.0', '1','1','333.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001714.0','1022044.0','13', '11','5','28654.34', '11','4','13821.0', '10','5','14833.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089978.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001715.0','1022044.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089979.0','1047611.0','20', '20','12','40132.19', '19','7','23114.09', '18','11','17018.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001716.0','1022044.0','2', '2','2','2020.87', '2','1','159.0', '1','1','1861.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089980.0','1047611.0','1', '1','1','856.57', '1','0','0.0', '1','1','856.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001717.0','1022044.0','1', '1','1','188.32', '1','1','90.24', '1','1','98.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089981.0','1047611.0','1', '1','1','1238.84', '1','1','1238.84', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001718.0','1022044.0','1', '1','1','3415.79', '1','1','2162.0', '1','1','1253.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089982.0','1047611.0','2', '2','1','7008.63', '2','1','4792.95', '1','1','2215.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001719.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089983.0','1047611.0','1', '1','1','7739.25', '1','1','5080.21', '1','1','2659.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001720.0','1022044.0','1', '1','1','760.0', '1','0','0.0', '1','1','760.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089984.0','1047611.0','2', '2','1','228.96', '2','1','161.32', '2','1','67.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001721.0','1022044.0','1', '1','1','788.78', '1','1','788.78', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089985.0','1047611.0','4016', '3831','1363','1515697.44', '3760','274','521609.73', '1807','1207','994087.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000488.0','1022044.0','1', '1','1','4850.06', '1','1','3559.06', '1','1','1291.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088752.0','1047611.0','17', '12','9','14768.02', '10','4','9566.75', '8','7','5201.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001722.0','1022044.0','1', '1','1','3884.48', '1','1','3791.88', '1','1','92.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089986.0','1047611.0','430', '342','194','321893.12', '319','64','126673.87', '229','157','195219.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000481.0','1022044.0','2', '2','1','330.62', '2','0','0.0', '2','1','330.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088745.0','1047611.0','242', '214','127','155832.87', '203','35','63516.85', '157','106','92316.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000313.0','1022044.0','10', '9','5','13306.16', '9','5','7866.1', '5','4','5440.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088577.0','1047611.0','9', '7','6','13890.04', '7','5','9110.4', '6','5','4779.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001723.0','1022044.0','1', '1','1','4879.98', '1','1','2162.0', '1','1','2717.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089987.0','1047611.0','1', '1','1','870.01', '1','0','0.0', '1','1','870.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001724.0','1022044.0','1', '1','1','1455.47', '1','1','1455.47', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089988.0','1047611.0','1', '1','1','4553.94', '1','1','3194.05', '1','1','1359.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000597.0','1022044.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088861.0','1047611.0','1', '1','1','39.37', '1','1','39.37', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001725.0','1022044.0','1', '1','1','3228.22', '1','1','2162.0', '1','1','1066.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089989.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001726.0','1022044.0','1', '1','1','1917.46', '1','1','1826.0', '1','1','91.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089990.0','1047611.0','1', '1','1','262.64', '1','1','262.64', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001727.0','1022044.0','1', '1','1','428.7', '1','0','0.0', '1','1','428.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089991.0','1047611.0','86', '73','44','53713.88', '71','6','8471.69', '59','42','45242.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001728.0','1022044.0','168', '158','72','79179.03', '152','13','23131.37', '98','67','56047.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089992.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000509.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088773.0','1047611.0','1', '1','1','1681.57', '1','1','1681.57', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001729.0','1022044.0','2', '2','1','984.0', '2','1','984.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089993.0','1047611.0','5', '4','3','7769.13', '3','1','5022.2', '4','3','2746.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001730.0','1022044.0','3', '3','2','7031.38', '3','1','5331.22', '2','2','1700.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089994.0','1047611.0','1', '1','1','625.35', '1','0','0.0', '1','1','625.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001731.0','1022044.0','953', '793','317','434328.76', '770','134','205204.08', '381','228','229124.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089995.0','1047611.0','1', '1','1','1880.84', '1','1','912.76', '1','1','968.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001732.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089996.0','1047611.0','1', '1','1','5375.54', '1','1','3781.33', '1','1','1594.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001733.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2089997.0','1047611.0','28', '25','17','15878.37', '24','3','2892.93', '20','15','12985.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001734.0','1022044.0','1', '1','1','647.82', '1','1','618.7', '1','1','29.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089998.0','1047611.0','1', '1','1','3010.85', '1','0','0.0', '1','1','3010.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001735.0','1022044.0','4', '4','2','4825.23', '4','1','4361.69', '3','1','463.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2089999.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001736.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090000.0','1047611.0','5', '5','4','10446.37', '5','3','5075.88', '4','3','5370.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001737.0','1022044.0','1', '1','1','1333.16', '1','1','450.56', '1','1','882.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090001.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001738.0','1022044.0','1', '1','1','566.33', '1','1','566.33', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090002.0','1047611.0','3', '3','2','562.23', '2','0','0.0', '3','2','562.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000542.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088806.0','1047611.0','1', '1','1','1020.71', '1','1','1020.71', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001739.0','1022044.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090003.0','1047611.0','1', '1','1','155.68', '1','1','155.68', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001740.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090004.0','1047611.0','6', '6','4','2800.1', '6','3','1596.59', '4','2','1203.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001741.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090005.0','1047611.0','1', '1','1','330.62', '1','0','0.0', '1','1','330.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001742.0','1022044.0','8', '7','4','9471.64', '7','2','3988.0', '7','4','5483.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090006.0','1047611.0','22', '20','12','25649.34', '20','9','13421.78', '18','10','12227.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001743.0','1022044.0','6', '6','2','1183.31', '6','2','264.76', '5','1','918.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090007.0','1047611.0','1', '1','1','661.24', '1','0','0.0', '1','1','661.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001744.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090008.0','1047611.0','1', '1','1','5838.74', '1','1','4572.47', '1','1','1266.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001745.0','1022044.0','2', '2','1','54.0', '2','1','54.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090009.0','1047611.0','8', '8','6','16312.04', '8','3','8870.77', '7','5','7441.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001746.0','1022044.0','2', '2','1','999.31', '1','0','0.0', '2','1','999.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090010.0','1047611.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001747.0','1022044.0','3', '2','2','3380.52', '2','2','2957.3', '2','1','423.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090011.0','1047611.0','1', '1','1','472.52', '1','0','0.0', '1','1','472.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001748.0','1022044.0','5', '5','3','4053.67', '5','2','704.99', '4','2','3348.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090012.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001749.0','1022044.0','1', '1','1','2124.27', '1','1','370.43', '1','1','1753.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090013.0','1047611.0','1', '1','1','1902.9', '1','1','1826.0', '1','1','76.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001750.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090014.0','1047611.0','1', '1','1','5094.12', '1','1','5094.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000683.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088947.0','1047611.0','1', '1','1','157.48', '1','1','157.48', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001751.0','1022044.0','19', '16','12','30329.96', '15','8','22086.09', '10','7','8243.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090015.0','1047611.0','1', '1','1','440.16', '1','1','440.16', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001752.0','1022044.0','1', '1','1','808.42', '1','1','593.6', '1','1','214.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090016.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000629.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088893.0','1047611.0','1', '1','1','39.77', '1','1','39.77', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001753.0','1022044.0','2', '2','1','4243.25', '2','1','2712.0', '2','1','1531.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090017.0','1047611.0','1', '1','1','4163.25', '1','1','4163.25', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001754.0','1022044.0','1', '1','1','1826.0', '1','1','1826.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090018.0','1047611.0','1', '1','1','330.62', '1','0','0.0', '1','1','330.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001755.0','1022044.0','10', '10','6','26877.34', '9','4','20189.0', '8','6','6688.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090019.0','1047611.0','44', '40','32','80464.39', '39','27','46991.41', '27','21','33472.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001756.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090020.0','1047611.0','1', '1','1','2361.2', '1','1','745.86', '1','1','1615.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001757.0','1022044.0','1', '1','1','300.7', '0','0','0.0', '1','1','300.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090021.0','1047611.0','1', '1','1','3461.99', '1','1','3461.99', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001758.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090022.0','1047611.0','1', '1','1','539.39', '1','0','0.0', '1','1','539.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000246.0','1022044.0','4', '4','4','7870.76', '4','4','7039.49', '2','1','831.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088510.0','1047611.0','2', '2','1','7598.23', '2','1','5979.7', '1','1','1618.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001759.0','1022044.0','1', '1','1','2636.81', '1','1','1826.0', '1','1','810.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090023.0','1047611.0','1', '1','1','1030.62', '1','0','0.0', '1','1','1030.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001760.0','1022044.0','7', '7','7','31504.22', '7','5','20393.69', '7','6','11110.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090024.0','1047611.0','61', '57','41','108227.45', '57','37','79183.19', '44','31','29044.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001761.0','1022044.0','4', '4','3','2760.75', '4','1','1736.48', '4','3','1024.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090025.0','1047611.0','1', '1','1','7004.04', '1','1','5170.49', '1','1','1833.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001762.0','1022044.0','3', '3','3','2626.76', '2','1','371.7', '3','3','2255.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090026.0','1047611.0','3', '3','3','3222.42', '3','2','2216.0', '3','2','1006.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001763.0','1022044.0','1', '1','1','2815.35', '1','1','1826.0', '1','1','989.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090027.0','1047611.0','1', '1','1','633.12', '1','1','633.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001764.0','1022044.0','1', '1','1','6589.23', '1','1','4686.19', '1','1','1903.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090028.0','1047611.0','1', '1','1','70.43', '1','0','0.0', '1','1','70.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001765.0','1022044.0','10', '10','7','16263.99', '10','7','14650.54', '6','3','1613.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090029.0','1047611.0','1', '1','1','3987.73', '1','1','1382.28', '1','1','2605.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001766.0','1022044.0','3', '3','2','6139.63', '3','2','4062.33', '2','1','2077.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090030.0','1047611.0','1', '1','1','131.48', '1','1','131.48', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000610.0','1022044.0','8', '8','6','17054.44', '8','5','6559.1', '6','5','10495.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088874.0','1047611.0','25', '22','16','29616.53', '21','10','17895.3', '15','10','11721.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001767.0','1022044.0','1', '1','1','1090.62', '1','0','0.0', '1','1','1090.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090031.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001768.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090032.0','1047611.0','557', '537','293','290301.49', '524','22','32588.12', '347','285','257713.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001769.0','1022044.0','6', '6','3','4154.4', '6','1','875.91', '4','2','3278.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090033.0','1047611.0','1', '1','1','1147.27', '1','0','0.0', '1','1','1147.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001770.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090034.0','1047611.0','1', '1','1','984.0', '1','1','984.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001771.0','1022044.0','4', '3','3','3064.79', '3','2','2582.0', '2','1','482.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090035.0','1047611.0','1', '1','1','3535.25', '1','1','3366.25', '1','1','169.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001772.0','1022044.0','1', '1','1','3794.2', '1','1','3794.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090036.0','1047611.0','3', '3','3','9100.97', '3','2','7483.01', '3','3','1617.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001773.0','1022044.0','2', '2','1','500.0', '2','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090037.0','1047611.0','1', '1','1','1900.56', '1','1','1826.0', '1','1','74.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001774.0','1022044.0','2', '2','2','6200.32', '2','1','4916.61', '2','2','1283.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090038.0','1047611.0','1', '1','1','4938.47', '1','1','4725.99', '1','1','212.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001775.0','1022044.0','19', '19','12','28680.5', '18','3','12150.06', '16','11','16530.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090039.0','1047611.0','24', '21','14','55010.37', '19','11','32164.39', '17','11','22845.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001776.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090040.0','1047611.0','50', '48','35','115289.76', '47','27','74667.05', '34','27','40622.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001777.0','1022044.0','1', '1','1','303.19', '1','0','0.0', '1','1','303.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090041.0','1047611.0','3', '3','1','406.34', '3','1','406.34', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000547.0','1022044.0','1', '1','1','3665.47', '1','1','1826.0', '1','1','1839.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088811.0','1047611.0','1', '1','1','1068.57', '1','0','0.0', '1','1','1068.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001778.0','1022044.0','3', '3','2','940.85', '3','1','798.95', '1','1','141.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090042.0','1047611.0','2', '2','1','2647.77', '2','1','1416.0', '2','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000692.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088956.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000580.0','1022044.0','2', '1','1','2300.0', '1','1','2162.0', '1','1','138.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088844.0','1047611.0','3', '1','1','5363.5', '1','1','1640.0', '1','1','3723.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001779.0','1022044.0','2', '2','2','4805.89', '2','1','2162.0', '2','2','2643.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090043.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001780.0','1022044.0','1', '1','1','2856.11', '1','1','1274.91', '1','1','1581.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090044.0','1047611.0','4', '3','1','2269.95', '2','1','1105.78', '3','1','1164.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001781.0','1022044.0','1', '1','1','226.66', '1','1','226.66', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090045.0','1047611.0','3', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001782.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090046.0','1047611.0','15', '14','8','32203.51', '12','5','16199.53', '11','6','16003.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001783.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090047.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001784.0','1022044.0','6', '6','2','1263.47', '6','0','0.0', '5','2','1263.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090048.0','1047611.0','6', '5','2','510.66', '4','2','440.23', '3','1','70.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001785.0','1022044.0','1', '1','1','1591.69', '1','1','721.68', '1','1','870.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090049.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001786.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090050.0','1047611.0','1', '1','1','4802.14', '1','1','4140.9', '1','1','661.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001787.0','1022044.0','1', '1','1','19512.2', '1','1','13443.0', '1','1','6069.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090051.0','1047611.0','1', '1','1','2162.0', '1','1','2162.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001788.0','1022044.0','1', '1','1','2696.82', '1','1','1826.0', '1','1','870.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090052.0','1047611.0','127', '113','59','98692.79', '110','19','36484.18', '75','55','62208.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001789.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090053.0','1047611.0','1', '1','1','196.0', '1','1','196.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001790.0','1022044.0','1', '1','1','8244.73', '1','1','6765.32', '1','1','1479.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090054.0','1047611.0','89', '65','32','57280.07', '61','23','40920.67', '40','15','16359.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001791.0','1022044.0','31', '23','11','10202.63', '22','8','8105.78', '13','3','2096.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090055.0','1047611.0','2', '2','2','1311.27', '1','0','0.0', '2','2','1311.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001792.0','1022044.0','2', '1','1','1072.68', '1','1','903.68', '1','1','169.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090056.0','1047611.0','3', '3','1','8561.53', '3','1','6798.74', '3','1','1762.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001793.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090057.0','1047611.0','20', '18','10','9255.67', '18','4','4641.54', '13','8','4614.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000577.0','1022044.0','1', '1','1','2726.16', '1','1','1826.0', '1','1','900.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088841.0','1047611.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000626.0','1022044.0','1', '1','1','383.68', '1','1','383.68', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088890.0','1047611.0','4', '3','3','942.86', '3','0','0.0', '3','3','942.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000620.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088884.0','1047611.0','1', '1','1','330.62', '1','0','0.0', '1','1','330.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001794.0','1022044.0','2', '2','2','3419.11', '2','2','3226.36', '1','1','192.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090058.0','1047611.0','3', '3','2','4220.17', '3','2','2258.85', '3','2','1961.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001795.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090059.0','1047611.0','1', '1','1','9186.91', '1','1','5118.47', '1','1','4068.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001796.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090060.0','1047611.0','1', '1','1','4562.88', '1','1','2872.62', '1','1','1690.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001797.0','1022044.0','1', '1','1','305.9', '1','1','104.0', '1','1','201.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090061.0','1047611.0','14', '12','4','9930.86', '12','3','9631.24', '3','2','299.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001798.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090062.0','1047611.0','14', '12','10','29808.99', '10','5','12178.97', '10','9','17630.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001799.0','1022044.0','205', '185','129','479991.54', '171','119','233057.15', '105','51','246934.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090063.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001800.0','1022044.0','15', '11','8','15697.89', '11','6','13626.11', '5','3','2071.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090064.0','1047611.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001801.0','1022044.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090065.0','1047611.0','1', '1','1','675.8', '1','0','0.0', '1','1','675.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001802.0','1022044.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090066.0','1047611.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001803.0','1022044.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090067.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001804.0','1022044.0','1', '1','1','3896.0', '1','1','3896.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090068.0','1047611.0','1', '1','1','267.52', '1','1','267.52', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000441.0','1022044.0','1', '1','1','1093.32', '1','1','914.81', '1','1','178.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088705.0','1047611.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001805.0','1022044.0','1', '1','1','1826.0', '1','1','1826.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090069.0','1047611.0','6', '3','2','5537.51', '3','2','5537.51', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001806.0','1022044.0','4', '4','3','14323.8', '2','2','8100.62', '3','2','6223.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090070.0','1047611.0','1', '1','1','597.55', '1','0','0.0', '1','1','597.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001807.0','1022044.0','1', '1','1','326.56', '1','1','184.66', '1','1','141.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090071.0','1047611.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001808.0','1021958.0','5', '5','3','20763.03', '5','3','14521.63', '3','2','6241.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090072.0','1047525.0','2', '2','1','4120.0', '1','1','4120.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001809.0','1021958.0','19', '15','8','23739.77', '14','7','13940.61', '10','4','9799.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090073.0','1047525.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000648.0','1021958.0','6', '4','3','1988.61', '4','3','1765.43', '1','1','223.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088912.0','1047525.0','6', '5','3','10388.72', '4','3','10128.52', '3','1','260.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001810.0','1021958.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090074.0','1047525.0','1', '1','1','774.4', '1','0','0.0', '1','1','774.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001811.0','1021958.0','6', '6','5','15183.7', '6','5','12296.06', '2','1','2887.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090075.0','1047525.0','3', '3','3','6680.31', '3','3','6680.31', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001812.0','1021958.0','62', '55','42','85444.14', '50','38','56251.41', '25','11','29192.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090076.0','1047525.0','6', '4','1','4324.9', '4','1','4324.9', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001813.0','1021958.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090077.0','1047525.0','1', '1','1','5019.24', '1','0','0.0', '1','1','5019.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001814.0','1021958.0','3', '3','1','4665.57', '3','1','4665.57', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090078.0','1047525.0','1', '1','1','4032.09', '1','1','4032.09', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001815.0','1021958.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090079.0','1047525.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001816.0','1021958.0','1', '1','1','2845.0', '1','1','2845.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090080.0','1047525.0','1', '1','1','182.36', '1','1','182.36', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000704.0','1021958.0','2', '2','2','1865.37', '2','1','982.11', '2','2','883.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088968.0','1047525.0','13', '12','8','10077.09', '12','7','6813.19', '6','2','3263.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001817.0','1021958.0','7', '7','5','5168.8', '7','5','5068.8', '2','1','100.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090081.0','1047525.0','37', '31','21','33817.66', '30','19','26767.56', '17','4','7050.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001818.0','1021958.0','6', '6','6','19031.26', '6','6','19031.26', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090082.0','1047525.0','1', '1','1','1346.0', '1','1','1346.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001819.0','1021958.0','3', '3','1','3016.44', '3','1','2793.26', '2','1','223.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090083.0','1047525.0','7', '6','4','25702.41', '6','4','22407.0', '2','1','3295.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001820.0','1021958.0','1', '1','1','525.73', '1','1','181.44', '1','1','344.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090084.0','1047525.0','7', '6','4','8877.06', '6','3','6184.18', '4','3','2692.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001821.0','1021958.0','3', '3','2','2375.26', '3','2','2254.15', '1','1','121.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090085.0','1047525.0','2', '2','1','3404.5', '0','0','0.0', '2','1','3404.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001822.0','1021958.0','291', '249','211','515735.68', '238','203','363632.43', '126','65','152103.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090086.0','1047525.0','5', '5','5','19072.91', '5','5','18757.21', '3','1','315.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001823.0','1021958.0','7', '7','5','22653.08', '7','4','14799.76', '4','3','7853.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090087.0','1047525.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001824.0','1021958.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090088.0','1047525.0','5', '4','3','15609.93', '4','3','5844.42', '2','2','9765.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000681.0','1021958.0','16', '13','10','15486.64', '11','9','8691.99', '7','3','6794.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088945.0','1047525.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001825.0','1021958.0','1', '1','1','1391.61', '1','1','1391.61', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090089.0','1047525.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000409.0','1021958.0','3', '2','2','3773.84', '2','1','907.26', '2','2','2866.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088673.0','1047525.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001826.0','1021958.0','12', '10','6','13939.42', '9','6','13514.52', '4','1','424.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090090.0','1047525.0','1', '1','1','743.33', '1','1','743.33', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001827.0','1021958.0','27', '21','18','69820.49', '20','17','53457.34', '5','4','16363.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090091.0','1047525.0','46', '26','17','42354.53', '20','15','36883.4', '15','6','5471.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001828.0','1021958.0','7', '7','4','4931.33', '7','2','4154.51', '3','2','776.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090092.0','1047525.0','1', '1','1','1346.0', '1','1','1346.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001829.0','1021958.0','16', '15','5','16434.73', '13','5','16256.22', '6','1','178.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090093.0','1047525.0','731', '648','508','1060838.9', '625','471','805483.13', '356','186','255355.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001830.0','1021958.0','1', '1','1','1097.79', '1','1','442.76', '1','1','655.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090094.0','1047525.0','38', '32','27','47650.94', '30','15','23815.58', '25','19','23835.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000602.0','1021958.0','1', '1','1','3126.84', '1','1','3126.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088866.0','1047525.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001831.0','1021958.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090095.0','1047525.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001832.0','1021958.0','1', '1','1','218.47', '1','1','218.47', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090096.0','1047525.0','16', '14','12','40070.54', '14','11','33879.07', '9','7','6191.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2000398.0','1021958.0','2', '1','1','3419.3', '1','1','3419.3', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2088662.0','1047525.0','128', '119','105','191168.34', '117','99','168132.1', '60','34','23036.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000295.0','1021958.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088559.0','1047525.0','1', '1','1','4992.32', '1','1','4987.77', '1','1','4.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000445.0','1021958.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088709.0','1047525.0','63', '61','41','101713.84', '58','38','91029.71', '32','17','10684.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001833.0','1021958.0','3', '3','3','6954.2', '3','3','6597.19', '3','1','357.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090097.0','1047525.0','127', '105','85','425192.97', '98','80','318757.28', '58','33','106435.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001834.0','1021958.0','1', '1','1','19735.69', '1','1','12939.0', '1','1','6796.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090098.0','1047525.0','7', '7','5','16910.91', '7','5','16789.8', '2','1','121.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000379.0','1021958.0','411', '374','292','1419008.39', '366','261','877870.11', '268','202','541138.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088643.0','1047525.0','1', '1','1','1597.88', '1','1','1597.88', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001835.0','1021958.0','64', '53','37','197649.63', '48','34','66066.74', '40','25','131582.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090099.0','1047525.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2000429.0','1021958.0','1', '1','1','5336.92', '1','1','3790.6', '1','1','1546.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2088693.0','1047525.0','8', '8','5','17447.66', '8','5','16710.58', '5','3','737.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001836.0','1021958.0','2', '2','2','2517.1', '1','0','0.0', '2','2','2517.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090100.0','1047525.0','1', '1','1','1838.76', '1','1','1318.0', '1','1','520.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001837.0','1021958.0','1', '1','1','1811.69', '1','1','1016.6', '1','1','795.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090101.0','1047525.0','123', '110','86','166603.73', '109','84','155648.85', '52','20','10954.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001838.0','1021958.0','3', '3','3','11258.72', '3','3','11035.54', '1','1','223.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090102.0','1047525.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001839.0','1021958.0','35', '27','17','82519.41', '21','14','31003.36', '17','7','51516.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090103.0','1047525.0','3', '2','1','954.0', '2','1','954.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000693.0','1021958.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088957.0','1047525.0','250', '210','100','245985.26', '194','71','85429.32', '115','57','160555.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2000601.0','1021958.0','394', '328','176','294509.24', '311','101','187989.94', '190','115','106519.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2088865.0','1047525.0','34', '27','19','31772.48', '25','12','12321.61', '18','12','19450.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001840.0','1021958.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090104.0','1047525.0','1', '1','1','283.99', '1','1','283.99', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001841.0','1021958.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090105.0','1047525.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003519.0', '2001842.0','1021958.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008012.0', '2090106.0','1047525.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001843.0','1021958.0','6', '6','6','6861.07', '6','2','1981.22', '6','6','4879.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090107.0','1047525.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001844.0','1021958.0','233', '191','130','241977.11', '176','119','183411.94', '92','46','58565.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090108.0','1047525.0','10', '7','3','3387.89', '6','2','1513.15', '4','2','1874.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001845.0','1021958.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090109.0','1047525.0','5', '5','2','3244.59', '4','2','1964.0', '2','1','1280.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003504.0', '2001846.0','1021958.0','9', '9','6','7697.56', '8','4','5210.02', '6','3','2487.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3007997.0', '2090110.0','1047525.0','1', '1','1','1497.38', '1','1','1497.38', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001847.0','1022547.0','332', '297','204','343465.01', '278','95','203837.58', '205','160','139627.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090111.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001848.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090112.0','1048114.0','209', '191','100','147195.51', '186','41','77803.46', '108','78','69392.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001849.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090113.0','1048114.0','2', '2','2','1957.89', '2','0','0.0', '2','2','1957.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001850.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090114.0','1048114.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001851.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090115.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001852.0','1022547.0','33', '32','21','25591.93', '27','9','12667.4', '25','16','12924.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090116.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001853.0','1022547.0','487', '434','293','497255.14', '410','150','253528.65', '307','222','243726.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090117.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001854.0','1022547.0','1', '1','1','954.0', '1','1','954.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090118.0','1048114.0','126', '113','82','162574.77', '110','47','95440.8', '75','55','67133.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001855.0','1022547.0','1', '1','1','2233.15', '1','1','1590.0', '1','1','643.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090119.0','1048114.0','1', '1','1','1757.32', '1','1','982.0', '1','1','775.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001856.0','1022547.0','1', '1','1','1648.12', '1','0','0.0', '1','1','1648.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090120.0','1048114.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001857.0','1022547.0','936', '656','315','603463.8', '625','232','302883.92', '338','172','300579.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090121.0','1048114.0','10', '7','7','20784.43', '7','7','20561.25', '2','1','223.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001858.0','1022547.0','15', '14','11','13018.74', '14','11','13018.74', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090122.0','1048114.0','324', '285','151','245152.33', '270','73','137813.3', '161','102','107339.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001859.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090123.0','1048114.0','1', '1','1','861.32', '1','0','0.0', '1','1','861.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001860.0','1022547.0','592', '556','373','616419.6', '536','142','283390.35', '384','303','333029.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090124.0','1048114.0','18', '15','12','31891.39', '13','11','23794.37', '7','4','8097.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001861.0','1022547.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090125.0','1048114.0','28', '25','22','60091.29', '25','21','59269.04', '13','4','822.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001862.0','1022547.0','1', '1','1','989.76', '1','0','0.0', '1','1','989.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090126.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001863.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090127.0','1048114.0','1', '1','1','857.94', '1','0','0.0', '1','1','857.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001864.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090128.0','1048114.0','1', '1','1','1081.36', '1','0','0.0', '1','1','1081.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001865.0','1022547.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090129.0','1048114.0','31', '27','21','27284.68', '26','10','15359.39', '22','15','11925.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001866.0','1022547.0','42', '40','30','67587.39', '37','27','57113.19', '21','12','10474.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090130.0','1048114.0','1', '1','1','1160.0', '1','1','1160.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001867.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090131.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001868.0','1022547.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090132.0','1048114.0','2', '2','1','491.0', '2','1','491.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001869.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090133.0','1048114.0','32', '22','10','7312.15', '20','7','5499.71', '13','6','1812.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001870.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090134.0','1048114.0','61', '51','38','71349.36', '48','38','70098.1', '23','7','1251.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001871.0','1022547.0','1', '1','1','161.74', '1','0','0.0', '1','1','161.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090135.0','1048114.0','1', '1','1','689.49', '1','1','689.49', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001872.0','1022547.0','2', '2','1','2425.97', '2','1','1590.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090136.0','1048114.0','135', '120','99','210989.69', '116','95','194951.91', '54','22','16037.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001873.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090137.0','1048114.0','396', '352','232','322884.39', '336','99','149452.45', '251','177','173431.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001874.0','1022547.0','1', '1','1','4544.64', '1','1','4544.64', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090138.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001875.0','1022547.0','1', '1','1','2121.0', '1','1','2121.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090139.0','1048114.0','24', '23','11','24930.69', '23','8','18692.33', '10','5','6238.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001876.0','1022547.0','2', '1','1','1441.53', '1','1','1441.53', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090140.0','1048114.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001877.0','1022547.0','1', '1','1','2829.71', '1','1','2829.71', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090141.0','1048114.0','1', '1','1','742.02', '1','0','0.0', '1','1','742.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001878.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090142.0','1048114.0','1', '1','1','2763.25', '0','0','0.0', '1','1','2763.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001879.0','1022547.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090143.0','1048114.0','12', '7','5','30936.91', '6','5','21092.56', '2','1','9844.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001880.0','1022547.0','6', '3','1','1346.0', '2','1','1346.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090144.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001881.0','1022547.0','13', '10','5','12812.34', '10','5','12812.34', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090145.0','1048114.0','1', '1','1','2216.3', '1','1','1346.0', '1','1','870.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001882.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090146.0','1048114.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001883.0','1022547.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090147.0','1048114.0','1', '1','1','1058.1', '1','1','477.0', '1','1','581.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001884.0','1022547.0','2', '2','1','4939.02', '2','1','3867.8', '2','1','1071.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090148.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001885.0','1022547.0','162', '131','101','300653.54', '128','98','290638.5', '38','14','10015.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090149.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001886.0','1022547.0','9', '5','4','7873.98', '5','4','7023.96', '4','3','850.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090150.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001887.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090151.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001888.0','1022547.0','269', '225','169','527008.35', '203','160','250963.48', '147','83','276044.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090152.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001889.0','1022547.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090153.0','1048114.0','2', '1','1','1762.01', '1','1','1762.01', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001890.0','1022547.0','2', '2','1','1701.54', '2','0','0.0', '2','1','1701.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090154.0','1048114.0','3', '3','2','8592.33', '3','2','8248.04', '2','1','344.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001891.0','1022547.0','1', '1','1','1346.0', '1','1','1346.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090155.0','1048114.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001892.0','1022547.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090156.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001893.0','1022547.0','2', '2','2','1840.94', '2','0','0.0', '2','2','1840.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090157.0','1048114.0','1', '1','1','1911.08', '1','1','159.04', '1','1','1752.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001894.0','1022547.0','187', '160','109','290841.33', '157','109','284645.82', '54','21','6195.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090158.0','1048114.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001895.0','1022547.0','179', '162','124','501662.28', '157','120','233965.83', '91','55','267696.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090159.0','1048114.0','1', '1','1','837.66', '1','0','0.0', '1','1','837.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001896.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090160.0','1048114.0','20', '9','3','11800.0', '1','0','0.0', '8','3','11800.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001897.0','1022547.0','412', '315','184','381602.61', '291','160','252569.71', '188','70','129032.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090161.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001898.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090162.0','1048114.0','315', '281','171','176914.81', '266','91','90196.76', '188','107','86718.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001899.0','1022547.0','16', '14','8','13793.92', '13','6','9181.41', '8','6','4612.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090163.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001900.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090164.0','1048114.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001901.0','1022547.0','12', '12','8','6883.21', '12','3','1908.0', '7','6','4975.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090165.0','1048114.0','827', '759','540','1381972.27', '719','303','612127.33', '536','412','769844.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001902.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090166.0','1048114.0','321', '283','215','661101.51', '264','203','447381.1', '163','82','213720.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001903.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090167.0','1048114.0','1', '1','1','41.45', '1','0','0.0', '1','1','41.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001904.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090168.0','1048114.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001905.0','1022547.0','18', '16','11','18608.41', '15','8','12632.84', '10','7','5975.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090169.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001906.0','1022547.0','1', '1','1','6302.21', '1','1','3504.0', '1','1','2798.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090170.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001907.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090171.0','1048114.0','244', '223','148','276123.07', '213','75','147293.73', '159','103','128829.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001908.0','1022547.0','1', '1','1','871.46', '1','0','0.0', '1','1','871.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090172.0','1048114.0','1', '1','1','694.0', '1','0','0.0', '1','1','694.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001909.0','1022547.0','10', '8','7','32774.48', '8','7','20493.96', '3','2','12280.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090173.0','1048114.0','1', '1','1','3018.34', '1','1','3018.34', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001910.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090174.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001911.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090175.0','1048114.0','347', '300','129','149243.64', '289','44','55435.32', '148','105','93808.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001912.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090176.0','1048114.0','1930', '1718','1042','1304506.92', '1660','269','421382.42', '1188','878','883124.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001913.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090177.0','1048114.0','1', '1','1','346.5', '1','1','201.6', '1','1','144.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001914.0','1022547.0','1', '1','1','946.77', '1','1','946.77', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090178.0','1048114.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001915.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090179.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001916.0','1022547.0','33', '27','19','118660.22', '26','18','27177.37', '17','12','91482.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090180.0','1048114.0','498', '444','277','436140.55', '411','165','244942.37', '273','157','191198.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001917.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090181.0','1048114.0','1', '1','1','67.6', '1','0','0.0', '1','1','67.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001918.0','1022547.0','267', '224','122','176657.67', '215','65','98775.08', '117','77','77882.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090182.0','1048114.0','1', '1','1','912.02', '1','0','0.0', '1','1','912.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001919.0','1022547.0','28', '27','14','47907.72', '27','11','29457.13', '14','5','18450.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090183.0','1048114.0','1', '1','1','1562.93', '1','1','1562.93', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001920.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090184.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001921.0','1022547.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090185.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001922.0','1022547.0','487', '451','374','1402984.37', '433','359','918832.45', '246','142','484151.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090186.0','1048114.0','20', '19','18','25921.25', '19','17','24815.94', '11','7','1105.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001923.0','1022547.0','14', '12','7','10520.81', '10','6','9117.58', '5','2','1403.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090187.0','1048114.0','1', '1','1','235.25', '1','0','0.0', '1','1','235.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001924.0','1022547.0','162', '84','47','138788.45', '63','38','56630.58', '54','21','82157.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090188.0','1048114.0','555', '471','257','367120.66', '438','149','200085.88', '288','163','167034.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001925.0','1022547.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090189.0','1048114.0','1', '1','1','869.77', '1','0','0.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001926.0','1022547.0','1', '1','1','851.04', '1','1','851.04', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090190.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001927.0','1022547.0','4', '4','3','9255.38', '4','3','9032.2', '1','1','223.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090191.0','1048114.0','2', '2','1','895.12', '2','0','0.0', '1','1','895.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001928.0','1022547.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090192.0','1048114.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001929.0','1022547.0','1', '1','1','1394.59', '1','1','1394.59', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090193.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001930.0','1022547.0','30', '26','15','14057.76', '25','8','9552.0', '15','8','4505.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090194.0','1048114.0','21', '16','7','21630.21', '14','7','21285.92', '6','1','344.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001931.0','1022547.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090195.0','1048114.0','91', '82','68','216285.24', '80','68','205625.99', '41','21','10659.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001932.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090196.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001933.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090197.0','1048114.0','5', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001934.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090198.0','1048114.0','1', '1','1','236.43', '1','1','236.43', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001935.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090199.0','1048114.0','218', '190','122','165782.52', '179','52','88430.98', '129','95','77351.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001936.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090200.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001937.0','1022547.0','326', '306','192','356475.53', '302','85','162491.42', '202','146','193984.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090201.0','1048114.0','1384', '1225','641','867100.55', '1183','248','402250.0', '742','497','464850.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001938.0','1022547.0','2', '2','2','3559.63', '2','2','1717.0', '2','2','1842.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090202.0','1048114.0','3380', '3105','1884','1893303.75', '2971','532','445224.84', '2122','1578','1448078.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001939.0','1022547.0','2', '2','1','3007.6', '2','1','3007.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090203.0','1048114.0','1', '1','1','856.25', '1','0','0.0', '1','1','856.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001940.0','1022547.0','6', '2','1','528.94', '0','0','0.0', '2','1','528.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090204.0','1048114.0','26', '21','10','15974.32', '19','1','2302.0', '13','10','13672.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001941.0','1022547.0','1', '1','1','491.0', '1','1','491.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090205.0','1048114.0','668', '559','293','695909.66', '528','174','385898.21', '323','192','310011.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001942.0','1022547.0','41', '37','9','7346.59', '34','2','731.16', '19','8','6615.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090206.0','1048114.0','24', '22','10','22158.82', '22','10','20637.21', '7','1','1521.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001943.0','1022547.0','86', '58','30','31627.17', '55','9','9137.9', '35','25','22489.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090207.0','1048114.0','247', '227','112','224943.2', '215','69','111371.98', '127','78','113571.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001944.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090208.0','1048114.0','1', '1','1','3266.9', '1','0','0.0', '1','1','3266.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001945.0','1022547.0','43', '32','20','48655.51', '29','10','21283.89', '25','16','27371.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090209.0','1048114.0','41', '36','11','21950.89', '35','6','17998.85', '10','6','3952.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001946.0','1022547.0','363', '315','125','260877.1', '306','54','88274.9', '156','93','172602.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090210.0','1048114.0','10', '5','2','5965.6', '5','2','5965.6', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001947.0','1022547.0','8', '5','3','2710.71', '5','0','0.0', '4','3','2710.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090211.0','1048114.0','200', '169','42','62515.18', '166','23','34215.66', '47','22','28299.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001948.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090212.0','1048114.0','1', '1','1','982.0', '1','1','982.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001949.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090213.0','1048114.0','16', '11','5','4689.26', '9','0','0.0', '7','5','4689.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001950.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090214.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001951.0','1022547.0','2', '2','1','1353.8', '2','0','0.0', '1','1','1353.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090215.0','1048114.0','800', '735','254','432006.98', '721','169','270268.42', '300','123','161738.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001952.0','1022547.0','24', '20','14','18788.76', '20','1','791.98', '13','13','17996.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090216.0','1048114.0','1', '1','1','940.75', '1','0','0.0', '1','1','940.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001953.0','1022547.0','31', '21','13','21429.5', '20','11','19071.84', '11','3','2357.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090217.0','1048114.0','18', '13','7','5498.08', '12','0','0.0', '9','7','5498.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001954.0','1022547.0','4', '4','2','3945.97', '3','1','3110.0', '4','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090218.0','1048114.0','34', '32','18','29722.35', '29','10','14044.93', '19','12','15677.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001955.0','1022547.0','1', '1','1','7056.02', '1','0','0.0', '1','1','7056.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090219.0','1048114.0','8', '8','1','1086.18', '8','1','1086.18', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001956.0','1022547.0','26', '24','10','17665.18', '21','6','7490.0', '13','6','10175.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090220.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001957.0','1022547.0','5', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090221.0','1048114.0','11', '9','1','852.87', '9','0','0.0', '1','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001958.0','1022547.0','64', '59','26','67833.03', '55','17','27771.57', '33','15','40061.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090222.0','1048114.0','54', '51','42','107827.9', '49','30','78235.16', '31','22','29592.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001959.0','1022547.0','199', '184','88','204063.61', '181','47','89786.85', '102','62','114276.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090223.0','1048114.0','1', '1','1','1226.0', '1','1','1226.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001960.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090224.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001961.0','1022547.0','2016', '1775','972','1030412.76', '1700','243','287115.09', '1145','820','743297.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090225.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001962.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090226.0','1048114.0','174', '151','104','273452.97', '145','80','196418.56', '79','51','77034.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001963.0','1022547.0','426', '378','246','418192.5', '354','127','243200.24', '262','165','174992.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090227.0','1048114.0','42', '39','28','52825.5', '38','10','15445.39', '27','22','37380.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001964.0','1022547.0','4348', '3830','2009','3090071.38', '3718','970','1412838.57', '2119','1403','1677232.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090228.0','1048114.0','1', '1','1','66.94', '1','1','66.94', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001965.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090229.0','1048114.0','115', '99','19','28881.28', '95','10','17238.75', '36','13','11642.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001966.0','1022547.0','90', '86','63','113165.97', '82','26','64477.46', '67','51','48688.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090230.0','1048114.0','96', '72','36','60741.54', '67','10','8816.36', '49','28','51925.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001967.0','1022547.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090231.0','1048114.0','175', '154','63','111124.27', '147','27','49090.04', '81','47','62034.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001968.0','1022547.0','160', '143','70','139840.43', '139','55','114917.82', '56','29','24922.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090232.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001969.0','1022547.0','42', '26','9','10272.23', '20','4','7149.33', '18','5','3122.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090233.0','1048114.0','44', '33','20','44490.97', '32','10','13751.41', '25','17','30739.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001970.0','1022547.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090234.0','1048114.0','86', '72','41','67678.17', '67','12','32347.95', '48','37','35330.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001971.0','1022547.0','142', '132','92','256941.41', '130','76','186848.4', '92','46','70093.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090235.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001972.0','1022547.0','255', '224','138','150965.04', '209','29','37222.82', '165','123','113742.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090236.0','1048114.0','17', '16','13','14414.75', '16','1','2550.0', '14','13','11864.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001973.0','1022547.0','1', '1','1','491.0', '1','1','491.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090237.0','1048114.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001974.0','1022547.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090238.0','1048114.0','258', '220','118','178601.22', '199','48','71380.45', '145','90','107220.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001975.0','1022547.0','4', '4','3','2331.94', '4','1','491.0', '2','2','1840.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090239.0','1048114.0','1', '1','1','869.77', '1','0','0.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001976.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090240.0','1048114.0','2', '2','1','846.11', '2','0','0.0', '1','1','846.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001977.0','1022547.0','21', '18','7','4110.31', '18','3','1412.77', '7','4','2697.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090241.0','1048114.0','1', '1','1','25600.0', '1','1','9764.73', '1','1','15835.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001978.0','1022547.0','4', '4','3','33698.49', '4','3','20076.49', '2','1','13622.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090242.0','1048114.0','2', '2','1','3564.6', '2','0','0.0', '2','1','3564.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001979.0','1022547.0','17', '14','10','22061.4', '13','8','5714.6', '12','8','16346.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090243.0','1048114.0','2098', '1949','1059','2676424.69', '1823','521','987944.27', '1376','807','1688480.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001980.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090244.0','1048114.0','5380', '5004','2621','2582618.31', '4852','785','645090.47', '3084','2149','1937527.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001981.0','1022547.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090245.0','1048114.0','1', '1','1','920.47', '1','0','0.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001982.0','1022547.0','99', '74','31','49866.73', '62','9','11004.46', '53','27','38862.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090246.0','1048114.0','1', '1','1','566.12', '1','0','0.0', '1','1','566.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001983.0','1022547.0','7', '6','1','566.12', '6','0','0.0', '2','1','566.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090247.0','1048114.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001984.0','1022547.0','1', '1','1','7277.02', '1','0','0.0', '1','1','7277.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090248.0','1048114.0','6', '5','4','5178.06', '5','1','2611.0', '4','3','2567.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001985.0','1022547.0','32', '26','16','12680.69', '22','4','1593.12', '19','13','11087.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090249.0','1048114.0','164', '138','71','158335.0', '131','46','85536.96', '75','47','72798.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001986.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090250.0','1048114.0','90', '73','31','36655.7', '71','13','21184.0', '29','19','15471.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001987.0','1022547.0','272', '235','101','109958.84', '229','24','25208.18', '134','85','84750.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090251.0','1048114.0','19', '16','9','11712.99', '13','3','6495.08', '13','7','5217.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001988.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090252.0','1048114.0','1', '1','1','1022.97', '1','1','187.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001989.0','1022547.0','1', '1','1','1110.09', '1','0','0.0', '1','1','1110.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090253.0','1048114.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001990.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090254.0','1048114.0','2', '2','1','640.3', '1','0','0.0', '2','1','640.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001991.0','1022547.0','2', '2','2','7607.33', '2','2','6480.33', '1','1','1127.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090255.0','1048114.0','1', '1','1','1079.67', '1','0','0.0', '1','1','1079.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001992.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090256.0','1048114.0','5', '5','4','7134.64', '5','4','4542.12', '4','2','2592.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001993.0','1022547.0','1', '1','1','4478.85', '1','1','3886.0', '1','1','592.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090257.0','1048114.0','16', '13','4','3543.05', '13','2','916.84', '7','3','2626.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001994.0','1022547.0','43', '36','17','20035.4', '35','4','9986.48', '20','13','10048.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090258.0','1048114.0','157', '137','44','48261.24', '133','12','21476.6', '53','33','26784.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001995.0','1022547.0','72', '65','40','100044.17', '60','14','22906.66', '52','31','77137.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090259.0','1048114.0','49', '39','18','22234.85', '34','8','12493.52', '22','12','9741.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001996.0','1022547.0','268', '247','174','422413.01', '233','126','225855.33', '182','122','196557.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090260.0','1048114.0','17', '15','6','6866.21', '14','4','4779.7', '6','2','2086.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001997.0','1022547.0','324', '286','111','148167.15', '271','41','72576.89', '130','82','75590.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090261.0','1048114.0','200', '193','80','182671.15', '182','34','70161.07', '111','62','112510.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001998.0','1022547.0','1', '1','1','7168.0', '1','1','668.0', '1','1','6500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090262.0','1048114.0','5', '3','2','1536.16', '2','0','0.0', '2','2','1536.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2001999.0','1022547.0','26', '17','8','7042.34', '17','1','668.0', '8','7','6374.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090263.0','1048114.0','27', '27','13','11628.11', '26','0','0.0', '18','13','11628.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002000.0','1022547.0','31', '28','12','18657.91', '28','5','9653.03', '16','9','9004.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090264.0','1048114.0','11', '10','5','4844.7', '10','0','0.0', '5','5','4844.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002001.0','1022547.0','84', '81','50','160954.2', '79','42','100357.71', '55','32','60596.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090265.0','1048114.0','18', '13','2','5965.99', '12','2','5132.49', '6','1','833.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002002.0','1022547.0','257', '226','128','222950.81', '212','50','104989.34', '141','105','117961.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090266.0','1048114.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002003.0','1022547.0','1', '1','1','16198.0', '1','1','16198.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090267.0','1048114.0','1', '1','1','1130.37', '1','0','0.0', '1','1','1130.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002004.0','1022547.0','2', '2','1','315.6', '2','1','315.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090268.0','1048114.0','1', '1','1','3382.0', '1','1','982.0', '1','1','2400.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002005.0','1022547.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090269.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002006.0','1022547.0','1098', '965','442','541395.99', '947','220','238807.67', '466','289','302588.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090270.0','1048114.0','2', '2','1','668.0', '2','1','668.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002007.0','1022547.0','1', '1','1','1062.77', '0','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090271.0','1048114.0','3', '2','1','4508.05', '2','1','3516.0', '1','1','992.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002008.0','1022547.0','909', '837','530','520412.49', '802','154','125069.3', '577','436','395343.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090272.0','1048114.0','496', '458','165','375901.71', '446','121','226784.09', '233','94','149117.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002009.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090273.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002010.0','1022547.0','26', '22','5','4087.51', '22','3','2314.17', '8','2','1773.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090274.0','1048114.0','1', '1','1','2142.75', '1','0','0.0', '1','1','2142.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002011.0','1022547.0','3', '3','2','5078.8', '3','1','4852.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090275.0','1048114.0','3', '3','3','3485.48', '3','2','1943.0', '2','2','1542.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002012.0','1022547.0','97', '81','32','51771.03', '74','21','27696.89', '40','19','24074.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090276.0','1048114.0','390', '354','187','441216.97', '337','147','292537.23', '230','109','148679.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002013.0','1022547.0','54', '50','30','74026.02', '50','17','28344.0', '34','23','45682.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090277.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002014.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090278.0','1048114.0','69', '63','21','28018.17', '60','11','14453.31', '31','12','13564.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002015.0','1022547.0','25', '22','13','25408.16', '21','5','15783.62', '13','11','9624.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090279.0','1048114.0','125', '89','41','43157.22', '81','13','10935.83', '48','31','32221.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002016.0','1022547.0','1', '1','1','1226.0', '1','1','1226.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090280.0','1048114.0','25', '25','7','7037.75', '25','2','2672.0', '8','5','4365.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002017.0','1022547.0','94', '85','53','105243.03', '84','38','58013.34', '56','30','47229.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090281.0','1048114.0','803', '735','387','965133.22', '702','229','420523.06', '493','274','544610.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002018.0','1022547.0','3', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090282.0','1048114.0','5', '3','1','4373.57', '2','1','3503.8', '2','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002019.0','1022547.0','56', '52','36','67573.64', '51','23','38942.77', '39','22','28630.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090283.0','1048114.0','93', '86','37','37625.71', '83','9','7418.15', '52','34','30207.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002020.0','1022547.0','106', '101','66','156429.19', '94','39','102255.15', '62','39','54174.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090284.0','1048114.0','74', '59','29','41202.78', '56','7','14829.97', '32','24','26372.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002021.0','1022547.0','1737', '1455','893','1993692.98', '1360','476','692975.5', '1012','633','1300717.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090285.0','1048114.0','9', '9','2','3484.53', '8','1','2648.56', '4','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002022.0','1022547.0','1', '1','1','6761.71', '1','1','1336.0', '1','1','5425.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090286.0','1048114.0','366', '319','210','302372.21', '298','102','141281.22', '225','143','161090.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002023.0','1022547.0','15', '14','7','11305.16', '13','3','7064.0', '7','5','4241.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090287.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002024.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090288.0','1048114.0','56', '48','38','104343.69', '47','23','75288.9', '31','19','29054.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002025.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090289.0','1048114.0','1902', '1695','1068','1600645.44', '1614','409','652103.17', '1173','833','948542.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002026.0','1022547.0','167', '151','81','113002.12', '147','35','45540.57', '86','64','67461.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090290.0','1048114.0','2492', '2157','1132','1833512.89', '2083','659','920560.13', '1221','717','912952.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002027.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090291.0','1048114.0','1945', '1653','936','1144782.45', '1584','347','390039.98', '1022','725','754742.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002028.0','1022547.0','632', '577','263','541548.33', '530','114','203861.42', '355','190','337686.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090292.0','1048114.0','16', '11','2','8558.32', '11','1','982.0', '5','2','7576.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002029.0','1022547.0','1', '1','1','878.22', '1','0','0.0', '1','1','878.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090293.0','1048114.0','16', '14','4','3179.53', '14','0','0.0', '5','4','3179.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002030.0','1022547.0','816', '758','397','925503.66', '710','184','304622.71', '515','314','620880.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090294.0','1048114.0','90', '73','40','47107.26', '70','7','16359.14', '44','36','30748.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002031.0','1022547.0','110', '77','42','75954.2', '72','17','22690.94', '50','31','53263.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090295.0','1048114.0','48', '45','22','40320.18', '42','19','32351.21', '21','5','7968.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002032.0','1022547.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090296.0','1048114.0','44', '35','20','53717.71', '30','8','13306.0', '26','16','40411.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002033.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090297.0','1048114.0','1', '1','1','500.0', '1','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002034.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090298.0','1048114.0','32', '26','17','27889.1', '25','3','3658.0', '18','15','24231.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002035.0','1022547.0','14', '12','1','835.97', '12','0','0.0', '4','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090299.0','1048114.0','7', '5','0','0.0', '3','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002036.0','1022547.0','12', '11','9','18010.35', '11','9','7670.6', '4','4','10339.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090300.0','1048114.0','482', '441','217','453375.42', '433','137','242187.89', '233','132','211187.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002037.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090301.0','1048114.0','330', '297','208','381278.45', '279','94','213979.28', '217','164','167299.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002038.0','1022547.0','6', '6','3','5908.55', '6','2','4117.72', '3','2','1790.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090302.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002039.0','1022547.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090303.0','1048114.0','23', '22','17','20150.46', '20','4','7963.32', '18','17','12187.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002040.0','1022547.0','23', '17','11','11443.5', '15','4','3183.12', '12','9','8260.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090304.0','1048114.0','4', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002041.0','1022547.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090305.0','1048114.0','24', '23','10','7594.75', '21','4','2315.36', '10','7','5279.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002042.0','1022547.0','253', '238','122','316767.94', '221','56','95577.77', '157','91','221190.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090306.0','1048114.0','1387', '1307','875','1718645.82', '1249','402','919927.45', '948','691','798718.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002043.0','1022547.0','65', '58','23','52894.04', '56','13','20103.13', '31','13','32790.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090307.0','1048114.0','195', '173','97','110596.45', '165','14','9527.48', '120','92','101068.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002044.0','1022547.0','1', '1','1','852.87', '1','0','0.0', '1','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090308.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002045.0','1022547.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090309.0','1048114.0','15', '14','8','23211.71', '12','8','18741.8', '8','3','4469.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002046.0','1022547.0','15', '8','1','2070.92', '6','1','1654.0', '6','1','416.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090310.0','1048114.0','9', '6','2','1529.32', '6','1','668.0', '2','1','861.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002047.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090311.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002048.0','1022547.0','5', '5','2','12455.13', '4','2','3166.4', '4','2','9288.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090312.0','1048114.0','2', '2','1','1181.07', '2','0','0.0', '1','1','1181.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002049.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090313.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002050.0','1022547.0','1173', '1083','267','344592.33', '1071','220','242440.83', '307','85','102151.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090314.0','1048114.0','4', '3','2','6948.16', '3','2','4715.14', '3','1','2233.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002051.0','1022547.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090315.0','1048114.0','285', '270','158','689012.5', '259','136','333920.43', '176','88','355092.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002052.0','1022547.0','1', '1','1','11182.0', '1','1','11182.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090316.0','1048114.0','17', '15','7','6050.74', '14','3','3143.65', '11','4','2907.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002053.0','1022547.0','4', '3','3','6114.43', '2','1','3532.0', '3','3','2582.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090317.0','1048114.0','48', '42','31','53980.0', '41','22','38650.53', '30','16','15329.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002054.0','1022547.0','1', '1','1','852.87', '1','0','0.0', '1','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090318.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002055.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090319.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002056.0','1022547.0','1', '1','1','8507.65', '1','1','5100.0', '1','1','3407.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090320.0','1048114.0','2005', '1785','1029','1104036.63', '1738','339','389015.7', '1115','830','715020.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002057.0','1022547.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090321.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002058.0','1022547.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090322.0','1048114.0','1', '1','1','6265.08', '1','1','6256.63', '1','1','8.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002059.0','1022547.0','2053', '1886','1185','1763240.38', '1795','422','632625.79', '1347','950','1130614.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090323.0','1048114.0','376', '323','163','360374.56', '301','65','108401.3', '198','135','251973.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002060.0','1022547.0','61', '59','24','24667.81', '58','4','7746.3', '26','21','16921.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090324.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002061.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090325.0','1048114.0','3', '3','3','5357.18', '3','1','1654.0', '2','2','3703.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002062.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090326.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002063.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090327.0','1048114.0','1', '1','1','732.24', '1','1','732.24', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002064.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090328.0','1048114.0','5', '4','1','1505.0', '4','1','1336.0', '1','1','169.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002065.0','1022547.0','15', '13','2','964.56', '13','2','964.56', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090329.0','1048114.0','2', '2','2','4210.9', '2','1','3290.43', '2','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002066.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090330.0','1048114.0','403', '346','202','437312.98', '320','131','197852.59', '237','137','239460.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002067.0','1022547.0','1504', '1184','554','808386.15', '1133','278','356130.5', '613','353','452255.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090331.0','1048114.0','22', '13','5','6000.43', '12','3','2786.17', '7','2','3214.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002068.0','1022547.0','1', '1','1','5002.2', '1','1','4136.0', '1','1','866.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090332.0','1048114.0','1', '1','1','1197.97', '1','0','0.0', '1','1','1197.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002069.0','1022547.0','33', '30','10','16507.65', '29','7','12938.41', '12','4','3569.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090333.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002070.0','1022547.0','435', '392','204','228014.38', '373','79','89288.87', '224','155','138725.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090334.0','1048114.0','1', '1','1','1180.03', '1','0','0.0', '1','1','1180.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002071.0','1022547.0','187', '168','103','227430.62', '162','66','104499.68', '113','73','122930.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090335.0','1048114.0','208', '183','98','143336.54', '177','47','69707.0', '119','69','73629.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002072.0','1022547.0','131', '126','27','33375.57', '126','7','16324.6', '53','22','17050.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090336.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002073.0','1022547.0','110', '102','49','135415.82', '97','36','64576.53', '50','32','70839.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090337.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002074.0','1022547.0','1', '1','1','2383.28', '1','1','1336.0', '1','1','1047.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090338.0','1048114.0','1', '1','1','937.37', '1','0','0.0', '1','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002075.0','1022547.0','9', '7','3','2651.56', '7','0','0.0', '5','3','2651.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090339.0','1048114.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002076.0','1022547.0','1', '1','1','937.37', '1','0','0.0', '1','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090340.0','1048114.0','69', '61','41','101143.21', '56','19','59403.87', '41','29','41739.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002077.0','1022547.0','2', '2','1','3175.94', '1','0','0.0', '1','1','3175.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090341.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002078.0','1022547.0','98', '89','55','138849.56', '88','41','59920.06', '59','29','78929.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090342.0','1048114.0','1', '1','1','216.55', '1','0','0.0', '1','1','216.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002079.0','1022547.0','220', '188','107','168310.62', '177','48','66810.78', '122','79','101499.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090343.0','1048114.0','1', '1','1','726.25', '1','1','491.0', '1','1','235.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002080.0','1022547.0','2', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090344.0','1048114.0','3', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002081.0','1022547.0','231', '203','102','160640.83', '194','42','89123.56', '102','77','71517.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090345.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002082.0','1022547.0','9', '7','5','5789.0', '6','1','1691.8', '5','5','4097.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090346.0','1048114.0','91', '73','36','40063.53', '70','13','15412.99', '39','28','24650.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002083.0','1022547.0','20', '17','7','13269.15', '16','3','8931.91', '7','5','4337.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090347.0','1048114.0','15', '7','3','2169.97', '6','2','1334.0', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002084.0','1022547.0','2', '2','1','668.0', '1','1','668.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090348.0','1048114.0','10', '9','6','5294.67', '7','0','0.0', '8','6','5294.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002085.0','1022547.0','20', '17','7','11041.1', '16','3','4913.0', '12','6','6128.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090349.0','1048114.0','12', '11','4','4759.12', '10','1','668.0', '7','3','4091.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002086.0','1022547.0','8', '6','3','2578.89', '6','0','0.0', '3','3','2578.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090350.0','1048114.0','6', '6','1','835.97', '6','0','0.0', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002087.0','1022547.0','458', '415','208','495131.83', '387','132','255317.45', '282','138','239814.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090351.0','1048114.0','14', '12','7','26679.06', '11','5','21049.72', '11','6','5629.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002088.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090352.0','1048114.0','330', '286','149','298218.92', '266','82','179860.75', '174','98','118358.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002089.0','1022547.0','1', '1','1','1004.0', '1','1','1004.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090353.0','1048114.0','26', '20','12','32198.74', '20','11','14105.39', '13','7','18093.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002090.0','1022547.0','1', '1','1','550.48', '1','1','550.48', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090354.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002091.0','1022547.0','1', '1','1','1345.12', '1','0','0.0', '1','1','1345.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090355.0','1048114.0','211', '194','77','180946.82', '184','51','102614.35', '91','44','78332.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002092.0','1022547.0','1786', '1640','798','1165325.95', '1615','429','581763.65', '763','505','583562.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090356.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002093.0','1022547.0','10', '8','3','7214.14', '8','1','4852.0', '4','3','2362.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090357.0','1048114.0','5', '3','1','405.48', '2','0','0.0', '3','1','405.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002094.0','1022547.0','201', '174','72','99800.09', '170','27','42288.38', '79','53','57511.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090358.0','1048114.0','2690', '2337','1453','2001549.02', '2224','526','684784.1', '1588','1139','1316764.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002095.0','1022547.0','85', '77','44','149129.56', '75','36','69067.53', '53','26','80062.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090359.0','1048114.0','54', '44','18','22162.24', '40','7','9389.29', '22','13','12772.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002096.0','1022547.0','472', '405','254','524364.93', '379','150','320543.92', '287','171','203821.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090360.0','1048114.0','275', '209','78','88376.62', '200','28','40961.08', '88','53','47415.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002097.0','1022547.0','101', '90','57','88631.85', '82','28','46526.86', '60','39','42104.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090361.0','1048114.0','2', '2','2','1616.89', '2','1','491.21', '2','2','1125.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002098.0','1022547.0','39', '34','22','41102.16', '32','9','20770.25', '20','17','20331.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090362.0','1048114.0','20', '18','11','20947.04', '17','9','14131.17', '8','6','6815.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002099.0','1022547.0','2', '1','1','1591.11', '1','0','0.0', '1','1','1591.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090363.0','1048114.0','1', '1','1','1126.57', '1','0','0.0', '1','1','1126.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002100.0','1022547.0','1364', '1265','649','825777.22', '1226','251','407017.73', '696','461','418759.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090364.0','1048114.0','10', '9','2','7869.6', '9','2','2559.4', '2','1','5310.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002101.0','1022547.0','1', '1','1','1231.77', '0','0','0.0', '1','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090365.0','1048114.0','737', '653','283','576422.2', '628','158','290129.07', '380','181','286293.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002102.0','1022547.0','1', '1','1','1719.94', '1','0','0.0', '1','1','1719.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090366.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002103.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090367.0','1048114.0','349', '334','208','594856.74', '330','169','306832.28', '236','122','288024.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002104.0','1022547.0','51', '41','18','26868.9', '40','14','15771.14', '14','9','11097.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090368.0','1048114.0','2', '2','2','2000.14', '2','0','0.0', '2','2','2000.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002105.0','1022547.0','88', '63','38','76016.02', '58','17','27266.73', '45','30','48749.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090369.0','1048114.0','1', '1','1','1849.15', '1','1','1336.0', '1','1','513.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002106.0','1022547.0','133', '124','81','120367.46', '121','38','59388.8', '91','63','60978.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090370.0','1048114.0','3', '3','1','750.0', '3','0','0.0', '2','1','750.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002107.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090371.0','1048114.0','1661', '1469','695','853077.42', '1439','368','367133.76', '713','436','485943.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002108.0','1022547.0','1048', '933','378','460091.1', '921','114','170630.36', '431','297','289460.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090372.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002109.0','1022547.0','3235', '2860','1464','2143824.96', '2771','786','966868.47', '1586','968','1176956.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090373.0','1048114.0','1', '1','1','668.0', '1','1','668.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002110.0','1022547.0','9', '9','5','9641.4', '9','3','7981.17', '3','2','1660.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090374.0','1048114.0','56', '52','15','14984.97', '50','5','5693.48', '21','11','9291.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002111.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090375.0','1048114.0','9', '8','5','4900.2', '6','2','1945.79', '7','4','2954.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002112.0','1022547.0','12', '11','5','6295.05', '11','1','1102.92', '6','4','5192.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090376.0','1048114.0','3', '3','1','224.0', '3','1','224.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002113.0','1022547.0','12', '9','3','2727.7', '9','3','2727.7', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090377.0','1048114.0','59', '43','24','27570.34', '38','6','7747.84', '28','20','19822.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002114.0','1022547.0','31', '18','10','14701.33', '17','9','11372.67', '9','2','3328.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090378.0','1048114.0','1', '1','1','2880.06', '1','1','1984.94', '1','1','895.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002115.0','1022547.0','132', '120','51','141555.82', '113','33','71933.02', '57','33','69622.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090379.0','1048114.0','128', '122','88','182725.52', '118','43','89870.1', '89','67','92855.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002116.0','1022547.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090380.0','1048114.0','13', '9','8','9166.51', '8','5','6224.0', '6','5','2942.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002117.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090381.0','1048114.0','162', '151','44','64465.46', '142','16','20698.87', '61','31','43766.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002118.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090382.0','1048114.0','2', '2','1','15447.08', '2','0','0.0', '1','1','15447.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002119.0','1022547.0','2', '1','1','43.04', '1','1','43.04', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090383.0','1048114.0','1', '1','1','12131.64', '1','1','11182.0', '1','1','949.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002120.0','1022547.0','2440', '2212','1067','1195914.28', '2168','442','407648.03', '1141','765','788266.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090384.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002121.0','1022547.0','5', '4','2','5895.64', '4','1','2302.0', '2','2','3593.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090385.0','1048114.0','40', '35','21','53219.34', '32','13','26931.11', '22','12','26288.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002122.0','1022547.0','1', '1','1','50.7', '1','0','0.0', '1','1','50.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090386.0','1048114.0','48', '45','13','15946.3', '44','7','10160.91', '19','7','5785.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002123.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090387.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002124.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090388.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002125.0','1022547.0','20', '16','10','8631.83', '16','0','0.0', '11','10','8631.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090389.0','1048114.0','195', '174','112','146950.86', '165','43','63664.19', '122','93','83286.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002126.0','1022547.0','607', '536','347','1019872.9', '521','259','590816.29', '328','190','429056.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090390.0','1048114.0','257', '232','109','102246.14', '223','24','23255.52', '133','95','78990.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002127.0','1022547.0','1', '1','1','3228.37', '1','1','2291.0', '1','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090391.0','1048114.0','2', '2','2','3177.86', '2','1','449.0', '2','1','2728.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002128.0','1022547.0','385', '349','239','405508.06', '328','91','186654.97', '256','193','218853.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090392.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002129.0','1022547.0','7', '7','7','40888.19', '7','7','27865.34', '6','6','13022.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090393.0','1048114.0','23', '20','11','25954.07', '18','8','19212.02', '15','6','6742.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002130.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090394.0','1048114.0','531', '466','330','945858.3', '444','239','635795.47', '317','199','310062.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002131.0','1022547.0','11', '9','4','18737.97', '8','2','7647.0', '5','3','11090.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090395.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002132.0','1022547.0','529', '461','326','814866.37', '438','209','507834.0', '310','211','307032.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090396.0','1048114.0','1', '1','1','12316.82', '1','1','1260.0', '1','1','11056.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002133.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090397.0','1048114.0','43', '42','24','28888.28', '39','12','15743.48', '28','20','13144.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002134.0','1022547.0','13', '11','8','34864.73', '11','6','11377.82', '7','4','23486.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090398.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002135.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090399.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002136.0','1022547.0','1', '1','1','647.69', '1','1','419.2', '1','1','228.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090400.0','1048114.0','36', '27','15','23296.8', '25','12','17069.03', '12','6','6227.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002137.0','1022547.0','227', '203','131','311760.48', '191','101','210871.48', '123','63','100889.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090401.0','1048114.0','529', '477','289','658552.37', '452','150','372857.33', '304','209','285695.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002138.0','1022547.0','1', '1','1','2076.27', '1','1','1122.0', '1','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090402.0','1048114.0','1', '1','1','898.0', '1','1','898.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002139.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090403.0','1048114.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002140.0','1022547.0','1', '1','1','895.12', '1','0','0.0', '1','1','895.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090404.0','1048114.0','376', '336','144','342375.36', '328','120','227394.07', '173','66','114981.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002141.0','1022547.0','133', '121','71','75625.41', '111','8','16390.75', '84','69','59234.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090405.0','1048114.0','158', '146','64','96281.02', '131','23','20824.19', '81','51','75456.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002142.0','1022547.0','42', '39','34','161235.11', '39','27','81373.33', '34','26','79861.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090406.0','1048114.0','78', '62','27','45686.85', '62','12','26602.6', '29','18','19084.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002143.0','1022547.0','26', '23','18','19442.39', '23','2','3107.14', '17','16','16335.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090407.0','1048114.0','7', '7','2','4257.38', '7','2','3379.16', '2','1','878.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002144.0','1022547.0','39', '37','26','138090.32', '36','23','79016.64', '27','16','59073.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090408.0','1048114.0','43', '38','26','30690.77', '36','6','10469.35', '28','24','20221.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002145.0','1022547.0','1', '1','1','869.77', '1','0','0.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090409.0','1048114.0','57', '49','24','32795.07', '45','4','15451.0', '29','21','17344.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002146.0','1022547.0','33', '27','12','8699.79', '27','2','1683.0', '13','10','7016.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090410.0','1048114.0','156', '128','48','95284.08', '115','23','57785.94', '76','36','37498.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002147.0','1022547.0','22', '19','10','14078.39', '18','3','4696.58', '10','8','9381.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090411.0','1048114.0','1', '1','1','774.69', '1','1','774.69', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002148.0','1022547.0','6', '6','6','14525.8', '6','5','10871.65', '4','4','3654.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090412.0','1048114.0','38', '38','33','42042.32', '34','10','18361.51', '35','30','23680.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002149.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090413.0','1048114.0','129', '112','58','71778.12', '104','16','24286.24', '65','48','47491.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002150.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090414.0','1048114.0','118', '102','53','57718.11', '87','12','16734.07', '71','47','40984.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002151.0','1022547.0','3', '3','3','9028.93', '2','1','6450.0', '3','3','2578.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090415.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002152.0','1022547.0','491', '476','347','1319876.52', '471','277','657475.37', '364','246','662401.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090416.0','1048114.0','11', '11','4','12948.08', '10','3','10403.96', '7','3','2544.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002153.0','1022547.0','7', '7','3','1425.7', '7','1','561.0', '4','2','864.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090417.0','1048114.0','164', '141','79','94253.26', '135','20','36721.75', '87','68','57531.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002154.0','1022547.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090418.0','1048114.0','9', '9','5','17581.56', '9','4','10580.0', '7','3','7001.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002155.0','1022547.0','21', '17','12','30149.16', '17','8','24960.48', '11','7','5188.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090419.0','1048114.0','3', '3','3','2071.7', '2','1','561.0', '2','2','1510.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002156.0','1022547.0','488', '430','276','1064098.75', '410','178','595798.88', '268','166','468299.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090420.0','1048114.0','3', '3','2','10362.08', '3','2','8778.37', '2','2','1583.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002157.0','1022547.0','640', '561','326','1069180.77', '528','218','550418.09', '315','197','518762.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090421.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002158.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090422.0','1048114.0','136', '115','49','106150.01', '110','36','57786.87', '59','28','48363.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002159.0','1022547.0','298', '252','122','162859.76', '234','48','82745.21', '148','83','80114.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090423.0','1048114.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002160.0','1022547.0','1', '1','1','561.0', '1','1','561.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090424.0','1048114.0','266', '243','186','173770.9', '229','17','14061.01', '201','180','159709.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002161.0','1022547.0','1140', '988','429','416296.62', '952','115','106314.34', '483','344','309982.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090425.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002162.0','1022547.0','3', '3','2','1942.34', '3','0','0.0', '2','2','1942.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090426.0','1048114.0','490', '422','282','1070319.71', '400','219','561449.42', '285','188','508870.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002163.0','1022547.0','6', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090427.0','1048114.0','49', '45','26','58484.73', '44','20','27564.26', '23','12','30920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002164.0','1022547.0','133', '104','62','81769.47', '95','24','28757.77', '72','44','53011.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090428.0','1048114.0','30', '21','18','37487.93', '21','18','32181.7', '9','4','5306.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002165.0','1022547.0','182', '167','130','127515.05', '155','15','18280.09', '146','122','109234.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090429.0','1048114.0','57', '51','33','49844.38', '49','12','26923.37', '36','25','22921.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002166.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090430.0','1048114.0','1', '1','1','971.17', '1','0','0.0', '1','1','971.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002167.0','1022547.0','83', '73','40','56481.84', '71','12','29759.31', '45','30','26722.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090431.0','1048114.0','5', '3','1','2550.0', '3','1','2550.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002168.0','1022547.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090432.0','1048114.0','6', '4','2','3453.57', '4','1','2550.0', '4','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002169.0','1022547.0','13', '12','6','7617.65', '11','2','4563.19', '7','4','3054.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090433.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002170.0','1022547.0','1', '1','1','928.9', '1','0','0.0', '1','1','928.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090434.0','1048114.0','2', '2','2','13230.11', '2','2','12072.64', '2','1','1157.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002171.0','1022547.0','596', '522','240','350681.23', '506','159','196269.65', '241','117','154411.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090435.0','1048114.0','273', '251','110','170781.55', '232','49','88674.24', '145','79','82107.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002172.0','1022547.0','1', '1','1','5316.0', '1','0','0.0', '1','1','5316.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090436.0','1048114.0','1', '1','1','1540.51', '1','1','1313.71', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002173.0','1022547.0','30', '25','18','31852.42', '22','7','20605.72', '20','14','11246.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090437.0','1048114.0','296', '268','120','113407.75', '256','31','36299.63', '145','95','77108.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002174.0','1022547.0','239', '219','163','649786.86', '216','126','353924.26', '171','116','295862.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090438.0','1048114.0','531', '484','308','637648.12', '455','122','341739.17', '326','245','295908.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002175.0','1022547.0','10', '8','8','15118.2', '8','6','11855.13', '7','6','3263.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090439.0','1048114.0','4', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002176.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090440.0','1048114.0','150', '124','51','63130.58', '122','27','38094.15', '55','27','25036.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002177.0','1022547.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090441.0','1048114.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002178.0','1022547.0','81', '70','47','89602.35', '64','13','47516.76', '50','39','42085.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090442.0','1048114.0','644', '619','480','1964031.19', '609','413','1019082.54', '479','322','944948.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002179.0','1022547.0','3', '2','2','2009.6', '2','1','984.0', '1','1','1025.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090443.0','1048114.0','1', '1','1','7051.72', '1','1','4938.97', '1','1','2112.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002180.0','1022547.0','1', '1','1','898.0', '1','1','898.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090444.0','1048114.0','811', '721','489','832607.23', '678','233','456678.85', '510','360','375928.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002181.0','1022547.0','4', '3','1','6.76', '1','0','0.0', '2','1','6.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090445.0','1048114.0','66', '62','38','70443.12', '59','19','44547.37', '39','29','25895.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002182.0','1022547.0','1', '1','1','924.09', '1','1','715.08', '1','1','209.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090446.0','1048114.0','6', '4','3','3007.51', '3','1','771.53', '4','3','2235.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002183.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090447.0','1048114.0','39', '36','25','40569.31', '34','12','29366.15', '29','16','11203.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002184.0','1022547.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090448.0','1048114.0','1', '1','1','901.68', '1','0','0.0', '1','1','901.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002185.0','1022547.0','1', '1','1','436.76', '1','0','0.0', '1','1','436.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090449.0','1048114.0','145', '136','88','187141.33', '135','63','113151.71', '76','44','73989.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002186.0','1022547.0','91', '85','62','175928.25', '79','38','98917.95', '52','39','77010.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090450.0','1048114.0','7', '4','4','29900.54', '4','3','19761.56', '2','2','10138.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002187.0','1022547.0','217', '200','83','86729.66', '191','21','28592.01', '109','68','58137.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090451.0','1048114.0','672', '592','384','564376.2', '560','209','294887.68', '394','247','269488.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002188.0','1022547.0','538', '475','205','423250.67', '459','144','267840.68', '259','102','155409.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090452.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002189.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090453.0','1048114.0','1', '1','1','5658.38', '1','1','2550.0', '1','1','3108.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002190.0','1022547.0','46', '42','14','33802.5', '40','8','25198.91', '12','9','8603.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090454.0','1048114.0','19', '18','11','17340.3', '18','4','10600.58', '12','7','6739.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002191.0','1022547.0','11', '9','8','14089.53', '9','1','5100.0', '9','8','8989.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090455.0','1048114.0','1', '1','1','2148.16', '1','1','2148.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002192.0','1022547.0','142', '125','89','220654.0', '123','57','147972.94', '83','57','72681.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090456.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002193.0','1022547.0','1', '1','1','1368.0', '1','1','1368.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090457.0','1048114.0','3', '3','3','10038.59', '3','3','9818.89', '3','2','219.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002194.0','1022547.0','34', '30','18','27362.78', '30','4','10556.0', '19','16','16806.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090458.0','1048114.0','312', '275','116','122347.38', '262','34','49253.56', '136','93','73093.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002195.0','1022547.0','154', '147','79','107320.45', '141','24','37079.09', '96','71','70241.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090459.0','1048114.0','5', '4','3','2528.74', '4','1','630.0', '3','2','1898.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002196.0','1022547.0','181', '161','95','144385.11', '152','37','77105.76', '101','67','67279.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090460.0','1048114.0','1', '1','1','920.47', '1','0','0.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002197.0','1022547.0','375', '316','204','764848.34', '284','145','201815.8', '223','142','563032.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090461.0','1048114.0','145', '123','54','91702.85', '120','32','48131.18', '73','33','43571.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002198.0','1022547.0','72', '60','41','128041.04', '57','32','87600.8', '39','22','40440.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090462.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002199.0','1022547.0','9', '9','3','5509.55', '8','2','1539.0', '7','2','3970.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090463.0','1048114.0','19', '15','11','67812.05', '15','11','27596.71', '11','7','40215.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002200.0','1022547.0','812', '742','351','455961.08', '721','99','171369.48', '418','288','284591.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090464.0','1048114.0','113', '106','72','140401.01', '101','42','85799.7', '77','53','54601.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002201.0','1022547.0','1', '1','1','1640.0', '1','1','1640.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090465.0','1048114.0','1', '1','1','687.0', '1','1','687.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002202.0','1022547.0','4', '4','3','3780.89', '4','1','1823.0', '4','2','1957.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090466.0','1048114.0','1', '1','1','1792.18', '1','1','1562.0', '1','1','230.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002203.0','1022547.0','27', '27','17','31708.96', '24','12','17203.52', '20','9','14505.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090467.0','1048114.0','128', '117','66','88810.74', '111','19','40406.18', '74','54','48404.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002204.0','1022547.0','160', '150','104','173883.96', '137','34','72056.23', '118','89','101827.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090468.0','1048114.0','74', '69','46','155789.59', '69','39','117984.73', '40','22','37804.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002205.0','1022547.0','123', '100','48','87728.34', '89','30','41110.17', '58','26','46618.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090469.0','1048114.0','47', '39','22','23500.74', '38','7','10881.84', '22','16','12618.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002206.0','1022547.0','2', '2','2','7310.31', '2','2','7310.31', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090470.0','1048114.0','3', '1','1','1917.88', '1','0','0.0', '1','1','1917.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002207.0','1022547.0','5', '5','4','6205.33', '5','4','4402.03', '4','3','1803.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090471.0','1048114.0','4568', '4170','2238','3045862.16', '4056','1001','1304058.62', '2421','1570','1741803.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002208.0','1022547.0','6', '1','1','991.61', '1','0','0.0', '1','1','991.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090472.0','1048114.0','159', '151','114','481392.82', '145','90','226949.65', '113','68','254443.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002209.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090473.0','1048114.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002210.0','1022547.0','128', '119','63','81996.81', '117','31','41486.0', '74','51','40510.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090474.0','1048114.0','39', '31','22','21104.26', '28','7','7329.95', '21','17','13774.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002211.0','1022547.0','93', '92','43','89154.88', '89','34','69882.16', '43','25','19272.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090475.0','1048114.0','210', '194','111','261402.81', '185','59','98841.29', '142','75','162561.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002212.0','1022547.0','8', '7','3','2308.78', '7','1','232.59', '5','3','2076.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090476.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002213.0','1022547.0','107', '103','81','176076.24', '91','36','105031.95', '82','65','71044.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090477.0','1048114.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002214.0','1022547.0','57', '50','26','55788.39', '47','8','17588.48', '34','20','38199.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090478.0','1048114.0','207', '189','130','296285.54', '173','72','187445.06', '138','97','108840.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002215.0','1022547.0','37', '29','13','18590.77', '27','6','12023.65', '16','8','6567.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090479.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002216.0','1022547.0','1', '1','1','1253.93', '0','0','0.0', '1','1','1253.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090480.0','1048114.0','335', '299','214','425120.39', '285','71','213595.15', '240','184','211525.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002217.0','1022547.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090481.0','1048114.0','501', '446','259','412965.6', '423','139','242129.94', '306','177','170835.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002218.0','1022547.0','66', '62','23','30577.55', '61','9','15751.48', '27','16','14826.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090482.0','1048114.0','1', '1','1','2713.74', '1','1','2713.74', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002219.0','1022547.0','1', '1','1','1439.51', '1','0','0.0', '1','1','1439.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090483.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002220.0','1022547.0','112', '108','76','201330.17', '101','42','110762.94', '78','59','90567.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090484.0','1048114.0','103', '95','64','138420.08', '89','40','89644.38', '62','37','48775.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002221.0','1022547.0','1', '1','1','500.0', '1','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090485.0','1048114.0','105', '95','53','128052.48', '92','32','69357.16', '51','34','58695.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002222.0','1022547.0','121', '111','46','97048.25', '107','29','64147.43', '66','27','32900.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090486.0','1048114.0','62', '52','25','36929.81', '49','5','14688.0', '38','24','22241.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002223.0','1022547.0','1', '1','1','1129.64', '1','1','1129.64', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090487.0','1048114.0','192', '175','101','150794.74', '167','27','70197.54', '126','86','80597.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002224.0','1022547.0','31', '28','18','23966.8', '26','7','14385.16', '21','14','9581.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090488.0','1048114.0','8', '8','7','12272.21', '8','2','7902.56', '6','6','4369.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002225.0','1022547.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090489.0','1048114.0','182', '163','101','203023.67', '151','57','120510.4', '99','61','82513.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002226.0','1022547.0','1', '1','1','937.37', '1','0','0.0', '1','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090490.0','1048114.0','5', '5','2','1846.83', '4','2','1846.83', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002227.0','1022547.0','66', '57','30','58396.92', '53','13','33189.59', '29','18','25207.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090491.0','1048114.0','92', '76','39','87676.24', '75','24','44829.29', '34','21','42846.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002228.0','1022547.0','1', '1','1','1456.48', '1','1','1320.0', '1','1','136.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090492.0','1048114.0','27', '22','12','22084.35', '21','8','17226.16', '15','8','4858.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002229.0','1022547.0','2376', '2148','1026','1491633.16', '2094','493','759836.15', '1102','694','731797.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090493.0','1048114.0','848', '794','397','1039625.39', '773','247','453107.76', '460','235','586517.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002230.0','1022547.0','1', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090494.0','1048114.0','8', '7','2','2887.81', '7','2','1791.24', '4','1','1096.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002231.0','1022547.0','69', '65','32','33463.17', '58','7','10504.03', '37','28','22959.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090495.0','1048114.0','33', '29','12','16908.0', '27','5','8423.66', '16','8','8484.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002232.0','1022547.0','665', '619','379','657701.45', '592','196','320623.77', '423','267','337077.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090496.0','1048114.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002233.0','1022533.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090497.0','1048100.0','143', '129','62','153348.85', '122','41','88836.17', '64','37','64512.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002234.0','1022533.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090498.0','1048100.0','1', '1','1','1026.0', '1','1','1026.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002235.0','1022533.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090499.0','1048100.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002236.0','1022533.0','7', '7','4','3504.43', '6','0','0.0', '7','4','3504.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090500.0','1048100.0','129', '115','68','108631.57', '108','5','12282.0', '95','67','96349.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002237.0','1022533.0','6', '6','4','3833.57', '5','1','664.44', '6','4','3169.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090501.0','1048100.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002238.0','1022533.0','1', '1','1','5560.35', '1','1','1374.0', '1','1','4186.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090502.0','1048100.0','29', '27','20','66475.96', '25','16','36807.55', '23','13','29668.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002239.0','1022533.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090503.0','1048100.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002240.0','1022533.0','529', '490','282','531033.63', '455','125','207593.66', '340','207','323439.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090504.0','1048100.0','234', '219','127','143128.7', '204','43','44446.31', '142','100','98682.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002241.0','1022533.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090505.0','1048100.0','211', '182','109','239408.4', '169','55','97879.33', '114','74','141529.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002242.0','1022533.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090506.0','1048100.0','345', '301','138','282929.4', '284','102','194676.53', '168','62','88252.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002243.0','1022533.0','61', '55','25','66593.81', '54','19','54320.57', '24','13','12273.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090507.0','1048100.0','292', '270','166','394524.96', '257','76','212384.73', '172','122','182140.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002244.0','1022533.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090508.0','1048100.0','4550', '4197','2153','3377049.33', '4083','957','1437011.19', '2354','1571','1940038.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002245.0','1022533.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090509.0','1048100.0','38', '36','17','24254.2', '35','8','11718.34', '22','14','12535.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002246.0','1022533.0','1', '1','1','2290.95', '1','1','1026.0', '1','1','1264.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090510.0','1048100.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002247.0','1022533.0','293', '259','159','316107.32', '250','69','186136.85', '164','120','129970.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090511.0','1048100.0','349', '315','203','380797.2', '299','112','246202.53', '218','136','134594.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002248.0','1022533.0','28', '25','12','27177.12', '25','7','23545.55', '16','7','3631.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090512.0','1048100.0','152', '135','76','227149.13', '128','42','84402.37', '99','60','142746.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002249.0','1022533.0','8', '5','3','2303.87', '5','3','2072.0', '2','1','231.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090513.0','1048100.0','141', '125','92','189947.72', '116','43','122269.77', '87','67','67677.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002250.0','1022533.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090514.0','1048100.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002251.0','1022533.0','1', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090515.0','1048100.0','68', '58','16','23876.0', '55','6','15416.71', '25','11','8459.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002252.0','1022533.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090516.0','1048100.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002253.0','1022533.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090517.0','1048100.0','3', '3','1','1026.0', '3','1','1026.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002254.0','1022533.0','65', '59','35','93974.88', '57','27','65244.94', '29','20','28729.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090518.0','1048100.0','306', '271','134','194019.72', '252','57','93264.23', '158','98','100755.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003602.0', '2002255.0','1022533.0','4', '4','2','1176.22', '3','1','330.11', '3','1','846.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008091.0', '2090519.0','1048100.0','13', '12','5','4641.01', '12','2','2061.0', '5','3','2580.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002256.0','1022533.0','59', '46','21','35052.38', '44','12','24165.7', '22','13','10886.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090520.0','1048100.0','19', '18','6','6300.68', '17','3','3804.3', '10','5','2496.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002257.0','1022533.0','1', '1','1','2471.87', '1','1','1341.5', '1','1','1130.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090521.0','1048100.0','3', '3','1','1026.0', '3','1','1026.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3003600.0', '2002258.0','1022533.0','5', '5','4','6754.99', '5','2','2839.0', '5','3','3915.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3008089.0', '2090522.0','1048100.0','9', '8','6','8483.41', '8','3','5892.69', '3','3','2590.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002259.0','1022533.0','241', '199','83','115246.22', '190','30','58237.14', '109','62','57009.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090523.0','1048100.0','390', '338','182','299565.2', '325','69','142941.85', '210','141','156623.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002260.0','1022533.0','114', '94','41','97556.11', '90','19','45264.4', '58','31','52291.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090524.0','1048100.0','115', '106','51','58569.48', '102','10','21694.07', '69','43','36875.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002261.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090525.0','1044419.0','259', '239','160','175691.68', '219','42','52160.94', '173','135','123530.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002262.0','1018852.0','1', '1','1','8703.12', '1','1','898.0', '1','1','7805.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090526.0','1044419.0','266', '240','175','273610.49', '226','78','150458.81', '163','130','123151.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002263.0','1018852.0','49', '46','31','88261.39', '45','23','65610.67', '23','13','22650.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090527.0','1044419.0','111', '88','48','121326.77', '80','28','55467.29', '54','28','65859.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002264.0','1018852.0','2', '2','1','449.0', '2','1','449.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090528.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002265.0','1018852.0','105', '97','62','101300.07', '91','28','60947.72', '60','39','40352.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090529.0','1044419.0','2', '2','1','4538.72', '2','1','3576.0', '1','1','962.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002266.0','1018852.0','196', '176','111','236851.54', '163','64','148778.28', '126','77','88073.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090530.0','1044419.0','148', '125','70','194111.06', '118','55','105252.79', '78','38','88858.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002267.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090531.0','1044419.0','21', '19','11','21051.79', '19','4','10644.23', '15','10','10407.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002268.0','1018852.0','3', '3','3','1868.07', '3','1','687.0', '2','2','1181.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090532.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002269.0','1018852.0','69', '62','33','36153.26', '59','6','9582.14', '41','28','26571.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090533.0','1044419.0','167', '154','73','137747.04', '148','57','85795.24', '90','35','51951.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002270.0','1018852.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090534.0','1044419.0','135', '118','70','70944.94', '110','12','19328.19', '76','61','51616.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002271.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090535.0','1044419.0','30', '28','21','43934.78', '27','1','420.17', '25','21','43514.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002272.0','1018852.0','5', '5','3','1545.56', '5','2','696.06', '3','2','849.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090536.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002273.0','1018852.0','23', '20','18','19261.53', '16','6','8798.71', '16','14','10462.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090537.0','1044419.0','175', '158','88','125870.09', '149','42','57758.01', '89','61','68112.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002274.0','1018852.0','3', '2','2','2192.0', '2','2','2192.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090538.0','1044419.0','1', '1','1','1560.42', '1','0','0.0', '1','1','1560.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002275.0','1018852.0','26', '18','9','11200.53', '18','1','1260.0', '11','9','9940.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090539.0','1044419.0','239', '208','112','294488.61', '196','81','150876.13', '115','55','143612.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002276.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090540.0','1044419.0','2699', '2417','1425','2989537.69', '2315','759','1282144.09', '1603','1033','1707393.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002277.0','1018852.0','397', '372','256','401692.97', '354','121','212551.7', '276','193','189141.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090541.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002278.0','1018852.0','1', '1','1','11760.13', '1','1','1640.0', '1','1','10120.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090542.0','1044419.0','283', '260','144','179117.71', '242','43','57591.4', '164','121','121526.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002279.0','1018852.0','67', '63','34','43189.88', '58','9','19257.63', '45','29','23932.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090543.0','1044419.0','19', '17','12','14466.95', '15','2','4586.92', '15','11','9880.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002280.0','1018852.0','53', '39','20','25158.1', '36','5','10629.91', '26','17','14528.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090544.0','1044419.0','180', '153','72','94896.68', '141','28','44312.46', '89','53','50584.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002281.0','1018852.0','6', '6','4','9724.79', '6','3','8863.47', '3','1','861.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090545.0','1044419.0','2', '1','1','25600.0', '1','1','6450.0', '1','1','19150.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002282.0','1018852.0','1197', '1023','650','586006.43', '959','162','126579.97', '721','549','459426.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090546.0','1044419.0','1', '1','1','361.36', '1','1','361.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002283.0','1018852.0','89', '82','43','51312.49', '78','18','25626.3', '51','32','25686.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090547.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002284.0','1018852.0','1', '1','1','449.0', '1','1','449.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090548.0','1044419.0','58', '51','35','57803.22', '48','24','43417.25', '34','23','14385.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002285.0','1018852.0','1', '1','1','630.0', '1','1','630.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090549.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002286.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090550.0','1044419.0','122', '111','91','117374.24', '97','17','38847.07', '99','85','78527.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002287.0','1018852.0','49', '47','32','29013.6', '43','4','2867.26', '36','31','26146.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090551.0','1044419.0','38', '36','22','33969.45', '35','14','21197.36', '21','11','12772.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002288.0','1018852.0','1', '1','1','2506.77', '1','1','1275.0', '1','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090552.0','1044419.0','203', '180','105','211712.78', '174','69','111110.99', '121','62','100601.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002289.0','1018852.0','49', '46','24','31737.46', '45','6','14357.35', '29','19','17380.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090553.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002290.0','1018852.0','230', '214','147','316205.03', '208','92','196738.98', '147','101','119466.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090554.0','1044419.0','1', '1','1','500.0', '0','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002291.0','1018852.0','1', '1','1','912.02', '1','0','0.0', '1','1','912.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090555.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002292.0','1018852.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090556.0','1044419.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002293.0','1018852.0','279', '250','154','528563.81', '238','94','276010.7', '155','102','252553.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090557.0','1044419.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002294.0','1018852.0','35', '31','11','24679.36', '31','2','2839.0', '16','10','21840.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090558.0','1044419.0','19', '17','6','6203.92', '13','2','2965.22', '9','4','3238.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002295.0','1018852.0','25', '19','12','20697.06', '19','7','10843.29', '15','12','9853.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090559.0','1044419.0','42', '39','27','35759.35', '35','5','13859.06', '31','24','21900.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002296.0','1018852.0','51', '40','21','36852.04', '37','13','19718.52', '21','11','17133.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090560.0','1044419.0','60', '49','20','45551.02', '48','15','29535.79', '27','9','16015.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002297.0','1018852.0','2', '1','1','1351.47', '1','1','498.6', '1','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090561.0','1044419.0','560', '498','302','545497.05', '475','145','268942.98', '349','235','276554.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002298.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090562.0','1044419.0','4221', '3608','1998','4032458.14', '3480','1168','1710727.42', '1991','1292','2321730.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002299.0','1018852.0','13', '12','4','22848.37', '11','4','4406.76', '9','1','18441.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090563.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002300.0','1018852.0','1', '1','1','1640.0', '1','1','1640.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090564.0','1044419.0','321', '293','148','285239.85', '278','76','167299.93', '152','94','117939.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002301.0','1018852.0','1', '1','1','1231.77', '1','0','0.0', '1','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090565.0','1044419.0','12', '10','5','7490.17', '9','1','2252.38', '7','4','5237.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002302.0','1018852.0','218', '177','76','108142.51', '161','26','51282.33', '97','60','56860.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090566.0','1044419.0','98', '89','46','87187.55', '84','32','59991.68', '61','27','27195.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002303.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090567.0','1044419.0','3', '2','1','988.07', '2','0','0.0', '1','1','988.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002304.0','1018852.0','35', '31','17','33633.63', '29','15','27010.0', '18','11','6623.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090568.0','1044419.0','1', '1','1','7774.39', '1','1','5912.81', '1','1','1861.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002305.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090569.0','1044419.0','201', '172','66','85689.51', '164','28','46725.4', '80','50','38964.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002306.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090570.0','1044419.0','2', '2','1','50.7', '2','0','0.0', '1','1','50.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002307.0','1018852.0','10', '10','5','11165.39', '10','2','5549.0', '10','4','5616.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090571.0','1044419.0','1', '1','1','352.35', '0','0','0.0', '1','1','352.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002308.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090572.0','1044419.0','118', '88','40','62818.61', '77','27','33548.62', '46','22','29269.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002309.0','1018852.0','10', '10','4','4484.74', '9','1','554.18', '4','3','3930.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090573.0','1044419.0','137', '119','57','104343.95', '117','22','47851.06', '73','45','56492.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002310.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090574.0','1044419.0','64', '58','28','37299.09', '56','12','10845.81', '33','23','26453.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002311.0','1018852.0','91', '74','36','60919.0', '71','12','24620.65', '44','28','36298.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090575.0','1044419.0','1', '1','1','506.69', '1','1','506.69', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002312.0','1018852.0','28', '18','7','30256.02', '17','5','22205.48', '6','3','8050.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090576.0','1044419.0','23', '18','6','13759.31', '17','5','7610.0', '11','5','6149.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002313.0','1018852.0','442', '390','252','521085.42', '370','134','326897.81', '262','167','194187.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090577.0','1044419.0','1', '1','1','849.49', '1','0','0.0', '1','1','849.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002314.0','1018852.0','22', '18','10','8928.31', '18','2','2159.9', '9','8','6768.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090578.0','1044419.0','55', '50','40','56814.76', '49','16','32665.72', '37','28','24149.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002315.0','1018852.0','1', '1','1','3934.98', '1','1','3027.0', '1','1','907.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090579.0','1044419.0','81', '69','52','148982.07', '67','36','87750.03', '53','40','61232.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002316.0','1018852.0','500', '446','298','578537.75', '421','138','296629.81', '322','236','281907.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090580.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002317.0','1018852.0','25', '20','9','80678.2', '18','7','43194.2', '12','7','37484.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090581.0','1044419.0','1', '1','1','10986.21', '1','1','5649.0', '1','1','5337.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002318.0','1018852.0','4', '2','1','844.42', '1','0','0.0', '2','1','844.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090582.0','1044419.0','1', '1','1','3381.62', '1','1','1422.0', '1','1','1959.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002319.0','1018852.0','495', '466','360','1284650.64', '416','127','224319.67', '413','336','1060330.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090583.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002320.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090584.0','1044419.0','94', '81','51','94613.52', '79','39','56060.6', '47','23','38552.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002321.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090585.0','1044419.0','18', '17','13','15453.91', '16','5','7386.0', '12','9','8067.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002322.0','1018852.0','47', '46','34','131398.8', '44','26','55888.69', '34','20','75510.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090586.0','1044419.0','225', '206','118','393827.66', '202','86','295097.59', '127','68','98730.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002323.0','1018852.0','78', '62','41','57255.72', '61','7','16977.4', '46','38','40278.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090587.0','1044419.0','17', '15','11','39263.61', '14','10','33302.73', '8','6','5960.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002324.0','1018852.0','142', '96','58','163559.56', '91','45','121304.91', '56','33','42254.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090588.0','1044419.0','3', '2','1','1275.0', '2','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002325.0','1018852.0','144', '129','67','151207.48', '124','41','64641.13', '91','49','86566.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090589.0','1044419.0','5', '5','2','2042.39', '5','0','0.0', '3','2','2042.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002326.0','1018852.0','18', '15','8','21853.1', '14','4','14963.85', '8','6','6889.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090590.0','1044419.0','515', '442','249','336597.86', '415','66','107407.36', '299','214','229190.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002327.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090591.0','1044419.0','165', '146','99','168267.62', '140','45','73270.93', '106','74','94996.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002328.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090592.0','1044419.0','5', '4','3','23410.94', '3','1','11847.0', '4','3','11563.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002329.0','1018852.0','710', '663','398','1140250.58', '635','248','550032.41', '451','301','590218.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090593.0','1044419.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002330.0','1018852.0','3', '3','1','2522.89', '3','1','1098.0', '2','1','1424.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090594.0','1044419.0','18', '11','6','6925.8', '10','3','4055.89', '6','3','2869.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002331.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090595.0','1044419.0','19', '17','9','23970.34', '17','6','12691.82', '12','7','11278.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002332.0','1018852.0','206', '187','124','186585.09', '173','39','86855.44', '138','101','99729.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090596.0','1044419.0','43', '38','21','21840.34', '37','1','1275.0', '27','21','20565.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002333.0','1018852.0','28', '25','13','15196.99', '23','5','8455.89', '19','12','6741.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090597.0','1044419.0','12', '11','5','19420.76', '10','4','17579.82', '6','2','1840.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002334.0','1018852.0','3', '3','1','13494.97', '3','1','4499.14', '2','1','8995.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090598.0','1044419.0','207', '184','123','292528.69', '169','82','172734.55', '125','77','119794.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002335.0','1018852.0','761', '665','443','494804.41', '623','135','147713.04', '489','356','347091.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090599.0','1044419.0','26', '24','19','21371.08', '23','9','9418.82', '22','15','11952.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002336.0','1018852.0','9', '6','3','8916.94', '5','3','8916.94', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090600.0','1044419.0','3', '3','2','1236.94', '3','1','549.0', '2','1','687.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002337.0','1018852.0','208', '187','110','155558.9', '173','30','46706.26', '134','94','108852.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090601.0','1044419.0','1', '1','1','1939.6', '1','1','1939.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002338.0','1018852.0','307', '270','128','180850.7', '261','42','57467.12', '162','103','123383.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090602.0','1044419.0','1', '1','1','1252.67', '1','1','726.0', '1','1','526.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002339.0','1018852.0','690', '621','359','519192.77', '590','131','234774.02', '425','291','284418.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090603.0','1044419.0','1', '1','1','14778.93', '1','1','2482.0', '1','1','12296.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002340.0','1018852.0','1', '1','1','165.6', '1','1','165.6', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090604.0','1044419.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002341.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090605.0','1044419.0','1', '1','1','971.17', '1','0','0.0', '1','1','971.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002342.0','1018852.0','24', '21','10','23996.35', '21','8','20687.77', '12','3','3308.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090606.0','1044419.0','315', '291','158','384151.07', '280','120','209017.8', '220','112','175133.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002343.0','1018852.0','15', '14','8','14580.11', '13','2','4290.0', '14','8','10290.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090607.0','1044419.0','13', '10','7','8021.1', '8','1','3825.0', '7','7','4196.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002344.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090608.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002345.0','1018852.0','52', '43','23','45701.25', '39','12','30214.33', '30','15','15486.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090609.0','1044419.0','29', '29','20','32295.52', '28','12','14520.1', '23','15','17775.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002346.0','1018852.0','3', '3','3','8877.14', '3','3','7648.75', '2','1','1228.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090610.0','1044419.0','1', '1','1','949.8', '1','1','949.8', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002347.0','1018852.0','1', '1','1','6353.0', '1','1','6184.0', '1','1','169.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090611.0','1044419.0','259', '213','129','398787.85', '203','88','263083.4', '131','77','135704.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002348.0','1018852.0','22', '16','14','21170.47', '15','6','11131.02', '14','10','10039.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090612.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002349.0','1018852.0','1', '1','1','1098.0', '1','1','1098.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090613.0','1044419.0','1', '1','1','1098.0', '1','1','1098.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002350.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090614.0','1044419.0','64', '60','27','45687.01', '57','24','31693.11', '37','12','13993.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002351.0','1018852.0','20', '18','12','47745.82', '18','7','30908.29', '12','9','16837.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090615.0','1044419.0','34', '29','9','16777.39', '27','7','11085.63', '20','7','5691.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002352.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090616.0','1044419.0','3', '2','2','12285.45', '2','2','3934.0', '1','1','8351.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002353.0','1018852.0','3274', '2852','1574','2999486.97', '2775','871','1524756.83', '1600','1032','1474730.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090617.0','1044419.0','3', '3','1','937.37', '3','0','0.0', '2','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002354.0','1018852.0','1', '1','1','2149.24', '1','1','2149.24', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090618.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002355.0','1018852.0','1', '1','1','6610.88', '1','1','6610.88', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090619.0','1044419.0','58', '51','39','98749.4', '45','29','59901.0', '34','21','38848.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002356.0','1018852.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090620.0','1044419.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002357.0','1018852.0','13', '13','9','13507.72', '12','9','7396.0', '8','4','6111.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090621.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002358.0','1018852.0','3', '2','2','2815.28', '2','2','1642.66', '1','1','1172.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090622.0','1044419.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002359.0','1018852.0','1', '1','1','477.0', '1','1','477.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090623.0','1044419.0','12', '12','6','7002.34', '12','3','4459.4', '8','3','2542.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002360.0','1018852.0','23', '18','9','18758.65', '16','5','11006.1', '12','8','7752.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090624.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002361.0','1018852.0','1', '1','1','1147.27', '1','0','0.0', '1','1','1147.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090625.0','1044419.0','359', '321','157','225979.4', '302','45','81333.93', '193','126','144645.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002362.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090626.0','1044419.0','31', '29','21','41948.65', '28','8','20601.48', '22','16','21347.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002363.0','1018852.0','5', '1','1','954.27', '1','0','0.0', '1','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090627.0','1044419.0','3', '1','1','3616.74', '1','1','1406.64', '1','1','2210.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002364.0','1018852.0','357', '316','210','336134.6', '294','75','136404.67', '229','172','199729.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090628.0','1044419.0','626', '512','319','572914.81', '476','166','235310.2', '353','232','337604.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002365.0','1018852.0','5', '4','2','1974.79', '3','0','0.0', '3','2','1974.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090629.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002366.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090630.0','1044419.0','1', '1','1','954.27', '1','0','0.0', '1','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002367.0','1018852.0','1', '1','1','549.0', '1','1','549.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090631.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002368.0','1018852.0','1', '1','1','735.92', '1','1','735.92', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090632.0','1044419.0','1', '1','1','726.0', '1','1','726.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002369.0','1018852.0','3', '3','2','8937.75', '3','1','1808.0', '3','2','7129.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090633.0','1044419.0','116', '107','63','207559.31', '105','49','92861.77', '79','43','114697.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002370.0','1018852.0','14', '11','6','16053.16', '11','6','13702.89', '7','2','2350.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090634.0','1044419.0','25', '23','13','52037.93', '22','12','29475.26', '10','3','22562.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002371.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090635.0','1044419.0','8', '6','5','3318.09', '6','3','756.1', '3','3','2561.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002372.0','1018852.0','45', '39','20','40877.48', '37','11','30270.4', '24','13','10607.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090636.0','1044419.0','261', '232','172','206803.32', '217','56','68443.82', '179','140','138359.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002373.0','1018852.0','51', '43','24','75757.83', '42','19','39908.2', '20','12','35849.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090637.0','1044419.0','1', '1','1','1110.05', '1','1','1016.0', '1','1','94.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002374.0','1018852.0','6', '6','5','28368.96', '6','4','15668.16', '6','3','12700.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090638.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002375.0','1018852.0','407', '362','258','545331.25', '337','149','336901.52', '266','182','208429.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090639.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002376.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090640.0','1044419.0','766', '667','414','470077.19', '631','96','133909.29', '461','354','336167.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002377.0','1018852.0','12', '10','4','4382.38', '10','2','1478.67', '4','3','2903.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090641.0','1044419.0','55', '52','31','25780.89', '52','4','2196.0', '38','28','23584.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002378.0','1018852.0','35', '32','19','25979.08', '32','4','7417.02', '20','19','18562.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090642.0','1044419.0','1', '1','1','1422.0', '1','1','1422.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002379.0','1018852.0','153', '148','76','68013.5', '145','18','11735.01', '88','66','56278.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090643.0','1044419.0','1144', '964','471','656508.12', '917','181','259859.63', '547','365','396648.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002380.0','1018852.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090644.0','1044419.0','4', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002381.0','1018852.0','344', '319','231','609756.71', '280','70','144417.33', '283','215','465339.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090645.0','1044419.0','8', '6','2','7175.79', '5','2','6552.0', '5','1','623.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002382.0','1018852.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090646.0','1044419.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002383.0','1018852.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090647.0','1044419.0','7', '5','1','1536.0', '5','1','1036.0', '3','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002384.0','1018852.0','167', '151','91','257846.39', '146','60','182774.2', '87','60','75072.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090648.0','1044419.0','44', '34','19','26856.22', '31','11','17688.91', '20','13','9167.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002385.0','1018852.0','141', '129','76','193755.57', '121','57','104455.91', '99','51','89299.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090649.0','1044419.0','17', '11','6','6887.78', '11','2','3805.0', '7','4','3082.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002386.0','1018852.0','649', '554','337','516503.41', '523','127','241552.34', '367','259','274951.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090650.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002387.0','1018852.0','675', '597','349','601078.92', '572','160','266381.05', '403','257','334697.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090651.0','1044419.0','3', '3','2','8187.7', '3','2','8187.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002388.0','1018852.0','1', '1','1','1501.8', '1','1','1275.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090652.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002389.0','1018852.0','65', '56','41','127148.97', '54','30','87297.94', '44','32','39851.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090653.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002390.0','1018852.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090654.0','1044419.0','35', '33','17','16577.03', '33','9','7141.21', '20','14','9435.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002391.0','1018852.0','1', '1','1','2158.3', '1','1','1422.0', '1','1','736.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090655.0','1044419.0','20', '19','13','19490.93', '18','4','6929.72', '16','13','12561.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002392.0','1018852.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090656.0','1044419.0','45', '35','13','17341.51', '32','9','8448.64', '21','5','8892.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002393.0','1018852.0','26', '24','11','12157.81', '24','3','3413.44', '12','9','8744.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090657.0','1044419.0','6', '6','3','18410.6', '6','2','5756.0', '4','3','12654.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002394.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090658.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002395.0','1018852.0','14', '13','12','51944.53', '12','9','35248.0', '9','7','16696.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090659.0','1044419.0','1', '1','1','13176.22', '1','1','1026.0', '1','1','12150.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002396.0','1018852.0','148', '128','48','89221.11', '122','26','35301.94', '66','30','53919.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090660.0','1044419.0','9', '7','4','3946.91', '7','2','2327.0', '5','3','1619.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002397.0','1018852.0','5', '5','4','4253.79', '4','3','3630.0', '3','1','623.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090661.0','1044419.0','532', '472','224','448693.59', '451','119','228921.07', '252','160','219772.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002398.0','1018852.0','1', '1','1','2843.44', '1','1','2843.44', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090662.0','1044419.0','45', '38','15','16631.17', '37','3','7161.0', '18','13','9470.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002399.0','1018852.0','114', '98','48','111521.28', '93','29','64929.23', '55','28','46592.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090663.0','1044419.0','13', '10','6','20952.09', '9','3','17545.68', '8','4','3406.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002400.0','1018852.0','1', '1','1','895.12', '1','0','0.0', '1','1','895.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090664.0','1044419.0','2', '1','1','1113.47', '1','0','0.0', '1','1','1113.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002401.0','1018852.0','15', '10','1','837.66', '10','0','0.0', '1','1','837.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090665.0','1044419.0','1', '1','1','653.81', '1','0','0.0', '1','1','653.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002402.0','1018852.0','44', '34','18','20217.27', '33','9','11190.65', '18','10','9026.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090666.0','1044419.0','324', '299','215','607470.34', '274','52','81956.87', '265','204','525513.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002403.0','1018852.0','1', '1','1','903.57', '1','0','0.0', '1','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090667.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002404.0','1018852.0','67', '54','33','94838.83', '51','18','40642.88', '41','23','54195.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090668.0','1044419.0','22', '19','13','19999.67', '18','7','14418.83', '12','10','5580.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002405.0','1018852.0','5', '1','1','726.0', '1','1','726.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090669.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002406.0','1018852.0','1', '1','1','1260.0', '1','1','1260.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090670.0','1044419.0','19', '19','12','15186.79', '18','6','9811.0', '9','6','5375.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002407.0','1018852.0','1', '1','1','1231.77', '1','0','0.0', '1','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090671.0','1044419.0','32', '28','17','26313.31', '28','7','12388.0', '19','14','13925.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002408.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090672.0','1044419.0','618', '561','379','1164374.2', '528','220','680731.8', '422','285','483642.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002409.0','1018852.0','338', '300','153','222148.25', '284','61','98251.84', '161','121','123896.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090673.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002410.0','1018852.0','1', '1','1','2500.0', '1','1','2500.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090674.0','1044419.0','2', '2','1','9225.24', '2','1','1036.0', '2','1','8189.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002411.0','1018852.0','1', '1','1','848.65', '1','0','0.0', '1','1','848.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090675.0','1044419.0','378', '335','226','536875.21', '321','150','333969.15', '224','132','202906.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002412.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090676.0','1044419.0','1', '1','1','1422.0', '1','1','1422.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002413.0','1018852.0','264', '247','130','330219.34', '232','76','139478.17', '184','95','190741.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090677.0','1044419.0','1964', '1600','912','1937021.76', '1519','471','838576.63', '984','645','1098445.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002310.0','1018852.0','31', '25','20','46502.62', '25','13','29998.63', '15','12','16503.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090574.0','1044419.0','3', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002414.0','1018852.0','302', '268','145','237637.97', '255','69','144354.73', '163','102','93283.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090678.0','1044419.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002415.0','1018852.0','1', '1','1','12524.76', '1','1','2811.94', '1','1','9712.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090679.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002416.0','1018852.0','1', '1','1','549.0', '1','1','549.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090680.0','1044419.0','2', '2','1','837.66', '2','0','0.0', '2','1','837.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002417.0','1018852.0','17', '14','11','38678.5', '13','6','20430.01', '10','10','18248.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002418.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090682.0','1044419.0','2012', '1778','803','1207008.74', '1749','470','720359.21', '773','474','486649.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002419.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090683.0','1044419.0','1', '1','1','350.52', '1','0','0.0', '1','1','350.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002420.0','1018852.0','4', '3','1','11652.0', '2','1','11652.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090684.0','1044419.0','66', '56','27','92037.65', '52','14','41758.36', '30','19','50279.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002421.0','1018852.0','57', '52','31','56657.51', '49','10','19791.79', '37','25','36865.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090685.0','1044419.0','69', '63','44','175594.47', '62','32','98054.45', '46','30','77540.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002422.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090686.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002423.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090687.0','1044419.0','8', '7','5','32859.52', '7','4','23574.0', '5','3','9285.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002424.0','1018852.0','1', '1','1','3664.0', '1','1','3664.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090688.0','1044419.0','84', '74','40','80291.5', '73','24','43595.37', '46','28','36696.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002425.0','1018852.0','7', '6','3','6927.64', '6','3','6273.83', '2','1','653.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090689.0','1044419.0','1', '1','1','1096.57', '1','0','0.0', '1','1','1096.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002426.0','1018852.0','802', '698','327','413765.59', '668','121','142575.38', '390','244','271190.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090690.0','1044419.0','54', '47','36','56014.5', '44','20','30129.65', '28','22','25884.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002427.0','1018852.0','1', '1','1','688.5', '1','1','688.5', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090691.0','1044419.0','56', '52','38','89520.94', '50','17','53976.04', '38','30','35544.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002429.0','1018852.0','17', '13','8','29273.15', '12','7','10342.92', '7','5','18930.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090693.0','1044419.0','17', '16','10','9588.92', '16','0','0.0', '11','10','9588.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002430.0','1018852.0','1', '1','1','370.45', '1','0','0.0', '1','1','370.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090694.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002431.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090695.0','1044419.0','11', '9','4','13222.74', '9','4','9166.32', '5','2','4056.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002432.0','1018852.0','106', '100','62','140186.42', '91','16','28673.82', '89','59','111512.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090696.0','1044419.0','4', '2','1','118.3', '1','0','0.0', '2','1','118.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002433.0','1018852.0','100', '90','61','155242.31', '87','42','85304.56', '63','46','69937.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090697.0','1044419.0','2328', '2136','1269','1820275.62', '2071','352','608292.58', '1410','1104','1211983.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002434.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090698.0','1044419.0','6', '5','2','4650.56', '5','2','3208.0', '1','1','1442.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002435.0','1018852.0','4', '3','2','7352.29', '2','1','2550.0', '3','1','4802.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090699.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002436.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090700.0','1044419.0','4', '3','1','630.0', '3','1','630.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002437.0','1018852.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090701.0','1044419.0','187', '167','102','347172.32', '161','78','172929.23', '100','59','174243.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002438.0','1018852.0','1', '1','1','1518.7', '1','1','1275.0', '1','1','243.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090702.0','1044419.0','7', '7','3','2702.1', '6','1','2550.0', '3','2','152.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002439.0','1018852.0','10', '8','6','4097.09', '8','2','968.6', '6','5','3128.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090703.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002440.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090704.0','1044419.0','1', '1','1','1036.0', '1','1','1036.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002441.0','1018852.0','68', '58','39','98055.96', '55','22','61128.96', '41','31','36927.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090705.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002442.0','1018852.0','2293', '2094','1132','1781670.78', '2030','453','742577.81', '1231','853','1039092.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090706.0','1044419.0','1', '1','1','895.12', '1','0','0.0', '1','1','895.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002443.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090707.0','1044419.0','4', '4','2','2482.15', '4','1','1416.0', '3','1','1066.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002444.0','1018852.0','60', '58','36','83905.82', '54','29','50893.14', '31','21','33012.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090708.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002445.0','1018852.0','52', '42','18','36422.99', '41','7','11447.7', '26','13','24975.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090709.0','1044419.0','751', '660','404','926294.78', '616','244','358405.32', '486','281','567889.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002446.0','1018852.0','2', '2','2','11309.58', '2','2','3934.0', '2','2','7375.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090710.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002447.0','1018852.0','1', '1','1','5486.17', '1','1','1544.72', '1','1','3941.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090711.0','1044419.0','1', '1','1','549.0', '1','1','549.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002448.0','1018852.0','1', '1','1','7799.28', '1','1','1452.0', '1','1','6347.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090712.0','1044419.0','68', '59','38','69705.45', '56','20','51471.98', '36','21','18233.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002449.0','1018852.0','7', '5','1','2979.84', '4','1','2727.0', '3','1','252.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090713.0','1044419.0','1', '1','1','1348.97', '1','1','513.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002450.0','1018852.0','1870', '1740','1055','1605447.43', '1689','313','546239.29', '1162','900','1059208.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090714.0','1044419.0','1', '1','1','4045.37', '1','1','2915.0', '1','1','1130.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002451.0','1018852.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090715.0','1044419.0','138', '128','73','89886.49', '124','21','30866.51', '83','55','59019.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002452.0','1018852.0','28', '27','13','22580.32', '25','4','11711.07', '18','12','10869.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090716.0','1044419.0','44', '40','24','111707.85', '34','18','53151.46', '28','16','58556.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002453.0','1018852.0','8', '7','6','16796.98', '7','2','8905.0', '6','5','7891.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090717.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002454.0','1018852.0','614', '496','269','346654.38', '451','96','113003.1', '320','207','233651.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090718.0','1044419.0','560', '480','299','418034.58', '457','158','221207.78', '330','204','196826.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002455.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090719.0','1044419.0','5157', '4678','2711','4180453.42', '4502','1072','1618640.57', '2939','2104','2561812.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002456.0','1018852.0','1', '1','1','4677.09', '1','0','0.0', '1','1','4677.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090720.0','1044419.0','443', '419','318','1258530.2', '387','156','325803.04', '377','286','932727.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002457.0','1018852.0','187', '170','112','224053.23', '158','74','125208.0', '125','73','98845.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090721.0','1044419.0','46', '35','15','33048.76', '33','14','22348.95', '14','6','10699.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002458.0','1018852.0','166', '146','93','254775.53', '136','50','90955.03', '104','68','163820.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090722.0','1044419.0','739', '689','478','1129536.86', '607','249','477883.49', '583','378','651653.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002459.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090723.0','1044419.0','61', '54','27','55343.96', '54','23','33873.22', '31','11','21470.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002460.0','1018852.0','40', '35','16','28352.56', '24','7','7644.98', '27','13','20707.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090724.0','1044419.0','220', '194','137','368498.95', '180','69','145951.95', '150','113','222547.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002461.0','1018852.0','499', '465','271','647986.57', '442','182','294817.55', '321','186','353169.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090725.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002462.0','1018852.0','26', '22','14','46875.14', '21','7','10999.5', '13','10','35875.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090726.0','1044419.0','219', '194','109','398910.36', '178','66','139591.86', '134','84','259318.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002463.0','1018852.0','2340', '2222','1593','3671104.43', '2089','856','1462055.82', '1790','1276','2209048.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090727.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002464.0','1018852.0','7', '5','3','9131.16', '5','1','1808.0', '3','3','7323.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090728.0','1044419.0','12', '8','6','21175.11', '7','4','7942.2', '4','4','13232.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002465.0','1018852.0','69', '58','37','78724.5', '58','34','64055.49', '32','12','14669.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090729.0','1044419.0','2', '2','1','3196.39', '1','0','0.0', '2','1','3196.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002466.0','1018852.0','17', '15','7','24285.37', '15','6','16749.78', '11','4','7535.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090730.0','1044419.0','1', '1','1','1712.89', '1','0','0.0', '1','1','1712.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002467.0','1018852.0','60', '53','23','70547.37', '52','16','32270.39', '32','16','38276.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090731.0','1044419.0','8', '6','5','8671.71', '6','5','7806.73', '4','2','864.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002468.0','1018852.0','21', '15','7','7851.74', '14','6','6825.07', '6','1','1026.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090732.0','1044419.0','18', '12','7','17512.39', '11','3','4330.0', '6','5','13182.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002469.0','1018852.0','71', '45','20','45876.25', '42','10','13710.48', '25','13','32165.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090733.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002470.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090734.0','1044419.0','1', '1','1','1117.94', '1','1','214.37', '1','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002471.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090735.0','1044419.0','1071', '1007','534','1167281.64', '952','353','609159.41', '685','359','558122.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002472.0','1018852.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090736.0','1044419.0','1', '1','1','972.0', '1','1','972.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002473.0','1018852.0','16', '12','6','9640.12', '12','2','4335.12', '5','5','5305.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090737.0','1044419.0','700', '666','345','643053.76', '637','246','408159.42', '433','188','234894.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002474.0','1018852.0','110', '89','49','58756.59', '75','16','22127.56', '56','36','36629.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090738.0','1044419.0','3', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002475.0','1018852.0','4', '4','2','4812.44', '3','1','2527.09', '3','2','2285.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090739.0','1044419.0','11', '10','5','20359.94', '7','3','12387.6', '4','2','7972.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002476.0','1018852.0','1', '1','1','4547.87', '1','1','1016.0', '1','1','3531.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090740.0','1044419.0','1', '1','1','1830.56', '1','1','687.0', '1','1','1143.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002477.0','1018852.0','50', '35','16','31564.39', '33','11','20841.53', '23','11','10722.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090741.0','1044419.0','9', '5','1','1275.0', '5','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002478.0','1018852.0','4', '3','1','73.33', '3','1','73.33', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090742.0','1044419.0','14', '8','6','12175.49', '7','3','4356.0', '7','4','7819.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002479.0','1018852.0','37', '26','15','31488.2', '24','8','16009.81', '16','12','15478.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090743.0','1044419.0','2', '2','1','11652.0', '2','1','11652.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002480.0','1018852.0','32', '22','9','15526.59', '21','7','11345.56', '11','3','4181.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090744.0','1044419.0','262', '238','146','443649.86', '210','65','131510.64', '197','129','312139.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002481.0','1018852.0','436', '400','239','526078.74', '364','146','254420.86', '290','171','271657.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090745.0','1044419.0','238', '216','113','286377.79', '206','77','126143.14', '127','77','160234.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002482.0','1018852.0','84', '63','43','140559.38', '57','29','48351.48', '43','30','92207.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090746.0','1044419.0','1365', '1300','860','1957581.59', '1236','571','1059976.09', '979','608','897605.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002483.0','1018852.0','28', '22','10','26025.01', '22','5','9593.55', '9','7','16431.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090747.0','1044419.0','7', '3','2','6776.49', '3','2','3521.42', '2','2','3255.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002484.0','1018852.0','55', '45','17','36017.27', '42','11','19167.69', '22','10','16849.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090748.0','1044419.0','39', '30','20','54732.9', '26','13','19666.11', '24','17','35066.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002485.0','1018852.0','62', '24','14','40692.89', '22','9','23432.15', '13','9','17260.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090749.0','1044419.0','1', '1','1','371.63', '1','0','0.0', '1','1','371.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002486.0','1018852.0','86', '80','55','164481.66', '75','30','57025.2', '64','43','107456.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090750.0','1044419.0','81', '68','28','87264.25', '66','16','30053.02', '37','20','57211.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002487.0','1018852.0','1', '1','1','889.59', '0','0','0.0', '1','1','889.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090751.0','1044419.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002488.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090752.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002489.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090753.0','1044419.0','1', '1','1','169.0', '1','0','0.0', '1','1','169.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002490.0','1018852.0','1', '1','1','2537.22', '1','0','0.0', '1','1','2537.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090754.0','1044419.0','1113', '1051','721','1586536.17', '987','430','767812.79', '817','561','818723.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002491.0','1018852.0','1', '1','1','2935.23', '1','1','1808.0', '1','1','1127.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090755.0','1044419.0','35', '30','20','58530.38', '27','10','17973.2', '24','13','40557.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002492.0','1018852.0','18', '8','6','11516.13', '7','5','8971.1', '6','3','2545.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090756.0','1044419.0','24', '22','14','43870.57', '20','9','19017.79', '12','10','24852.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002493.0','1018852.0','2', '1','1','5826.0', '1','1','5826.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090757.0','1044419.0','21', '19','8','28679.36', '18','7','20805.2', '8','4','7874.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002494.0','1018852.0','11', '8','1','1264.32', '8','0','0.0', '2','1','1264.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090758.0','1044419.0','240', '210','115','275762.89', '200','66','108410.24', '149','88','167352.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002495.0','1018852.0','1', '1','1','14271.57', '1','0','0.0', '1','1','14271.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090759.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002496.0','1018852.0','430', '394','283','822714.97', '370','154','293098.9', '318','232','529616.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090760.0','1044419.0','49', '44','25','55301.07', '39','12','23474.46', '27','19','31826.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002497.0','1018852.0','24', '17','4','2900.73', '17','2','768.67', '6','2','2132.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090761.0','1044419.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002498.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090762.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002499.0','1018852.0','5', '5','2','618.76', '4','0','0.0', '5','2','618.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090763.0','1044419.0','1', '1','1','1808.0', '1','1','1808.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002500.0','1018852.0','25', '24','18','54984.83', '23','11','20252.31', '18','13','34732.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090764.0','1044419.0','168', '147','71','180526.79', '140','45','78959.3', '83','52','101567.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002501.0','1018852.0','29', '22','8','37090.52', '20','7','19681.51', '13','7','17409.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090765.0','1044419.0','1', '1','1','1691.01', '1','1','1452.0', '1','1','239.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002502.0','1018852.0','4', '3','1','2438.07', '3','1','2438.07', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090766.0','1044419.0','6', '3','2','3230.99', '2','1','2482.0', '2','1','748.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002503.0','1018852.0','1855', '1757','1050','2018573.93', '1670','755','1184441.75', '1347','666','834132.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090767.0','1044419.0','1', '1','1','623.79', '1','0','0.0', '1','1','623.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002504.0','1018852.0','23', '23','17','47139.36', '23','13','24008.09', '16','12','23131.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090768.0','1044419.0','1', '1','1','5362.13', '1','1','1452.0', '1','1','3910.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002505.0','1018852.0','27', '27','19','26930.69', '25','5','12908.72', '21','16','14021.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090769.0','1044419.0','1', '1','1','1640.0', '1','1','1640.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002506.0','1018852.0','310', '270','156','287714.59', '251','58','88495.48', '177','130','199219.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090770.0','1044419.0','69', '61','25','48515.75', '58','18','28253.02', '24','12','20262.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002507.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090771.0','1044419.0','5', '5','3','2670.01', '4','2','1542.78', '4','1','1127.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002508.0','1018852.0','21', '12','5','5564.57', '11','4','4535.0', '9','1','1029.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090772.0','1044419.0','59', '49','16','24152.69', '42','7','8016.02', '29','11','16136.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002509.0','1018852.0','352', '316','161','408876.86', '300','113','211723.58', '204','110','197153.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090773.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002510.0','1018852.0','56', '51','34','76948.51', '50','31','58039.98', '30','14','18908.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090774.0','1044419.0','1', '1','1','11652.0', '1','1','11652.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002511.0','1018852.0','38', '37','27','66900.77', '32','16','28024.0', '32','20','38876.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090775.0','1044419.0','1', '1','1','1237.41', '0','0','0.0', '1','1','1237.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002512.0','1018852.0','14', '13','7','18149.24', '13','5','8276.35', '8','5','9872.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090776.0','1044419.0','160', '142','81','176689.28', '123','23','41870.6', '122','74','134818.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002513.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090777.0','1044419.0','1', '1','1','2057.43', '1','0','0.0', '1','1','2057.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002514.0','1018852.0','950', '914','660','1283553.65', '841','273','411876.4', '750','561','871677.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090778.0','1044419.0','12', '10','6','12212.94', '10','5','9794.23', '5','2','2418.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002515.0','1018852.0','348', '332','190','480071.22', '299','91','139432.83', '284','155','340638.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090779.0','1044419.0','18', '14','8','28312.42', '14','5','13887.24', '9','6','14425.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002516.0','1018852.0','76', '54','36','97169.08', '51','21','37487.14', '42','30','59681.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090780.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002517.0','1018852.0','87', '86','46','78745.33', '78','28','40661.12', '58','26','38084.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090781.0','1044419.0','1', '1','1','364.7', '1','0','0.0', '1','1','364.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002518.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090782.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002519.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090783.0','1044419.0','14', '4','3','7114.37', '3','3','3637.2', '3','2','3477.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002520.0','1018852.0','1', '1','1','563.62', '1','0','0.0', '1','1','563.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090784.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002521.0','1018852.0','2', '2','1','1123.79', '2','0','0.0', '2','1','1123.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090785.0','1044419.0','1', '1','1','912.02', '1','0','0.0', '1','1','912.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002522.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090786.0','1044419.0','16', '12','10','61630.29', '12','9','47988.55', '7','4','13641.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002523.0','1018852.0','7', '7','5','4113.67', '7','1','264.14', '4','4','3849.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090787.0','1044419.0','2189', '2048','1318','3238934.48', '1904','800','1535161.14', '1588','958','1703773.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002524.0','1018852.0','1', '1','1','2762.97', '1','1','1452.0', '1','1','1310.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090788.0','1044419.0','18', '15','6','12682.79', '13','4','6763.26', '7','4','5919.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002525.0','1018852.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090789.0','1044419.0','460', '419','256','614069.8', '387','154','222843.63', '301','188','391226.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002526.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090790.0','1044419.0','1', '1','1','6552.0', '1','1','6552.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002527.0','1018852.0','276', '256','126','267183.13', '236','70','103224.23', '171','96','163958.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090791.0','1044419.0','18', '15','13','27860.16', '14','11','22977.59', '7','4','4882.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002528.0','1018852.0','5', '5','5','8113.36', '5','2','5153.34', '5','5','2960.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090792.0','1044419.0','5', '5','2','521.17', '5','1','470.47', '3','1','50.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002529.0','1018852.0','835', '766','389','889554.85', '731','251','432064.89', '454','256','457489.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090793.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002530.0','1018852.0','96', '89','71','347730.69', '84','44','87507.3', '78','61','260223.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090794.0','1044419.0','1', '1','1','3729.58', '1','1','2482.0', '1','1','1247.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002531.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090795.0','1044419.0','97', '92','58','90355.05', '81','21','49032.67', '64','40','41322.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002532.0','1018852.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090796.0','1044419.0','1017', '937','530','779486.35', '893','167','368379.47', '614','437','411106.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002533.0','1018852.0','1', '1','1','7462.6', '1','1','1640.0', '1','1','5822.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090797.0','1044419.0','2', '2','1','1079.67', '2','0','0.0', '1','1','1079.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002534.0','1018852.0','1', '1','1','1640.0', '1','1','1640.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090798.0','1044419.0','428', '365','155','306263.43', '358','64','127098.75', '183','115','179164.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002535.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090799.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002536.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090800.0','1044419.0','1469', '1336','926','2306372.65', '1297','784','1342550.17', '860','481','963822.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002537.0','1018852.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090801.0','1044419.0','956', '884','532','1337717.21', '865','417','897982.34', '500','267','439734.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002538.0','1018852.0','1', '1','1','1016.0', '1','1','1016.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090802.0','1044419.0','30', '28','8','15927.39', '25','3','9050.69', '15','7','6876.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002539.0','1018852.0','1', '1','1','937.37', '1','0','0.0', '1','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090803.0','1044419.0','7', '6','5','3787.66', '6','5','3787.66', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002540.0','1018852.0','359', '305','186','264227.23', '281','74','116531.04', '203','142','147696.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090804.0','1044419.0','1634', '1422','734','1156286.22', '1379','444','665048.38', '763','430','491237.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002541.0','1018852.0','6', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090805.0','1044419.0','3', '3','2','2939.58', '3','2','2939.58', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002542.0','1018852.0','1', '1','1','1594.8', '1','1','638.84', '1','1','955.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090806.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002543.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090807.0','1044419.0','296', '250','98','99858.76', '240','22','21831.89', '125','81','78026.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002544.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090808.0','1044419.0','66', '54','31','49274.98', '48','15','34262.07', '37','17','15012.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002545.0','1018852.0','192', '157','74','197453.27', '156','44','86460.54', '77','52','110992.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090809.0','1044419.0','3319', '3078','1621','1804158.41', '2982','401','555442.21', '1856','1378','1248716.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002546.0','1018852.0','3', '3','2','1891.64', '3','0','0.0', '3','2','1891.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090810.0','1044419.0','1', '1','1','140.24', '1','1','140.24', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002547.0','1018852.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090811.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002548.0','1018852.0','1330', '1251','656','1243495.2', '1227','367','697694.32', '693','420','545800.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090812.0','1044419.0','1495', '1308','440','512452.58', '1274','131','196028.05', '552','345','316424.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002549.0','1018852.0','1', '1','1','1374.0', '1','1','1374.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090813.0','1044419.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002550.0','1018852.0','1', '1','1','920.47', '1','0','0.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090814.0','1044419.0','13', '11','9','16749.4', '11','6','10184.33', '7','5','6565.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002551.0','1018852.0','1', '1','1','1182.76', '1','0','0.0', '1','1','1182.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090815.0','1044419.0','1', '1','1','1644.46', '1','0','0.0', '1','1','1644.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002552.0','1018852.0','386', '254','130','172558.05', '225','58','59088.23', '159','94','113469.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090816.0','1044419.0','70', '66','27','32813.68', '63','7','7887.54', '32','25','24926.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002553.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090817.0','1044419.0','984', '873','432','689737.79', '839','197','284199.89', '526','311','405537.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002554.0','1018852.0','70', '66','35','41953.78', '64','7','11695.47', '44','32','30258.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090818.0','1044419.0','1059', '993','431','823047.79', '976','312','479110.36', '448','210','343937.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002555.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090819.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002556.0','1018852.0','674', '645','416','638664.98', '626','163','319305.56', '439','331','319359.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090820.0','1044419.0','824', '703','278','375969.15', '662','95','153284.88', '360','213','222684.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002557.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090821.0','1044419.0','3', '2','1','1004.97', '2','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002558.0','1018852.0','2588', '2386','1591','2053191.6', '2279','428','686572.3', '1825','1426','1366619.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090822.0','1044419.0','4', '4','2','1995.0', '4','2','1995.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002559.0','1018852.0','1', '1','1','1604.04', '1','1','1604.04', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090823.0','1044419.0','3192', '2950','1809','3016028.09', '2839','921','1540019.94', '1937','1313','1476008.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002560.0','1018852.0','2', '2','2','6705.68', '2','2','5210.0', '1','1','1495.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090824.0','1044419.0','1', '1','1','888.36', '1','0','0.0', '1','1','888.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002561.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090825.0','1044419.0','515', '449','248','610680.19', '429','160','281890.96', '258','158','328789.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002562.0','1018852.0','1946', '1744','812','1809930.71', '1681','474','787276.85', '1114','571','1022653.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090826.0','1044419.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002563.0','1018852.0','571', '514','222','339674.93', '502','90','170893.15', '293','164','168781.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090827.0','1044419.0','1', '1','1','4438.63', '1','1','4438.63', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002564.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090828.0','1044419.0','4', '4','2','2977.57', '4','1','2074.0', '2','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002565.0','1018852.0','1', '1','1','2844.61', '1','1','1640.0', '1','1','1204.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090829.0','1044419.0','4', '3','1','1260.0', '3','1','1260.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002566.0','1018852.0','68', '59','29','47850.3', '54','22','34182.62', '33','10','13667.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090830.0','1044419.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002567.0','1018852.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090831.0','1044419.0','2', '2','1','1378.0', '1','0','0.0', '1','1','1378.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002568.0','1018852.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090832.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002569.0','1018852.0','670', '589','278','475702.36', '571','149','272196.56', '371','173','203505.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090833.0','1044419.0','591', '468','187','346405.61', '448','114','233414.58', '194','102','112991.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002570.0','1018852.0','97', '78','35','55418.1', '71','12','27151.94', '47','27','28266.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090834.0','1044419.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002571.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090835.0','1044419.0','35', '33','21','55046.09', '32','16','35216.06', '22','15','19830.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002572.0','1018852.0','597', '557','360','575013.27', '530','139','308077.12', '389','274','266936.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090836.0','1044419.0','3', '3','2','1995.0', '3','2','1995.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002573.0','1018852.0','3', '3','1','1181.07', '3','0','0.0', '1','1','1181.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090837.0','1044419.0','26', '25','22','19866.4', '22','2','3017.27', '21','21','16849.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002574.0','1018852.0','151', '123','46','45846.6', '119','25','29231.92', '54','25','16614.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090838.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002575.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090839.0','1044419.0','232', '201','124','347004.94', '196','93','248147.91', '98','55','98857.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002576.0','1018852.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090840.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002577.0','1018852.0','759', '717','374','906662.8', '707','274','471663.84', '425','195','434998.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090841.0','1044419.0','65', '58','36','62203.84', '56','13','27949.72', '42','31','34254.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002578.0','1018852.0','883', '769','301','372988.95', '743','97','151104.56', '354','236','221884.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090842.0','1044419.0','2', '2','1','1275.0', '2','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002579.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090843.0','1044419.0','7', '6','2','1646.04', '6','1','464.97', '3','1','1181.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002580.0','1018852.0','130', '112','58','122126.44', '104','30','50309.22', '66','43','71817.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090844.0','1044419.0','1', '1','1','665.0', '1','1','665.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002581.0','1018852.0','15', '13','9','19353.42', '13','3','14413.0', '10','8','4940.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090845.0','1044419.0','1', '1','1','8121.3', '1','1','6015.0', '1','1','2106.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002582.0','1018852.0','393', '337','122','119045.34', '328','36','40133.16', '147','91','78912.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090846.0','1044419.0','2186', '1896','1005','1372085.75', '1833','391','609298.04', '1132','745','762787.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002583.0','1018852.0','917', '793','356','479397.22', '768','150','220847.12', '417','257','258550.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090847.0','1044419.0','1', '1','1','20537.07', '1','1','11530.0', '1','1','9007.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002584.0','1018852.0','1', '1','1','1073.12', '1','1','178.0', '1','1','895.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090848.0','1044419.0','2', '2','1','1004.97', '2','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002585.0','1018852.0','2507', '2337','985','1787087.84', '2284','501','1079898.51', '1157','630','707189.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090849.0','1044419.0','708', '640','360','401875.72', '614','100','122869.43', '434','299','279006.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002586.0','1018852.0','1573', '1478','1010','3117492.93', '1429','634','1452131.32', '1068','705','1665361.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090850.0','1044419.0','2', '2','1','665.0', '2','1','665.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002587.0','1018852.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090851.0','1044419.0','23', '22','15','12035.36', '21','1','665.0', '18','15','11370.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002588.0','1018852.0','2', '2','2','2605.0', '2','2','2605.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090852.0','1044419.0','3042', '2631','1501','2767125.19', '2532','856','1553865.28', '1551','967','1213259.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002589.0','1018852.0','638', '594','320','283090.79', '571','65','56723.95', '365','284','226366.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090853.0','1044419.0','2', '1','1','1813.42', '1','1','665.0', '1','1','1148.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002590.0','1018852.0','2', '1','1','512.84', '0','0','0.0', '1','1','512.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090854.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002591.0','1018852.0','154', '141','94','279330.02', '135','66','183766.42', '82','46','95563.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090855.0','1044419.0','1345', '1238','668','1683889.53', '1173','447','770141.57', '905','444','913747.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002592.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090856.0','1044419.0','105', '97','70','77034.44', '94','13','26757.79', '84','64','50276.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002593.0','1018852.0','33', '28','13','16894.39', '25','4','8122.13', '22','11','8772.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090857.0','1044419.0','1', '1','1','1640.0', '1','1','1640.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002594.0','1018852.0','20', '13','3','1673.43', '12','2','1202.57', '3','2','470.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090858.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002595.0','1018852.0','243', '229','135','267427.19', '220','105','186437.59', '136','69','80989.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090859.0','1044419.0','8', '7','1','6474.0', '7','1','6474.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002596.0','1018852.0','1', '1','1','687.0', '1','1','687.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090860.0','1044419.0','301', '271','101','133815.2', '261','19','21707.13', '127','90','112108.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002597.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090861.0','1044419.0','262', '250','193','350234.54', '243','115','223037.22', '180','137','127197.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002598.0','1018852.0','498', '394','176','278202.37', '387','79','91012.99', '198','128','187189.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090862.0','1044419.0','1', '1','1','9112.94', '1','1','1374.0', '1','1','7738.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002599.0','1018852.0','1', '1','1','869.77', '1','0','0.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090863.0','1044419.0','496', '438','230','484579.58', '412','110','235122.09', '262','173','249457.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002600.0','1018852.0','1', '1','1','1075.3', '1','1','1075.3', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090864.0','1044419.0','122', '100','40','59183.27', '96','20','35145.06', '51','28','24038.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002601.0','1018852.0','2847', '2654','1727','4307283.22', '2485','916','1931393.94', '1931','1264','2375889.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090865.0','1044419.0','159', '152','101','378079.75', '147','78','206282.99', '94','58','171796.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002602.0','1018852.0','77', '55','26','19844.12', '53','2','280.51', '34','25','19563.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090866.0','1044419.0','1504', '1433','1034','1132886.7', '1370','200','263057.09', '1146','966','869829.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002603.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090867.0','1044419.0','10', '6','3','6203.38', '6','3','6203.38', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002604.0','1018852.0','1', '1','1','1633.43', '1','0','0.0', '1','1','1633.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090868.0','1044419.0','1', '1','1','500.0', '1','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002605.0','1018852.0','7', '2','1','1836.41', '2','0','0.0', '1','1','1836.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090869.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002606.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090870.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002607.0','1018852.0','194', '182','99','112803.83', '180','23','42772.37', '116','87','70031.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090871.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002608.0','1018852.0','2', '2','1','14674.37', '2','1','5100.0', '1','1','9574.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090872.0','1044419.0','10', '7','2','1983.24', '7','0','0.0', '2','2','1983.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002609.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090873.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002610.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090874.0','1044419.0','406', '347','183','205034.77', '328','47','61162.24', '208','152','143872.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002611.0','1018852.0','153', '130','69','142960.77', '125','55','113758.0', '59','29','29202.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090875.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002612.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090876.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002613.0','1018852.0','3', '3','2','1781.79', '3','0','0.0', '2','2','1781.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090877.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002614.0','1018852.0','34', '29','15','24051.89', '27','7','13689.43', '17','13','10362.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090878.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002615.0','1018852.0','4', '4','2','1012.56', '3','1','286.76', '2','2','725.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090879.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002616.0','1018852.0','402', '357','196','312365.61', '352','99','174607.88', '179','129','137757.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090880.0','1044419.0','33', '24','8','20836.28', '22','3','10961.84', '6','6','9874.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002617.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090881.0','1044419.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002618.0','1018852.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090882.0','1044419.0','39', '37','26','47348.28', '34','14','29418.16', '27','18','17930.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002619.0','1018852.0','8', '6','5','11829.22', '6','5','6870.0', '5','2','4959.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090883.0','1044419.0','103', '100','66','147706.84', '89','29','72597.1', '67','50','75109.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002620.0','1018852.0','5', '5','3','13350.0', '5','3','13350.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090884.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002621.0','1018852.0','1', '1','1','1760.04', '1','1','1350.0', '1','1','410.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090885.0','1044419.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002622.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090886.0','1044419.0','1448', '1380','718','1567224.22', '1359','533','834416.21', '827','394','732808.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002623.0','1018852.0','29', '26','14','21730.74', '26','7','6789.31', '16','13','14941.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090887.0','1044419.0','1', '1','1','1076.0', '1','1','1076.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002624.0','1018852.0','1503', '1386','767','1373773.06', '1351','520','900492.66', '758','403','473280.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090888.0','1044419.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002625.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090889.0','1044419.0','452', '392','228','352590.85', '380','89','131829.52', '263','180','220761.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002626.0','1018852.0','21', '18','8','9289.62', '17','6','6799.31', '5','3','2490.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090890.0','1044419.0','67', '66','33','50445.32', '64','18','27301.0', '35','19','23144.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002627.0','1018852.0','4', '1','1','2175.0', '1','1','665.0', '1','1','1510.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090891.0','1044419.0','54', '44','31','33411.16', '40','11','19346.6', '28','20','14064.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002628.0','1018852.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090892.0','1044419.0','1', '1','1','449.99', '0','0','0.0', '1','1','449.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002629.0','1018852.0','317', '221','80','189092.88', '211','58','141072.28', '81','38','48020.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090893.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002630.0','1018852.0','1', '1','1','920.47', '1','0','0.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090894.0','1044419.0','217', '203','143','268114.92', '199','87','180003.47', '140','102','88111.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002631.0','1018852.0','3', '3','1','3308.32', '2','1','2184.0', '3','1','1124.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090895.0','1044419.0','505', '476','195','230702.46', '468','60','78498.48', '248','154','152203.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002632.0','1018852.0','15', '14','7','12396.06', '13','5','7165.69', '9','5','5230.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090896.0','1044419.0','572', '525','301','562495.78', '508','171','348463.55', '299','184','214032.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002634.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090898.0','1044419.0','1', '1','1','3695.4', '1','1','1374.0', '1','1','2321.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002635.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090899.0','1044419.0','555', '477','184','185041.38', '464','62','69812.52', '204','133','115228.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002636.0','1018852.0','1218', '1037','553','970936.02', '994','276','447631.43', '635','377','523304.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090900.0','1044419.0','31', '24','8','13236.38', '22','5','10037.88', '13','4','3198.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002637.0','1018852.0','696', '634','347','629311.19', '615','154','345947.42', '369','240','283363.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090901.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002638.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090902.0','1044419.0','294', '265','176','312014.49', '243','81','178066.31', '181','127','133948.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002639.0','1018852.0','19', '15','13','38187.48', '15','7','9688.0', '11','9','28499.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090903.0','1044419.0','15', '13','6','9722.18', '10','2','4852.13', '8','5','4870.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002640.0','1018852.0','6', '4','0','0.0', '4','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090904.0','1044419.0','4', '4','3','2632.97', '4','0','0.0', '3','3','2632.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002641.0','1018852.0','2', '2','2','2312.92', '1','0','0.0', '2','2','2312.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090905.0','1044419.0','45', '40','20','27791.49', '38','9','13249.4', '23','16','14542.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002642.0','1018852.0','272', '260','159','149787.83', '252','16','13933.87', '184','151','135853.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090906.0','1044419.0','25', '24','11','21006.84', '23','4','5728.5', '14','9','15278.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002643.0','1018852.0','850', '799','434','432102.43', '778','116','113874.86', '512','379','318227.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090907.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002644.0','1018852.0','804', '736','444','793702.92', '714','217','452604.93', '466','307','341097.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090908.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002645.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090909.0','1044419.0','4', '3','1','835.97', '3','0','0.0', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002646.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090910.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002647.0','1018852.0','1', '1','1','3477.45', '1','1','1640.0', '1','1','1837.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090911.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002648.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090912.0','1044419.0','2056', '1832','844','1586798.27', '1782','487','832501.11', '858','480','754297.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002649.0','1018852.0','3', '3','2','2748.0', '3','2','2748.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090913.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002650.0','1018852.0','1', '1','1','1374.0', '1','1','1374.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090914.0','1044419.0','50', '47','19','18649.85', '42','2','4569.0', '23','17','14080.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002651.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090915.0','1044419.0','6', '4','2','18346.0', '3','1','11846.0', '3','1','6500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002652.0','1018852.0','1117', '957','533','1236023.71', '914','323','548137.55', '597','358','687886.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090916.0','1044419.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002653.0','1018852.0','1', '1','1','4881.3', '1','1','1330.0', '1','1','3551.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090917.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002654.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090918.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002655.0','1018852.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090919.0','1044419.0','14', '14','12','56080.53', '14','11','23802.61', '11','10','32277.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002656.0','1018852.0','3989', '3481','1907','4458430.71', '3328','1246','2240493.67', '2131','1256','2217937.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090920.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002657.0','1018852.0','882', '794','432','753991.87', '761','250','389224.21', '527','291','364767.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090921.0','1044419.0','1961', '1663','889','1603646.34', '1614','516','934880.41', '945','567','668765.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002658.0','1018852.0','1', '1','1','687.0', '1','1','687.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090922.0','1044419.0','1', '1','1','920.47', '1','0','0.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002659.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090923.0','1044419.0','1', '1','1','723.11', '1','1','723.11', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002660.0','1018852.0','1', '1','1','19031.97', '1','1','7560.0', '1','1','11471.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090924.0','1044419.0','711', '658','366','677950.2', '640','207','352226.39', '382','239','325723.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002661.0','1018852.0','101', '74','44','83726.04', '69','29','47979.92', '42','24','35746.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090925.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002662.0','1018852.0','2644', '2454','1033','1260156.72', '2409','284','462212.74', '1292','853','797943.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090926.0','1044419.0','1', '1','1','362.61', '1','1','362.61', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002663.0','1018852.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090927.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002664.0','1018852.0','2955', '2637','1322','3036037.93', '2577','914','1839785.94', '1339','728','1196251.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090928.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002665.0','1018852.0','1265', '1172','455','838940.3', '1145','245','437000.52', '600','309','401939.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090929.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002666.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090930.0','1044419.0','2', '2','1','4394.65', '2','1','1330.0', '1','1','3064.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002667.0','1018852.0','3', '2','1','4442.0', '1','1','4442.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090931.0','1044419.0','1255', '1063','650','1190117.52', '1018','289','507021.45', '666','473','683096.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002668.0','1018852.0','2', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090932.0','1044419.0','4', '4','2','2585.48', '3','0','0.0', '3','2','2585.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002669.0','1018852.0','1', '1','1','571.46', '1','0','0.0', '1','1','571.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090933.0','1044419.0','1', '1','1','1330.0', '1','1','1330.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002670.0','1018852.0','1', '1','1','5469.93', '1','1','4498.76', '1','1','971.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090934.0','1044419.0','1', '1','1','1261.29', '1','1','1261.29', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002671.0','1018852.0','391', '331','194','290800.88', '321','90','154995.76', '207','132','135805.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090935.0','1044419.0','183', '144','58','81353.32', '136','32','52280.62', '61','30','29072.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002672.0','1018852.0','7', '7','6','14974.32', '7','5','13091.13', '2','2','1883.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090936.0','1044419.0','1', '1','1','4896.64', '1','1','665.0', '1','1','4231.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002673.0','1018852.0','4', '3','3','1406.71', '3','1','392.1', '2','2','1014.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090937.0','1044419.0','8', '7','5','10891.63', '7','5','7766.19', '5','3','3125.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002674.0','1018852.0','57', '55','27','75650.96', '53','21','41231.0', '36','14','34419.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090938.0','1044419.0','5', '4','2','7119.94', '4','1','2469.0', '2','2','4650.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002675.0','1018852.0','388', '260','153','254822.92', '240','77','146522.74', '152','99','108300.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090939.0','1044419.0','3057', '2735','1326','1901120.02', '2655','485','651440.65', '1444','1008','1249679.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002676.0','1018852.0','1', '1','1','6500.0', '0','0','0.0', '1','1','6500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090940.0','1044419.0','42', '35','17','30477.88', '35','10','13620.22', '20','12','16857.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002677.0','1018852.0','1', '1','1','6454.69', '1','1','2514.0', '1','1','3940.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090941.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002678.0','1018852.0','4', '4','1','1401.95', '2','0','0.0', '3','1','1401.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090942.0','1044419.0','225', '206','91','85908.37', '200','17','21879.76', '119','78','64028.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002679.0','1018852.0','2221', '2059','1326','2913949.09', '1990','739','1343271.62', '1409','953','1570677.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090943.0','1044419.0','2', '2','1','1383.21', '2','0','0.0', '1','1','1383.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002680.0','1018852.0','1', '1','1','1640.0', '1','1','1640.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090944.0','1044419.0','1', '1','1','1907.47', '1','1','1275.0', '1','1','632.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002681.0','1018852.0','522', '469','299','459082.81', '447','101','163261.12', '323','244','295821.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090945.0','1044419.0','575', '508','269','275765.26', '493','57','63515.87', '303','235','212249.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002682.0','1018852.0','329', '313','210','452344.74', '298','111','243199.55', '222','160','209145.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090946.0','1044419.0','2322', '2079','1132','1668246.63', '2008','478','732671.61', '1249','863','935575.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002683.0','1018852.0','45', '41','26','99163.16', '40','21','51552.96', '34','21','47610.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090947.0','1044419.0','4', '4','2','3301.44', '4','2','3301.44', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002684.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090948.0','1044419.0','1', '1','1','5300.86', '1','1','4405.74', '1','1','895.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002685.0','1018852.0','11', '9','3','2736.41', '9','1','996.87', '5','2','1739.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090949.0','1044419.0','1', '1','1','9540.24', '1','1','2624.0', '1','1','6916.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002686.0','1018852.0','73', '57','28','68583.51', '55','20','40568.8', '29','14','28014.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090950.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002687.0','1018852.0','327', '301','177','426196.38', '292','131','245370.65', '200','103','180825.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090951.0','1044419.0','1', '1','1','1330.0', '1','1','1330.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002688.0','1018852.0','1', '1','1','7308.04', '1','1','6430.0', '1','1','878.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090952.0','1044419.0','5', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002689.0','1018852.0','336', '293','168','469294.46', '278','143','329199.7', '144','77','140094.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090953.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002690.0','1018852.0','28', '18','5','10439.24', '16','5','8980.4', '10','2','1458.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090954.0','1044419.0','62', '50','28','46086.29', '50','12','17539.21', '34','22','28547.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002691.0','1018852.0','28', '24','13','10384.67', '21','2','1635.89', '17','12','8748.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090955.0','1044419.0','9', '9','5','5918.92', '8','2','2385.34', '5','4','3533.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002692.0','1018852.0','879', '819','350','749033.53', '806','262','470499.47', '419','178','278534.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090956.0','1044419.0','1', '1','1','954.27', '1','0','0.0', '1','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002693.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090957.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002694.0','1018852.0','751', '649','396','650649.01', '626','182','310669.81', '406','288','339979.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090958.0','1044419.0','3402', '3087','1904','5104653.56', '2993','1336','2628466.1', '1993','1179','2476187.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002695.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090959.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002696.0','1018852.0','506', '361','214','217803.59', '337','51','55904.58', '253','180','161899.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090960.0','1044419.0','664', '596','319','544985.69', '571','135','301937.94', '336','225','243047.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002697.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090961.0','1044419.0','57', '46','16','34690.52', '46','10','30952.89', '18','6','3737.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002699.0','1018852.0','139', '130','76','133807.45', '125','33','74848.5', '78','55','58958.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090963.0','1044419.0','32', '29','23','29851.46', '27','9','15997.06', '24','19','13854.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002700.0','1018852.0','2283', '1930','1007','1892359.76', '1860','544','895076.53', '1122','661','997283.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090964.0','1044419.0','4', '2','1','665.0', '1','1','665.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002701.0','1018852.0','130', '108','47','94144.6', '101','30','49366.04', '58','22','44778.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090965.0','1044419.0','1241', '1082','450','535402.2', '1053','155','216944.23', '519','346','318457.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002702.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090966.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002703.0','1018852.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090967.0','1044419.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002704.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090968.0','1044419.0','1211', '1071','468','1011323.43', '1023','341','577943.93', '654','250','433379.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002705.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090969.0','1044419.0','52', '46','23','31358.73', '44','10','16686.07', '29','14','14672.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002706.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090970.0','1044419.0','195', '157','67','94121.48', '148','17','28675.84', '86','58','65445.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002707.0','1018852.0','43', '37','25','103222.88', '36','20','61166.81', '25','14','42056.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090971.0','1044419.0','17', '14','9','16478.76', '14','7','11900.65', '9','5','4578.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002708.0','1018852.0','26', '18','6','8722.64', '15','4','7405.65', '7','3','1316.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090972.0','1044419.0','4', '3','1','944.82', '3','1','944.82', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002709.0','1018852.0','87', '72','46','61562.37', '69','21','30478.49', '49','32','31083.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090973.0','1044419.0','1959', '1737','930','1786924.62', '1692','494','939270.13', '965','612','847654.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002710.0','1018852.0','491', '439','240','291635.88', '428','70','77302.78', '270','196','214333.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090974.0','1044419.0','867', '777','328','615346.04', '730','204','306338.85', '448','196','309007.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002711.0','1018852.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090975.0','1044419.0','16', '13','6','7961.31', '12','3','3778.84', '8','5','4182.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002712.0','1018852.0','1', '1','1','7284.0', '1','1','7284.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090976.0','1044419.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002713.0','1018852.0','82', '75','49','113584.29', '70','28','67816.32', '55','34','45767.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090977.0','1044419.0','469', '425','232','539055.68', '406','159','303428.28', '286','161','235627.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002714.0','1018852.0','136', '127','83','273225.24', '124','57','187828.99', '79','54','85396.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090978.0','1044419.0','1', '1','1','3421.38', '1','1','1646.0', '1','1','1775.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002715.0','1018852.0','2631', '2295','1282','2542264.24', '2200','739','1398327.38', '1453','875','1143936.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090979.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002716.0','1018852.0','1', '1','1','3311.62', '1','1','3311.62', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090980.0','1044419.0','102', '91','51','109917.71', '87','34','68686.5', '52','32','41231.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002717.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090981.0','1044419.0','196', '176','119','317805.93', '173','87','222464.19', '83','53','95341.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002718.0','1018852.0','1', '1','1','3032.22', '1','1','3032.22', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090982.0','1044419.0','22', '20','14','35337.66', '18','5','8646.0', '18','12','26691.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002719.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090983.0','1044419.0','72', '59','42','44269.26', '50','13','14582.85', '47','35','29686.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002720.0','1018852.0','1', '1','1','1646.0', '1','1','1646.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090984.0','1044419.0','1', '1','1','856.25', '1','0','0.0', '1','1','856.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002721.0','1018852.0','1', '1','1','632.47', '1','0','0.0', '1','1','632.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090985.0','1044419.0','117', '87','45','106998.61', '74','23','38118.9', '65','29','68879.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002722.0','1018852.0','1', '1','1','873.33', '1','1','873.33', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090986.0','1044419.0','3858', '3443','1837','3714315.63', '3323','1155','2260260.05', '1893','1067','1454055.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002723.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090987.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002724.0','1018852.0','4', '4','3','2814.14', '4','0','0.0', '3','3','2814.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090988.0','1044419.0','31', '24','7','10246.02', '21','3','7445.4', '15','4','2800.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002725.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090989.0','1044419.0','1233', '1101','602','1142786.54', '1049','294','581318.51', '700','431','561468.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002726.0','1018852.0','6', '6','3','7223.22', '5','3','6152.0', '4','1','1071.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090990.0','1044419.0','822', '755','432','642425.29', '739','245','366396.72', '444','271','276028.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002727.0','1018852.0','536', '487','232','366882.66', '471','108','229679.69', '259','160','137202.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090991.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002728.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090992.0','1044419.0','1', '1','1','869.77', '1','0','0.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002729.0','1018852.0','1', '1','1','972.27', '1','1','68.7', '1','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090993.0','1044419.0','154', '118','56','139815.33', '114','42','101651.85', '44','21','38163.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002730.0','1018852.0','201', '185','100','100748.31', '179','19','21009.35', '128','86','79738.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090994.0','1044419.0','1285', '1191','718','1485638.82', '1155','447','780638.47', '760','454','705000.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002731.0','1018852.0','1', '1','1','1209.96', '1','1','204.99', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090995.0','1044419.0','3', '3','1','7759.46', '3','1','6474.0', '1','1','1285.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002732.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090996.0','1044419.0','1', '1','1','10414.51', '1','1','1646.0', '1','1','8768.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002733.0','1018852.0','9', '9','7','7724.15', '8','4','4306.0', '7','5','3418.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090997.0','1044419.0','251', '175','80','86027.63', '160','15','16296.9', '109','67','69730.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002734.0','1018852.0','1', '1','1','1562.0', '1','1','1562.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090998.0','1044419.0','6', '6','5','4436.51', '6','2','1330.0', '4','4','3106.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002735.0','1018852.0','1', '1','1','19540.9', '1','1','6662.0', '1','1','12878.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2090999.0','1044419.0','1', '1','1','1747.93', '1','0','0.0', '1','1','1747.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002736.0','1018852.0','8', '4','2','2279.97', '3','1','1275.0', '3','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091000.0','1044419.0','1', '1','1','2167.9', '1','1','2167.9', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002737.0','1018852.0','41', '31','11','11220.5', '31','7','7836.14', '10','5','3384.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091001.0','1044419.0','10', '10','8','60387.86', '10','8','24423.05', '7','6','35964.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002738.0','1018852.0','4', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091002.0','1044419.0','2', '2','1','6430.0', '2','1','6430.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002739.0','1018852.0','362', '330','219','561528.18', '317','128','311006.44', '227','151','250521.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091003.0','1044419.0','15', '13','4','18039.15', '13','4','15880.28', '2','1','2158.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002740.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091004.0','1044419.0','10', '10','4','2922.3', '10','3','2060.98', '5','1','861.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002741.0','1018852.0','51', '44','18','37978.68', '40','15','32681.59', '14','6','5297.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091005.0','1044419.0','3', '2','1','630.0', '1','1','630.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002742.0','1018852.0','39', '37','22','33584.38', '34','12','13918.62', '21','13','19665.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091006.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002743.0','1018852.0','7', '3','2','6549.0', '3','2','6549.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091007.0','1044419.0','23', '21','10','13411.15', '20','3','7123.0', '12','7','6288.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002744.0','1018852.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091008.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002745.0','1018852.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091009.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002746.0','1018852.0','1', '1','1','665.0', '1','1','665.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091010.0','1044419.0','11', '8','7','6028.99', '8','2','1905.0', '7','6','4123.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002747.0','1018852.0','223', '205','140','449296.41', '197','111','321525.41', '111','66','127771.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091011.0','1044419.0','33', '31','9','7158.13', '28','1','630.0', '18','8','6528.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002748.0','1018852.0','297', '274','147','351677.98', '265','117','270800.66', '139','55','80877.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091012.0','1044419.0','97', '90','59','142974.9', '82','35','87340.72', '60','37','55634.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002749.0','1018852.0','109', '83','39','67671.01', '79','23','52782.06', '45','21','14888.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091013.0','1044419.0','5', '3','1','630.0', '3','1','630.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002750.0','1018852.0','2301', '1940','1055','2981089.86', '1855','750','1406415.09', '1160','690','1574674.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091014.0','1044419.0','12', '10','3','4889.32', '9','3','4232.46', '5','1','656.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002751.0','1018852.0','10', '7','4','8217.02', '7','3','7526.3', '3','2','690.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091015.0','1044419.0','10', '9','5','26907.09', '8','5','24728.0', '4','1','2179.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002752.0','1018852.0','109', '93','42','101161.48', '90','30','72919.8', '49','19','28241.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091016.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002753.0','1018852.0','2', '2','1','1868.5', '2','1','1275.0', '1','1','593.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091017.0','1044419.0','1', '1','1','1260.0', '1','1','1260.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002754.0','1018852.0','41', '34','14','21922.96', '32','6','14388.64', '18','9','7534.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091018.0','1044419.0','1', '1','1','228.49', '1','0','0.0', '1','1','228.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002755.0','1018852.0','25', '14','2','587.84', '14','0','0.0', '3','2','587.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091019.0','1044419.0','247', '230','133','237395.56', '218','88','135537.84', '158','79','101857.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002756.0','1018852.0','133', '108','65','119661.15', '98','31','68471.36', '66','47','51189.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091020.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002757.0','1018852.0','1', '1','1','169.0', '1','0','0.0', '1','1','169.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091021.0','1044419.0','21', '16','9','9108.6', '14','1','1562.0', '13','9','7546.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002758.0','1018852.0','25', '20','10','20840.99', '19','6','12858.27', '11','7','7982.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091022.0','1044419.0','2', '2','1','1243.98', '1','0','0.0', '1','1','1243.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002759.0','1018852.0','1', '1','1','11273.67', '1','1','1260.0', '1','1','10013.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091023.0','1044419.0','1447', '1246','706','1791602.28', '1189','528','1012465.6', '729','396','779136.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002760.0','1018852.0','11', '10','4','10875.84', '10','4','10282.34', '4','1','593.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091024.0','1044419.0','4', '4','2','1309.89', '4','1','304.92', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002761.0','1018852.0','6', '4','2','2422.83', '3','1','2074.0', '3','1','348.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091025.0','1044419.0','377', '339','139','362471.31', '332','110','251687.94', '146','62','110783.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002762.0','1018852.0','45', '41','24','64152.62', '40','19','28090.84', '26','13','36061.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091026.0','1044419.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002763.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091027.0','1044419.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002764.0','1018852.0','2331', '1896','947','1987622.13', '1825','627','1134162.17', '991','527','853459.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091028.0','1044419.0','86', '75','37','56797.13', '75','26','40158.25', '32','16','16638.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002765.0','1018852.0','3', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091029.0','1044419.0','5', '5','3','6646.76', '5','3','4076.99', '2','2','2569.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002766.0','1018852.0','1', '1','1','1000.0', '0','0','0.0', '1','1','1000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091030.0','1044419.0','415', '359','205','234348.6', '335','48','75075.49', '231','176','159273.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002767.0','1018852.0','301', '232','91','104574.46', '217','31','29542.8', '121','69','75031.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091031.0','1044419.0','9', '7','4','10972.44', '7','3','7714.81', '4','4','3257.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002768.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091032.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002769.0','1018852.0','153', '116','68','136082.79', '108','29','55882.01', '80','55','80200.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091033.0','1044419.0','3', '3','2','1857.84', '3','0','0.0', '2','2','1857.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002770.0','1018852.0','54', '40','23','48545.14', '37','10','19839.07', '25','19','28706.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091034.0','1044419.0','3025', '2760','1379','1447577.23', '2680','271','352438.98', '1651','1214','1095138.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002771.0','1018852.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091035.0','1044419.0','1763', '1550','882','1201257.82', '1479','271','361718.06', '1054','752','839539.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002772.0','1018852.0','1', '1','1','954.27', '1','0','0.0', '1','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091036.0','1044419.0','231', '212','85','206876.75', '209','64','156168.46', '88','38','50708.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002773.0','1018852.0','81', '70','34','41424.6', '68','10','17022.29', '35','25','24402.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091037.0','1044419.0','157', '140','100','271041.74', '134','72','198510.68', '96','63','72531.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002774.0','1018852.0','17', '9','4','3349.64', '9','0','0.0', '4','4','3349.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091038.0','1044419.0','100', '80','38','83023.36', '71','21','40545.66', '52','28','42477.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002775.0','1018852.0','44', '39','19','32365.43', '38','9','24156.56', '17','11','8208.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091039.0','1044419.0','63', '53','17','19375.3', '46','4','6987.31', '30','15','12387.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002776.0','1018852.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091040.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002777.0','1018852.0','58', '55','39','112661.88', '54','34','90797.26', '21','13','21864.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091041.0','1044419.0','39', '32','19','27597.15', '28','10','15297.92', '17','11','12299.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002778.0','1018852.0','56', '52','29','53275.28', '51','21','32188.55', '33','20','21086.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091042.0','1044419.0','1', '1','1','1260.0', '1','1','1260.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002779.0','1018852.0','34', '31','10','6663.49', '28','2','1124.55', '16','8','5538.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091043.0','1044419.0','40', '39','15','19076.89', '35','7','10898.08', '19','10','8178.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002780.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091044.0','1044419.0','5', '3','1','5765.0', '3','1','5765.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002781.0','1018852.0','10', '9','4','3379.37', '9','0','0.0', '4','4','3379.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091045.0','1044419.0','110', '103','64','147035.51', '97','37','98954.66', '63','41','48080.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002782.0','1018852.0','36', '31','16','39133.58', '31','7','21835.82', '18','12','17297.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091046.0','1044419.0','82', '73','29','35432.85', '69','7','7202.77', '32','23','28230.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002783.0','1018852.0','1', '1','1','903.57', '1','0','0.0', '1','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091047.0','1044419.0','1', '1','1','937.37', '1','0','0.0', '1','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002784.0','1018852.0','438', '415','303','813731.39', '401','200','453789.35', '304','196','359942.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091048.0','1044419.0','858', '804','518','1231981.98', '777','338','605178.68', '532','336','626803.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002785.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091049.0','1044419.0','97', '67','20','84432.3', '64','16','50390.59', '18','8','34041.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002786.0','1018852.0','26', '24','15','47380.62', '24','10','23004.46', '17','12','24376.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091050.0','1044419.0','357', '322','179','233599.38', '306','49','73863.21', '215','156','159736.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002787.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091051.0','1044419.0','450', '414','236','548376.19', '398','135','302743.23', '258','160','245632.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002788.0','1018852.0','2', '2','1','3905.86', '2','1','1562.0', '1','1','2343.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091052.0','1044419.0','4', '2','1','1275.0', '2','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002789.0','1018852.0','26', '23','14','14844.14', '21','4','5297.0', '16','12','9547.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091053.0','1044419.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002790.0','1018852.0','584', '520','305','569164.24', '493','209','327695.35', '326','174','241468.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091054.0','1044419.0','9', '9','6','33020.6', '9','6','11056.37', '6','4','21964.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002791.0','1018852.0','4', '3','1','918.0', '3','1','918.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091055.0','1044419.0','350', '332','213','537606.19', '322','171','285750.67', '221','121','251855.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002792.0','1018852.0','5', '5','2','2265.72', '5','1','282.48', '4','2','1983.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091056.0','1044419.0','19', '19','11','29544.85', '19','10','17595.18', '13','7','11949.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002793.0','1018852.0','2', '2','2','1940.69', '2','0','0.0', '2','2','1940.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091057.0','1044419.0','5', '4','1','459.0', '3','1','459.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002794.0','1018852.0','1', '1','1','24612.58', '1','1','10200.0', '1','1','14412.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091058.0','1044419.0','184', '168','113','197279.58', '164','51','92849.9', '109','89','104429.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002795.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091059.0','1044419.0','3', '3','1','9300.95', '3','1','1114.0', '1','1','8186.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002796.0','1018852.0','509', '467','281','241130.52', '443','37','40356.58', '311','259','200773.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091060.0','1044419.0','192', '179','121','190638.48', '172','48','73702.92', '131','95','116935.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002797.0','1018852.0','1', '1','1','5227.1', '1','1','1328.03', '1','1','3899.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091061.0','1044419.0','165', '150','94','132704.78', '141','42','58402.5', '107','76','74302.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002798.0','1018852.0','505', '450','307','515426.05', '423','144','236627.17', '332','245','278798.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091062.0','1044419.0','3', '3','1','2229.27', '3','1','1275.0', '1','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002799.0','1018852.0','483', '449','242','368128.88', '432','138','230837.2', '237','146','137291.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091063.0','1044419.0','641', '584','363','773769.22', '571','216','429816.8', '355','246','343952.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002800.0','1018852.0','629', '581','340','407028.61', '560','110','160848.91', '372','276','246179.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091064.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002801.0','1018852.0','32', '30','3','6758.7', '29','1','5100.0', '12','3','1658.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091065.0','1044419.0','1', '1','1','9687.84', '1','1','1260.0', '1','1','8427.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002803.0','1018852.0','8', '8','5','17475.57', '7','4','16356.0', '5','2','1119.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091067.0','1044419.0','1', '1','1','1139.61', '1','1','1139.61', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002804.0','1018852.0','7', '7','7','13997.46', '7','6','9806.19', '4','3','4191.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091068.0','1044419.0','35', '31','24','48902.03', '31','8','21161.22', '25','20','27740.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002805.0','1018852.0','1', '1','1','2257.64', '1','1','1076.13', '1','1','1181.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091069.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002806.0','1018852.0','8', '8','2','8509.7', '8','1','1820.0', '3','2','6689.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091070.0','1044419.0','681', '631','346','348608.35', '606','62','78393.4', '381','301','270214.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002807.0','1018852.0','34', '32','20','53948.41', '30','12','20381.75', '23','13','33566.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091071.0','1044419.0','8', '7','5','8600.41', '7','3','7174.48', '6','3','1425.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002808.0','1018852.0','148', '131','99','205415.84', '121','52','120282.21', '103','82','85133.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091072.0','1044419.0','1', '1','1','920.47', '1','0','0.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002809.0','1018852.0','17', '15','5','10763.34', '15','3','6331.0', '7','4','4432.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091073.0','1044419.0','1', '1','1','16329.91', '1','1','1471.69', '1','1','14858.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002810.0','1018852.0','97', '94','76','291415.53', '94','55','121392.14', '88','63','170023.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091074.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002811.0','1018852.0','4', '3','3','4081.17', '3','3','3570.33', '3','2','510.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091075.0','1044419.0','17', '13','5','26791.78', '13','4','22220.0', '3','2','4571.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002812.0','1018852.0','908', '833','539','956968.43', '807','263','375764.92', '577','422','581203.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091076.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002813.0','1018852.0','27', '23','17','34624.37', '23','10','22701.68', '14','10','11922.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091077.0','1044419.0','87', '79','54','136087.42', '77','32','60843.17', '58','40','75244.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002814.0','1018852.0','257', '224','129','200397.48', '209','64','97226.2', '140','90','103171.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091078.0','1044419.0','1', '1','1','1685.85', '1','1','1036.0', '1','1','649.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002815.0','1018852.0','10', '9','6','11724.75', '9','5','5666.4', '3','2','6058.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091079.0','1044419.0','18', '17','15','32706.83', '17','14','27865.96', '11','5','4840.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002816.0','1018852.0','295', '274','173','429423.91', '264','130','257592.98', '173','98','171830.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091080.0','1044419.0','5', '2','1','1266.96', '2','1','459.0', '1','1','807.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002817.0','1018852.0','671', '642','431','1034976.43', '625','302','573768.29', '454','256','461208.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091081.0','1044419.0','52', '50','27','55498.74', '47','17','27687.78', '31','20','27810.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002818.0','1018852.0','108', '98','46','63998.52', '95','23','28429.8', '52','31','35568.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091082.0','1044419.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002819.0','1018852.0','490', '452','253','464251.78', '433','183','261884.08', '261','135','202367.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091083.0','1044419.0','5', '4','2','772.38', '4','0','0.0', '4','2','772.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002820.0','1018852.0','1197', '1112','648','1257144.34', '1064','331','524609.18', '761','488','732535.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091084.0','1044419.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002821.0','1018852.0','23', '23','14','35270.72', '23','10','16710.76', '13','10','18559.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091085.0','1044419.0','148', '135','85','221432.38', '132','63','120225.52', '89','50','101206.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002822.0','1018852.0','43', '42','35','134534.08', '41','30','56771.65', '34','29','77762.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091086.0','1044419.0','701', '624','415','615451.57', '585','231','353926.05', '429','301','261525.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002823.0','1018852.0','1', '1','1','714.45', '1','1','621.18', '1','1','93.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091087.0','1044419.0','16', '10','4','3602.91', '10','2','2389.0', '6','3','1213.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002824.0','1018852.0','58', '55','35','50353.74', '52','19','32328.22', '37','23','18025.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091088.0','1044419.0','3', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002825.0','1018852.0','241', '220','127','201390.59', '204','49','102353.26', '148','101','99037.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091089.0','1044419.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002826.0','1018852.0','77', '71','45','51596.26', '65','17','22985.68', '49','36','28610.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091090.0','1044419.0','3', '3','2','1079.67', '3','0','0.0', '3','2','1079.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002827.0','1018852.0','625', '518','274','328597.51', '495','89','122750.11', '310','214','205847.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091091.0','1044419.0','24', '23','14','41061.46', '22','12','26637.6', '15','9','14423.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002828.0','1018852.0','411', '392','206','400732.35', '384','154','193921.2', '224','105','206811.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091092.0','1044419.0','397', '354','218','370942.48', '332','99','180438.18', '240','159','190504.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002829.0','1018852.0','71', '62','21','34817.8', '60','14','24044.52', '27','12','10773.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091093.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002830.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091094.0','1044419.0','250', '222','159','195401.43', '214','56','88141.64', '165','135','107259.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002831.0','1018852.0','135', '132','100','201970.73', '131','56','100177.99', '105','75','101792.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091095.0','1044419.0','327', '311','173','502668.03', '290','87','147566.74', '247','151','355101.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002832.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091096.0','1044419.0','39', '39','22','33302.01', '38','13','21239.64', '26','14','12062.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002833.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091097.0','1044419.0','1088', '1025','644','1397302.83', '984','403','674117.72', '706','440','723185.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002834.0','1018852.0','17', '14','8','7325.14', '13','3','4530.92', '8','5','2794.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091098.0','1044419.0','1', '1','1','459.0', '1','1','459.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002835.0','1018852.0','302', '284','205','520700.7', '282','150','306102.42', '199','131','214598.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091099.0','1044419.0','319', '301','198','414557.3', '289','115','265272.09', '186','132','149285.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002836.0','1018852.0','1178', '1096','643','1223943.87', '1058','380','512352.67', '740','451','711591.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091100.0','1044419.0','1', '1','1','449.0', '1','1','449.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002837.0','1018852.0','4', '4','4','2893.41', '4','2','1379.99', '4','3','1513.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091101.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002838.0','1018852.0','15', '13','8','16183.4', '13','7','12894.69', '8','4','3288.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091102.0','1044419.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002839.0','1018852.0','45', '39','24','82392.1', '34','11','27797.0', '31','19','54595.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091103.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002840.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091104.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002841.0','1018852.0','6', '4','3','9477.04', '4','2','4190.0', '4','3','5287.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091105.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002842.0','1018852.0','692', '666','407','938960.47', '648','318','405963.5', '495','249','532996.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091106.0','1044419.0','1', '1','1','1328.21', '1','1','747.11', '1','1','581.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002843.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091107.0','1044419.0','1', '1','1','1723.53', '1','1','1723.53', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002844.0','1018852.0','4', '4','3','30450.39', '4','3','21129.15', '2','1','9321.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091108.0','1044419.0','1', '1','1','836.11', '1','0','0.0', '1','1','836.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002845.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091109.0','1044419.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002846.0','1018852.0','6', '4','1','878.22', '4','0','0.0', '2','1','878.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091110.0','1044419.0','1', '1','1','120.33', '1','1','120.33', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002847.0','1018852.0','1', '1','1','16.9', '1','0','0.0', '1','1','16.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091111.0','1044419.0','2', '2','2','6238.82', '2','1','5100.0', '1','1','1138.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002848.0','1018852.0','1', '1','1','2173.0', '1','1','2173.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091112.0','1044419.0','5', '5','4','4771.29', '5','3','2601.83', '3','2','2169.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002849.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091113.0','1044419.0','1', '1','1','22470.35', '1','1','11098.0', '1','1','11372.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002850.0','1018852.0','14', '13','4','3624.78', '12','2','1588.69', '5','2','2036.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091114.0','1044419.0','1', '1','1','998.06', '1','0','0.0', '1','1','998.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002851.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091115.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002852.0','1018852.0','2251', '1985','1301','2261791.47', '1811','628','900490.78', '1478','1015','1361300.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091116.0','1044419.0','2', '2','2','3641.97', '2','1','1484.09', '2','2','2157.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002853.0','1018852.0','23', '18','10','16443.38', '17','3','5460.0', '14','10','10983.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091117.0','1044419.0','35', '31','16','67206.1', '28','8','12702.0', '27','16','54504.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002854.0','1018852.0','1', '1','1','320.99', '0','0','0.0', '1','1','320.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091118.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002855.0','1018852.0','1025', '912','554','906278.31', '868','218','409765.59', '630','442','496512.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091119.0','1044419.0','1192', '1119','596','737635.92', '1088','206','308038.24', '675','459','429597.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002856.0','1018852.0','2', '2','2','2947.04', '2','1','1146.62', '2','2','1800.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091120.0','1044419.0','676', '584','315','361994.59', '545','83','108465.13', '357','269','253529.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002857.0','1018852.0','16', '13','9','28446.72', '13','3','15698.0', '10','9','12748.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091121.0','1044419.0','650', '597','361','678440.51', '573','198','296314.93', '394','277','382125.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002858.0','1018852.0','7229', '6447','2515','3911134.17', '6350','1430','2165693.61', '2878','1513','1745440.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091122.0','1044419.0','1', '1','1','1422.0', '1','1','1422.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002859.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091123.0','1044419.0','1', '1','1','549.0', '1','1','549.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002860.0','1018852.0','2', '2','1','861.32', '2','0','0.0', '1','1','861.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091124.0','1044419.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002861.0','1018852.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091125.0','1044419.0','1', '1','1','1164.17', '1','0','0.0', '1','1','1164.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002862.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091126.0','1044419.0','7', '6','5','3832.63', '6','0','0.0', '5','5','3832.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002863.0','1018852.0','3599', '3371','1795','2483260.91', '3321','808','1062655.88', '1869','1309','1420605.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091127.0','1044419.0','2207', '2044','1315','4001967.72', '1996','1004','2365687.04', '1266','766','1636280.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002864.0','1018852.0','521', '440','211','518838.55', '433','167','330632.22', '186','85','188206.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091128.0','1044419.0','1', '1','1','6189.71', '1','1','3972.0', '1','1','2217.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002865.0','1018852.0','4', '3','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091129.0','1044419.0','1', '1','1','1098.0', '1','1','1098.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002866.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091130.0','1044419.0','17', '15','10','20800.13', '15','3','6947.08', '11','9','13853.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002867.0','1018852.0','98', '93','69','151506.62', '90','41','96670.25', '67','47','54836.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091131.0','1044419.0','138', '124','91','140770.24', '110','41','71899.7', '93','70','68870.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002868.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091132.0','1044419.0','5', '3','1','226.66', '2','1','226.66', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002869.0','1018852.0','1', '1','1','2193.68', '1','1','687.0', '1','1','1506.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091133.0','1044419.0','1', '1','1','99.71', '1','0','0.0', '1','1','99.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002870.0','1018852.0','1', '1','1','4421.76', '1','1','4421.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091134.0','1044419.0','1', '1','1','3998.83', '1','1','3998.83', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002871.0','1018852.0','200', '179','113','192166.19', '165','53','95454.51', '125','84','96711.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091135.0','1044419.0','1145', '980','304','314006.18', '956','75','74938.22', '402','253','239067.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002872.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091136.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002873.0','1018852.0','143', '135','82','93267.47', '130','15','26259.41', '96','74','67008.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091137.0','1044419.0','1', '1','1','214.18', '1','1','214.18', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002874.0','1018852.0','107', '98','76','152528.72', '92','45','91565.43', '68','55','60963.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091138.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002875.0','1018852.0','1', '1','1','1626.7', '1','1','1275.0', '1','1','351.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091139.0','1044419.0','51', '44','27','87446.94', '42','21','43301.82', '19','13','44145.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002876.0','1018852.0','10', '5','3','9707.95', '5','3','8443.38', '1','1','1264.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091140.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002877.0','1018852.0','6', '3','1','1040.83', '3','0','0.0', '1','1','1040.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091141.0','1044419.0','1', '1','1','500.0', '0','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002878.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091142.0','1044419.0','7', '6','2','3224.44', '6','1','1275.0', '2','2','1949.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002879.0','1018852.0','2', '2','1','873.15', '2','0','0.0', '2','1','873.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091143.0','1044419.0','1', '1','1','903.57', '1','0','0.0', '1','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002880.0','1018852.0','132', '117','93','140328.74', '111','27','41684.48', '95','78','98644.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091144.0','1044419.0','1071', '1007','558','631744.16', '970','131','200378.65', '658','487','431365.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002881.0','1018852.0','42', '38','25','57084.48', '36','20','42210.55', '21','15','14873.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091145.0','1044419.0','1', '1','1','281.3', '1','0','0.0', '1','1','281.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002882.0','1018852.0','1', '1','1','3373.38', '1','1','1098.0', '1','1','2275.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091146.0','1044419.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002883.0','1018852.0','5', '4','3','11002.97', '3','1','6198.0', '4','3','4804.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091147.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002884.0','1018852.0','1', '1','1','868.79', '1','1','868.79', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091148.0','1044419.0','1', '1','1','869.77', '1','0','0.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002885.0','1018852.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091149.0','1044419.0','11', '10','5','2966.59', '10','0','0.0', '6','5','2966.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002886.0','1018852.0','109', '90','56','71010.37', '85','23','36039.32', '63','44','34971.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091150.0','1044419.0','270', '252','136','174818.92', '247','31','51569.28', '147','118','123249.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002887.0','1018852.0','12', '8','4','8240.24', '7','2','6517.6', '4','2','1722.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091151.0','1044419.0','467', '421','291','476320.4', '402','133','218881.02', '314','229','257439.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002888.0','1018852.0','15', '15','2','7066.87', '15','1','6214.0', '7','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091152.0','1044419.0','15', '14','7','23011.36', '13','5','19087.57', '9','5','3923.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002889.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091153.0','1044419.0','10', '8','4','5125.66', '7','1','1982.0', '5','4','3143.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002890.0','1018852.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091154.0','1044419.0','198', '192','141','147946.36', '173','22','36940.75', '160','134','111005.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002891.0','1018852.0','2447', '2221','1405','3492160.22', '2115','964','1597602.33', '1537','949','1894557.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091155.0','1044419.0','285', '275','199','185191.38', '260','23','23970.82', '236','188','161220.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002892.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091156.0','1044419.0','400', '350','256','277706.4', '314','44','59680.92', '288','235','218025.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002893.0','1018852.0','30', '28','8','7435.27', '28','7','6514.8', '12','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091157.0','1044419.0','5100', '4654','2667','5043672.68', '4558','1473','2618403.57', '2760','1821','2425269.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002894.0','1018852.0','64', '60','45','92702.25', '57','33','47509.57', '42','28','45192.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091158.0','1044419.0','97', '89','61','139554.95', '87','37','80192.52', '68','43','59362.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002895.0','1018852.0','1271', '1123','690','1318711.61', '1065','383','562788.25', '741','490','755923.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091159.0','1044419.0','10', '10','5','4677.05', '9','0','0.0', '7','5','4677.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002896.0','1018852.0','2', '2','1','2550.0', '2','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091160.0','1044419.0','7', '5','1','9801.26', '5','1','1098.0', '2','1','8703.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002897.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091161.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002898.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091162.0','1044419.0','10', '10','3','2381.49', '10','1','549.0', '3','2','1832.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002899.0','1018852.0','10', '8','2','1758.53', '8','1','787.36', '2','1','971.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091163.0','1044419.0','60', '56','43','58749.57', '52','18','22049.8', '44','36','36699.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002900.0','1018852.0','47', '40','26','42162.25', '39','15','22544.26', '28','19','19617.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091164.0','1044419.0','172', '147','90','119001.83', '139','30','53222.16', '103','72','65779.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002901.0','1018852.0','1', '1','1','549.0', '1','1','549.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091165.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002902.0','1018852.0','1', '1','1','549.0', '1','1','549.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091166.0','1044419.0','3', '1','1','1142.58', '1','0','0.0', '1','1','1142.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002903.0','1018852.0','476', '417','261','644027.07', '396','135','273751.33', '286','190','370275.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091167.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002904.0','1018852.0','1', '1','1','1167.55', '0','0','0.0', '1','1','1167.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091168.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002905.0','1018852.0','1', '1','1','3273.98', '1','1','2092.91', '1','1','1181.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091169.0','1044419.0','4', '3','3','6991.64', '3','1','5100.0', '2','2','1891.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002906.0','1018852.0','2591', '2191','1299','2636495.89', '2049','847','1161164.97', '1464','800','1475330.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091170.0','1044419.0','4', '4','3','2952.01', '2','2','1968.0', '3','1','984.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002907.0','1018852.0','3213', '3025','1720','1915300.75', '2930','543','552117.24', '2030','1449','1363183.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091171.0','1044419.0','1', '1','1','3040.72', '1','1','3040.72', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002908.0','1018852.0','798', '758','480','1269350.08', '700','307','415907.96', '594','339','853442.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091172.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002909.0','1018852.0','88', '74','45','96497.43', '71','25','60146.44', '46','35','36350.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091173.0','1044419.0','250', '235','180','176794.55', '213','19','28021.11', '194','168','148773.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002910.0','1018852.0','253', '221','158','281365.76', '205','71','159494.76', '161','120','121871.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091174.0','1044419.0','3', '3','2','2152.24', '3','0','0.0', '2','2','2152.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002911.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091175.0','1044419.0','1', '1','1','6214.0', '1','1','6214.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002912.0','1018852.0','3373', '3192','2046','2598453.3', '3092','659','777543.18', '2241','1694','1820910.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091176.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002913.0','1018852.0','2', '2','1','981.91', '2','1','112.14', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091177.0','1044419.0','76', '71','38','45756.37', '69','15','20013.79', '44','28','25742.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002914.0','1018852.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091178.0','1044419.0','23', '20','15','26343.78', '19','14','19123.39', '17','10','7220.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002915.0','1018852.0','1', '1','1','903.57', '1','0','0.0', '1','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091179.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002916.0','1018852.0','1', '1','1','2217.69', '1','1','918.0', '1','1','1299.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091180.0','1044419.0','1', '1','1','984.0', '1','1','984.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002917.0','1018852.0','860', '782','542','1159616.27', '740','344','631070.96', '541','376','528545.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091181.0','1044419.0','147', '122','76','177270.03', '112','55','111685.37', '80','47','65584.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002918.0','1018852.0','9', '7','3','8436.68', '7','3','8210.78', '4','1','225.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091182.0','1044419.0','28', '22','9','8130.46', '19','0','0.0', '14','9','8130.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002919.0','1018852.0','90', '82','49','61000.74', '80','17','26694.24', '56','40','34306.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091183.0','1044419.0','1908', '1735','1061','1863858.76', '1637','509','871430.54', '1240','788','992428.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002920.0','1018852.0','1', '1','1','50.7', '1','0','0.0', '1','1','50.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091184.0','1044419.0','122', '113','57','58878.66', '109','16','24473.61', '62','42','34405.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002921.0','1018852.0','22', '21','15','32388.42', '20','5','15883.73', '17','14','16504.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091185.0','1044419.0','324', '277','153','278973.58', '267','98','179140.02', '163','88','99833.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002922.0','1018852.0','2260', '1986','1348','1875122.24', '1866','477','663206.19', '1492','1121','1211916.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091186.0','1044419.0','5', '4','2','4873.5', '4','1','1422.0', '3','2','3451.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002923.0','1018852.0','10', '9','5','5374.45', '7','3','2474.11', '5','3','2900.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091187.0','1044419.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002924.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091188.0','1044419.0','23', '21','8','6766.77', '21','2','1098.0', '14','7','5668.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002925.0','1018852.0','5', '4','3','11703.16', '4','3','11703.16', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091189.0','1044419.0','2', '2','1','2209.0', '2','1','2209.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002926.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091190.0','1044419.0','745', '673','384','387994.1', '632','59','70428.07', '453','350','317566.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002927.0','1018852.0','1', '1','1','839.35', '1','0','0.0', '1','1','839.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091191.0','1044419.0','1', '1','1','561.0', '1','1','561.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002928.0','1018852.0','1', '1','1','912.09', '1','1','912.09', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091192.0','1044419.0','1', '1','1','819.05', '1','0','0.0', '1','1','819.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002929.0','1018852.0','1', '1','1','6524.7', '1','1','6474.0', '1','1','50.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091193.0','1044419.0','285', '262','179','253776.06', '239','85','118638.86', '195','133','135137.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002930.0','1018852.0','247', '197','122','136321.96', '177','42','53752.33', '142','92','82569.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091194.0','1044419.0','4', '4','3','2417.28', '4','1','131.67', '3','3','2285.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002931.0','1018852.0','38', '33','18','21476.03', '33','8','7221.84', '19','14','14254.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091195.0','1044419.0','424', '408','308','560817.93', '397','137','321705.62', '312','243','239112.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002932.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091196.0','1044419.0','1', '1','1','920.47', '1','0','0.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002933.0','1018852.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091197.0','1044419.0','1784', '1641','898','1344440.08', '1599','370','661818.16', '968','660','682621.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002934.0','1018852.0','27', '17','11','16609.26', '16','10','16266.01', '5','1','343.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091198.0','1044419.0','1', '1','1','460.98', '1','1','289.78', '1','1','171.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002935.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091199.0','1044419.0','1', '1','1','581.1', '1','0','0.0', '1','1','581.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002936.0','1018852.0','6', '5','2','4499.97', '4','1','3664.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091200.0','1044419.0','2', '2','1','1422.0', '2','1','1422.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002937.0','1018852.0','934', '855','430','535720.23', '835','150','215228.62', '502','338','320491.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091201.0','1044419.0','5', '5','5','5110.18', '5','3','2440.0', '4','3','2670.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002938.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091202.0','1044419.0','3', '2','2','4970.79', '2','1','3810.0', '2','2','1160.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002939.0','1018852.0','96', '84','19','22618.82', '83','5','4262.24', '27','14','18356.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091203.0','1044419.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002940.0','1018852.0','32', '31','15','22985.11', '29','7','8350.68', '17','11','14634.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091204.0','1044419.0','1309', '1221','813','949055.14', '1156','238','342616.22', '869','678','606438.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002941.0','1018852.0','1', '1','1','822.23', '1','0','0.0', '1','1','822.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091205.0','1044419.0','2', '1','1','1477.07', '1','1','914.31', '1','1','562.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002942.0','1018852.0','2', '2','2','1671.94', '2','0','0.0', '2','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091206.0','1044419.0','1', '1','1','239.01', '1','0','0.0', '1','1','239.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002943.0','1018852.0','13', '10','5','18578.87', '10','4','17380.9', '5','2','1197.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091207.0','1044419.0','2', '2','2','8268.66', '2','2','6648.05', '1','1','1620.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002944.0','1018852.0','359', '313','203','442781.04', '292','111','223688.03', '224','159','219093.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091208.0','1044419.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002945.0','1018852.0','1', '1','1','687.0', '1','1','687.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091209.0','1044419.0','1', '1','1','861.32', '1','0','0.0', '1','1','861.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002946.0','1018852.0','1', '1','1','68.7', '1','1','68.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091210.0','1044419.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002947.0','1018852.0','1', '1','1','3157.75', '1','1','1098.0', '1','1','2059.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091211.0','1044419.0','1', '1','1','2671.27', '1','1','2671.27', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002948.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091212.0','1044419.0','286', '271','187','244727.08', '262','59','79219.42', '198','158','165507.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002949.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091213.0','1044419.0','2', '1','1','8326.36', '1','1','549.0', '1','1','7777.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002950.0','1018852.0','6459', '6045','2990','3636941.13', '5932','1190','1323645.47', '3329','2225','2313295.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091214.0','1044419.0','1', '1','1','500.0', '0','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002951.0','1018852.0','6', '6','2','861.74', '5','0','0.0', '3','2','861.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091215.0','1044419.0','6', '4','2','1539.87', '4','1','687.0', '2','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002952.0','1018852.0','1', '1','1','1260.0', '1','1','1260.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091216.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002953.0','1018852.0','1', '1','1','578.49', '1','1','570.04', '1','1','8.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091217.0','1044419.0','473', '350','111','183005.4', '327','51','93343.39', '154','75','89662.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002954.0','1018852.0','2209', '2004','1336','2016877.78', '1878','524','850477.46', '1425','1092','1166400.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091218.0','1044419.0','30', '25','13','93520.75', '25','12','32927.0', '14','9','60593.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002955.0','1018852.0','1', '1','1','306.27', '1','0','0.0', '1','1','306.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091219.0','1044419.0','1826', '1657','1067','1580678.86', '1583','457','700324.34', '1166','825','880354.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002956.0','1018852.0','187', '170','89','105486.86', '160','35','46577.01', '93','64','58909.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091220.0','1044419.0','52', '37','25','66745.92', '37','24','63020.03', '10','6','3725.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002957.0','1018852.0','1', '1','1','6059.78', '1','0','0.0', '1','1','6059.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091221.0','1044419.0','3', '3','2','1873.46', '3','2','1873.46', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002958.0','1018852.0','6000', '5628','2926','3214463.26', '5503','939','953625.93', '3361','2320','2260837.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091222.0','1044419.0','1', '1','1','549.0', '1','1','549.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002959.0','1018852.0','8', '8','3','2364.74', '6','0','0.0', '5','3','2364.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091223.0','1044419.0','1', '1','1','869.77', '1','0','0.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002960.0','1018852.0','509', '444','253','332914.16', '426','97','133351.17', '297','197','199562.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091224.0','1044419.0','192', '173','100','212028.3', '161','59','125759.54', '109','67','86268.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002961.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091225.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002962.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091226.0','1044419.0','13', '11','7','7694.95', '11','5','3772.97', '6','4','3921.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002963.0','1018852.0','2357', '1985','1134','3378970.94', '1934','896','1671350.18', '985','583','1707620.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091227.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002964.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091228.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002965.0','1018852.0','21', '18','9','4541.13', '17','3','1512.76', '14','6','3028.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091229.0','1044419.0','2', '2','2','1955.17', '2','1','984.0', '1','1','971.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002966.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091230.0','1044419.0','7', '4','2','4768.5', '4','2','3825.0', '2','1','943.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002967.0','1018852.0','40', '34','26','50670.23', '29','14','35936.38', '28','20','14733.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091231.0','1044419.0','632', '563','306','518694.7', '550','153','293352.95', '318','206','225341.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002968.0','1018852.0','1932', '1818','1131','1248746.21', '1756','295','321162.44', '1236','967','927583.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091232.0','1044419.0','1', '1','1','3534.0', '1','1','3534.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002969.0','1018852.0','54', '50','37','117370.18', '48','26','52699.07', '31','26','64671.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091233.0','1044419.0','1', '1','1','2401.22', '1','1','1878.67', '1','1','522.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002970.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091234.0','1044419.0','149', '127','85','111187.64', '114','18','24873.88', '103','76','86313.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002971.0','1018852.0','270', '239','155','209694.58', '228','64','110098.37', '171','115','99596.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091235.0','1044419.0','3', '3','2','1209.54', '3','2','365.12', '2','1','844.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002972.0','1018852.0','1', '1','1','4490.63', '1','1','4321.63', '1','1','169.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091236.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002973.0','1018852.0','1', '1','1','1559.7', '1','1','1559.7', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091237.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002974.0','1018852.0','5', '4','4','12492.15', '4','3','11541.0', '4','4','951.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091238.0','1044419.0','221', '215','148','231483.53', '208','106','126483.93', '139','81','104999.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002975.0','1018852.0','27', '26','17','15525.4', '26','16','12892.24', '15','7','2633.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091239.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002976.0','1018852.0','4', '3','2','4886.84', '3','2','4769.49', '1','1','117.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091240.0','1044419.0','3', '2','2','4014.81', '2','2','3897.46', '1','1','117.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002977.0','1018852.0','5', '4','3','8310.16', '4','3','7759.04', '2','1','551.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091241.0','1044419.0','5', '4','4','7375.25', '4','2','3628.64', '4','3','3746.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002978.0','1018852.0','2', '1','1','221.16', '1','1','221.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091242.0','1044419.0','3', '3','2','3763.32', '1','0','0.0', '3','2','3763.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002979.0','1018852.0','7', '6','3','4930.6', '6','3','4930.6', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091243.0','1044419.0','111', '85','63','248314.15', '83','60','190622.62', '40','21','57691.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002980.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091244.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002981.0','1018852.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091245.0','1044419.0','1', '1','1','954.27', '1','0','0.0', '1','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002982.0','1018852.0','3', '2','1','505.0', '2','1','505.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091246.0','1044419.0','16', '14','8','20265.25', '12','8','20265.25', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002983.0','1018852.0','4', '4','1','4587.38', '4','0','0.0', '2','1','4587.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091247.0','1044419.0','619', '574','413','554846.21', '533','125','215514.6', '462','367','339331.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002984.0','1018852.0','59', '50','37','95526.36', '50','32','92232.4', '15','10','3293.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091248.0','1044419.0','1', '1','1','941.47', '1','1','10.86', '1','1','930.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002985.0','1018852.0','2', '1','1','344.86', '1','0','0.0', '1','1','344.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091249.0','1044419.0','2618', '2432','1453','2689381.91', '2353','739','1444509.06', '1510','1017','1244872.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002986.0','1018852.0','62', '60','26','58327.11', '58','22','34841.69', '46','14','23485.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091250.0','1044419.0','13', '10','6','6223.99', '10','6','5715.19', '4','1','508.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002987.0','1018852.0','48', '46','24','65227.46', '46','21','44866.14', '35','16','20361.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091251.0','1044419.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002989.0','1018852.0','14', '13','10','46867.91', '13','10','35068.05', '6','3','11799.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091253.0','1044419.0','1', '1','1','9527.19', '1','1','1160.0', '1','1','8367.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002990.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091254.0','1044419.0','5', '5','4','5297.4', '5','4','5297.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002991.0','1018852.0','2', '2','1','3097.96', '2','1','3097.96', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091255.0','1044419.0','2', '2','2','4076.2', '2','2','3850.3', '1','1','225.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002992.0','1018852.0','72', '20','9','47368.38', '15','7','5567.47', '11','6','41800.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091256.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002993.0','1018852.0','33', '33','13','15712.49', '33','8','8309.37', '25','10','7403.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091257.0','1044419.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002994.0','1018852.0','1', '1','1','11534.0', '1','1','11534.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091258.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002995.0','1018852.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091259.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002996.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091260.0','1044419.0','21', '16','14','48334.52', '16','13','46917.49', '2','1','1417.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002997.0','1018852.0','1', '1','1','3981.56', '1','1','3981.56', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091261.0','1044419.0','61', '48','33','100010.1', '47','32','61788.55', '20','7','38221.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002998.0','1018852.0','38', '31','23','57075.8', '31','23','55142.8', '9','5','1933.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091262.0','1044419.0','4298', '3865','2327','6255134.24', '3686','1706','2777472.38', '2688','1511','3477661.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2002999.0','1018852.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091263.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003000.0','1018852.0','1', '1','1','16.1', '1','0','0.0', '1','1','16.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091264.0','1044419.0','11', '10','4','13330.78', '9','3','3674.0', '6','3','9656.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003001.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091265.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003002.0','1018852.0','10', '9','5','8275.37', '8','2','4736.1', '8','4','3539.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091266.0','1044419.0','31', '30','14','16407.8', '29','6','7004.94', '19','13','9402.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003003.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091267.0','1044419.0','7', '6','3','21686.98', '5','3','14597.75', '4','2','7089.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003004.0','1018852.0','361', '305','225','420369.39', '280','93','214458.83', '245','187','205910.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091268.0','1044419.0','6', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003005.0','1018852.0','3', '2','2','7249.38', '2','2','3825.0', '2','1','3424.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091269.0','1044419.0','3', '3','1','599.73', '3','0','0.0', '2','1','599.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003006.0','1018852.0','428', '409','250','529654.26', '383','172','233202.56', '307','158','296451.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091270.0','1044419.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003007.0','1018852.0','11', '11','5','3701.93', '11','1','1098.0', '4','4','2603.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091271.0','1044419.0','2', '1','1','1160.0', '1','1','1160.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003008.0','1018852.0','1', '1','1','1422.0', '1','1','1422.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091272.0','1044419.0','11', '8','8','28259.86', '8','8','27877.87', '3','2','381.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003009.0','1018852.0','1', '1','1','1819.5', '1','1','1819.5', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091273.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003010.0','1018852.0','5', '4','3','14748.21', '4','3','14533.84', '1','1','214.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091274.0','1044419.0','1', '1','1','172.69', '1','0','0.0', '1','1','172.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003011.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091275.0','1044419.0','96', '92','60','117747.51', '88','50','69072.98', '60','30','48674.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003012.0','1018852.0','39', '32','23','79184.1', '32','23','67333.14', '11','5','11850.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091276.0','1044419.0','5', '3','2','6816.77', '3','2','4733.66', '2','2','2083.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003013.0','1018852.0','63', '62','40','102733.14', '60','27','38345.63', '53','27','64387.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091277.0','1044419.0','11', '7','5','41025.31', '7','5','22921.08', '5','3','18104.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003014.0','1018852.0','1', '1','1','1012.15', '1','1','488.87', '1','1','523.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091278.0','1044419.0','34', '31','23','53246.47', '29','15','21079.86', '20','14','32166.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003015.0','1018852.0','4', '4','1','3277.31', '4','1','2550.0', '1','1','727.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091279.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003016.0','1018852.0','32', '30','24','67064.77', '28','20','32433.3', '21','14','34631.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091280.0','1044419.0','7', '2','2','9954.0', '2','2','9954.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003017.0','1018852.0','4', '2','2','5229.23', '2','1','2615.0', '2','2','2614.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091281.0','1044419.0','2', '2','2','9828.48', '2','2','8810.0', '2','1','1018.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003018.0','1018852.0','37', '25','21','62751.54', '25','18','57290.56', '12','10','5460.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091282.0','1044419.0','1', '1','1','7614.9', '1','1','6710.0', '1','1','904.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003019.0','1018852.0','847', '780','477','881806.92', '760','215','403312.26', '524','375','478494.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091283.0','1044419.0','78', '63','36','106397.37', '61','29','52285.51', '28','17','54111.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003020.0','1018852.0','1', '1','1','42.25', '1','0','0.0', '1','1','42.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091284.0','1044419.0','444', '386','270','407633.24', '364','124','215298.05', '288','195','192335.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003021.0','1018852.0','18', '17','14','24654.09', '14','7','18328.93', '12','9','6325.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091285.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003022.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091286.0','1044419.0','1', '1','1','9652.34', '1','1','984.0', '1','1','8668.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003023.0','1018852.0','84', '57','35','150305.81', '51','33','91721.5', '27','14','58584.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091287.0','1044419.0','3', '2','2','937.37', '2','0','0.0', '2','2','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003024.0','1018852.0','16', '13','10','58318.82', '13','9','25430.56', '9','7','32888.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091288.0','1044419.0','1226', '1104','726','832800.14', '1045','205','264971.57', '807','607','567828.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003025.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091289.0','1044419.0','1', '1','1','696.6', '1','1','696.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003026.0','1018852.0','1', '1','1','4883.8', '1','1','4883.8', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091290.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003027.0','1018852.0','4', '3','2','8251.77', '3','2','1656.95', '2','1','6594.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091291.0','1044419.0','8', '8','7','24087.43', '8','6','22475.57', '5','3','1611.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003028.0','1018852.0','130', '107','75','220164.36', '101','74','182731.47', '53','26','37432.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091292.0','1044419.0','1', '1','1','586.92', '1','1','586.92', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003029.0','1018852.0','10', '9','2','699.48', '8','1','217.1', '6','2','482.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091293.0','1044419.0','13', '12','11','16788.22', '10','2','4204.0', '10','10','12584.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003030.0','1018852.0','27', '27','10','19538.51', '27','8','12559.82', '15','4','6978.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091294.0','1044419.0','906', '674','335','529648.59', '618','180','286029.69', '402','211','243618.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003031.0','1018852.0','91', '88','52','107270.81', '86','37','53025.97', '72','38','54244.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091295.0','1044419.0','1', '1','1','6746.72', '1','0','0.0', '1','1','6746.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003032.0','1018852.0','5', '5','3','12789.46', '5','3','12789.46', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091296.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003033.0','1018852.0','3', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091297.0','1044419.0','30', '25','17','86122.18', '25','16','58541.56', '16','8','27580.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003034.0','1018852.0','18', '18','13','16230.9', '18','6','7611.81', '16','10','8619.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091298.0','1044419.0','1', '1','1','734.3', '1','1','423.0', '1','1','311.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003035.0','1018852.0','1', '1','1','1420.08', '1','0','0.0', '1','1','1420.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091299.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003036.0','1018852.0','1', '1','1','169.25', '1','1','169.25', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091300.0','1044419.0','74', '62','45','85029.76', '61','17','45338.2', '43','35','39691.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003037.0','1018852.0','111', '107','76','121207.83', '102','65','87289.43', '72','38','33918.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091301.0','1044419.0','4', '3','1','2484.0', '3','1','1984.0', '2','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003038.0','1018852.0','151', '51','12','23708.1', '39','12','21658.79', '28','3','2049.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091302.0','1044419.0','56', '52','37','45954.5', '47','13','18824.98', '44','34','27129.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003039.0','1018852.0','3', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091303.0','1044419.0','1', '1','1','2966.1', '1','1','2966.1', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003040.0','1018852.0','1', '1','1','2166.0', '1','1','1666.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091304.0','1044419.0','852', '818','446','998593.8', '756','288','358086.39', '629','305','640507.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003041.0','1018852.0','16', '14','10','31852.68', '14','8','22567.56', '9','3','9285.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091305.0','1044419.0','14', '11','9','54204.3', '11','9','43644.19', '6','5','10560.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003042.0','1018852.0','223', '178','131','411566.26', '169','125','304437.19', '82','35','107129.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091306.0','1044419.0','73', '70','36','54990.66', '66','27','31960.33', '46','13','23030.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003043.0','1018852.0','72', '72','51','135515.02', '70','43','86479.16', '46','25','49035.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091307.0','1044419.0','2', '2','2','1461.02', '2','1','549.0', '2','2','912.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003044.0','1018852.0','21', '18','10','35949.88', '18','10','35478.31', '5','2','471.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091308.0','1044419.0','1', '1','1','892.04', '1','0','0.0', '1','1','892.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003045.0','1018852.0','33', '22','14','73451.31', '20','13','50657.79', '11','7','22793.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091309.0','1044419.0','36', '33','25','44945.72', '31','12','28229.6', '25','19','16716.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003046.0','1018852.0','57', '55','36','115357.23', '53','23','57507.96', '43','24','57849.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091310.0','1044419.0','1', '1','1','3499.0', '0','0','0.0', '1','1','3499.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003047.0','1018852.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091311.0','1044419.0','17', '17','11','16940.84', '17','4','8025.31', '12','11','8915.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003048.0','1018852.0','72', '62','41','166684.4', '62','40','136165.52', '19','11','30518.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091312.0','1044419.0','1', '1','1','1467.2', '1','1','1467.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003049.0','1018852.0','1', '1','1','343.25', '1','0','0.0', '1','1','343.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091313.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003050.0','1018852.0','21', '21','12','22641.46', '19','10','14910.73', '9','3','7730.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091314.0','1044419.0','8', '7','4','22667.4', '6','2','7468.0', '6','3','15199.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003051.0','1018852.0','1', '1','1','1270.86', '1','1','1270.86', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091315.0','1044419.0','1', '1','1','6562.0', '1','1','6562.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003052.0','1018852.0','328', '281','236','2125203.99', '276','226','965121.86', '165','132','1160082.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091316.0','1044419.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003053.0','1018852.0','1', '1','1','697.68', '1','1','697.68', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091317.0','1044419.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003054.0','1018852.0','13', '13','9','9696.46', '11','1','1275.0', '13','9','8421.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091318.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003055.0','1018852.0','1', '1','1','3641.29', '1','1','1954.67', '1','1','1686.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091319.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003056.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091320.0','1044419.0','2162', '2028','918','1003138.67', '1996','301','317501.23', '1109','728','685637.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003057.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091321.0','1044419.0','48', '46','28','27409.27', '44','7','5179.61', '33','25','22229.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003058.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091322.0','1044419.0','433', '388','259','573390.08', '361','158','324481.6', '268','175','248908.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003059.0','1018852.0','49', '47','30','59506.92', '44','20','38768.51', '36','23','20738.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091323.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003060.0','1018852.0','7', '4','2','4895.15', '4','1','4105.0', '2','1','790.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091324.0','1044419.0','1', '1','1','1231.77', '1','0','0.0', '1','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003061.0','1018852.0','10', '5','4','7248.74', '5','4','7248.74', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091325.0','1044419.0','834', '689','367','626350.32', '661','194','333543.55', '391','247','292806.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003062.0','1018852.0','3', '3','2','8671.34', '3','1','6710.0', '3','2','1961.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091326.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003063.0','1018852.0','152', '116','80','349473.51', '113','78','218942.16', '59','36','130531.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091327.0','1044419.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003064.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091328.0','1044419.0','31', '30','19','60784.83', '28','15','25588.75', '20','10','35196.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003065.0','1018852.0','169', '79','39','187503.52', '59','34','67813.09', '53','21','119690.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091329.0','1044419.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003066.0','1018852.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091330.0','1044419.0','8', '7','5','10082.66', '7','5','9138.46', '4','2','944.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003067.0','1018852.0','58', '53','31','43807.35', '51','20','23487.36', '42','22','20319.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091331.0','1044419.0','3', '3','2','2452.57', '3','1','1247.33', '2','2','1205.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003068.0','1018852.0','1', '1','1','252.0', '1','1','252.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091332.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003069.0','1018852.0','1', '1','1','1812.9', '1','1','1587.0', '1','1','225.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091333.0','1044419.0','1', '1','1','1639.27', '1','1','492.0', '1','1','1147.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003070.0','1018852.0','8', '8','5','17174.69', '8','3','4858.13', '5','5','12316.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091334.0','1044419.0','485', '448','330','1117426.0', '431','210','606617.9', '306','232','510808.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003071.0','1018852.0','26', '21','14','31879.01', '20','9','20153.15', '14','8','11725.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091335.0','1044419.0','665', '611','380','503659.98', '590','91','148472.2', '442','344','355187.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003072.0','1018852.0','86', '69','27','48905.05', '65','20','28925.11', '31','14','19979.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091336.0','1044419.0','20', '17','12','55020.2', '17','12','34789.46', '7','3','20230.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003073.0','1018852.0','1', '1','1','1640.0', '1','1','1640.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091337.0','1044419.0','1', '1','1','4655.46', '1','1','2737.0', '1','1','1918.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003074.0','1018852.0','313', '296','227','549499.33', '284','125','283182.13', '234','181','266317.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091338.0','1044419.0','8', '6','4','11635.65', '6','4','11635.65', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003075.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091339.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003076.0','1018852.0','2', '2','1','984.0', '2','1','984.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091340.0','1044419.0','2', '2','2','3055.33', '2','2','1779.83', '2','1','1275.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003077.0','1018852.0','937', '834','485','775924.75', '794','240','344264.81', '553','356','431659.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091341.0','1044419.0','25', '25','12','13493.2', '21','4','6020.4', '14','10','7472.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003078.0','1018852.0','2946', '2657','1660','1921207.36', '2546','502','695422.44', '1853','1365','1225784.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091342.0','1044419.0','1244', '1141','743','1279643.35', '1092','398','631886.65', '743','519','647756.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003079.0','1018852.0','2', '1','1','661.3', '1','1','661.3', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091343.0','1044419.0','87', '83','53','101098.15', '81','47','77075.3', '46','17','24022.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003080.0','1018852.0','7', '5','4','17250.84', '5','4','17250.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091344.0','1044419.0','2', '2','1','670.74', '2','0','0.0', '1','1','670.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003081.0','1018852.0','2', '1','1','21559.51', '1','1','5100.0', '1','1','16459.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091345.0','1044419.0','37', '22','18','47355.82', '22','18','45858.62', '8','5','1497.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003082.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091346.0','1044419.0','100', '99','65','161542.79', '96','52','86804.63', '77','42','74738.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003083.0','1018852.0','3', '2','1','918.59', '2','1','918.59', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091347.0','1044419.0','1', '1','1','117.35', '1','0','0.0', '1','1','117.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003084.0','1018852.0','2', '2','2','5018.55', '2','2','5018.55', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091348.0','1044419.0','9', '6','3','5907.59', '6','2','5117.44', '2','1','790.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003085.0','1018852.0','13', '11','8','63765.1', '10','7','40925.85', '8','5','22839.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091349.0','1044419.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003086.0','1018852.0','1', '1','1','1542.99', '1','0','0.0', '1','1','1542.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091350.0','1044419.0','127', '123','77','149463.74', '119','66','83291.97', '81','40','66171.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003087.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091351.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003088.0','1018852.0','2', '1','1','2711.0', '1','1','2550.0', '1','1','161.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091352.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003089.0','1018852.0','1', '1','1','3462.36', '1','1','3462.36', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091353.0','1044419.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003090.0','1018852.0','1', '1','1','318.0', '1','1','318.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091354.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003091.0','1018852.0','1372', '1205','595','836728.27', '1174','339','432020.66', '639','383','404707.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091355.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003092.0','1018852.0','33', '24','16','103717.04', '22','14','24520.82', '21','13','79196.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091356.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003093.0','1018852.0','174', '113','78','267038.68', '106','73','215485.07', '47','26','51553.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091357.0','1044419.0','7', '6','5','57339.93', '6','5','37417.27', '4','2','19922.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003094.0','1018852.0','35', '33','20','46053.73', '33','8','24796.9', '19','14','21256.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091358.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003095.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091359.0','1044419.0','2', '1','1','1956.19', '1','1','1472.49', '1','1','483.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003096.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091360.0','1044419.0','165', '161','105','282018.82', '157','78','140827.71', '120','69','141191.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003097.0','1018852.0','135', '113','74','395210.41', '109','68','199110.81', '57','32','196099.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091361.0','1044419.0','398', '299','236','1471027.71', '292','230','833063.69', '160','94','637964.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003098.0','1018852.0','5', '3','2','3025.1', '2','2','3009.0', '3','1','16.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091362.0','1044419.0','3', '3','2','2703.02', '3','2','2703.02', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003099.0','1018852.0','96', '92','68','176291.49', '92','53','82270.86', '66','45','94020.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091363.0','1044419.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003100.0','1018852.0','2', '2','1','4437.9', '2','1','4437.9', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091364.0','1044419.0','1', '1','1','2667.35', '1','1','2550.0', '1','1','117.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003101.0','1018852.0','183', '154','96','283827.05', '152','92','215842.49', '58','27','67984.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091365.0','1044419.0','4', '3','2','6571.01', '3','2','6571.01', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003102.0','1018852.0','2', '2','1','2550.0', '2','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091366.0','1044419.0','24', '20','11','60459.22', '17','10','30265.43', '9','5','30193.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003103.0','1018852.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091367.0','1044419.0','1688', '1387','725','1541648.99', '1328','523','741233.93', '759','413','800415.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003104.0','1018852.0','789', '705','417','576753.15', '683','164','256461.34', '439','312','320291.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091368.0','1044419.0','99', '94','57','149762.62', '90','46','103128.08', '66','29','46634.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003105.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091369.0','1044419.0','4', '4','1','62.44', '4','1','62.44', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003106.0','1018852.0','1', '1','1','988.07', '1','0','0.0', '1','1','988.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091370.0','1044419.0','7', '7','4','8400.14', '7','4','8400.14', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003107.0','1018852.0','3', '3','3','7753.34', '3','3','7018.35', '1','1','734.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091371.0','1044419.0','8', '8','5','11511.7', '8','5','8619.15', '5','2','2892.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003108.0','1018852.0','3', '3','2','4037.38', '3','2','4037.38', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091372.0','1044419.0','11', '9','7','13258.56', '9','7','13258.56', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003109.0','1018852.0','3', '3','3','1961.91', '3','1','308.1', '2','2','1653.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091373.0','1044419.0','3', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003110.0','1018852.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091374.0','1044419.0','588', '572','376','927627.99', '541','301','465330.88', '453','249','462297.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003111.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091375.0','1044419.0','32', '29','14','17478.8', '27','7','7140.82', '22','10','10337.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003112.0','1018852.0','52', '34','27','81862.12', '33','23','63582.29', '19','10','18279.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091376.0','1044419.0','15', '9','6','20534.59', '9','6','15880.03', '7','5','4654.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003113.0','1018852.0','11', '11','7','28464.33', '11','7','16155.63', '6','2','12308.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091377.0','1044419.0','8', '5','4','11580.47', '5','3','11201.48', '4','2','378.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003114.0','1018852.0','3', '3','1','545.53', '3','0','0.0', '3','1','545.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091378.0','1044419.0','3', '3','1','914.6', '3','0','0.0', '1','1','914.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003115.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091379.0','1044419.0','5', '5','4','17068.99', '5','4','13392.63', '3','2','3676.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003116.0','1018852.0','7', '5','4','6325.46', '5','4','3883.42', '4','2','2442.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091380.0','1044419.0','672', '646','454','1234766.35', '627','298','482912.2', '520','340','751854.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003117.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091381.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003118.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091382.0','1044419.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003119.0','1018852.0','216', '204','120','206873.24', '190','95','146555.19', '122','56','60318.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091383.0','1044419.0','18', '12','10','31973.12', '12','10','31360.64', '4','1','612.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003120.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091384.0','1044419.0','8', '8','3','4769.46', '8','3','4769.46', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003121.0','1018852.0','2', '2','1','5100.0', '2','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091385.0','1044419.0','168', '162','108','161630.95', '160','94','117354.17', '95','39','44276.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003122.0','1018852.0','1', '1','1','4552.85', '1','1','4552.85', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091386.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003123.0','1018852.0','5', '2','2','3763.56', '2','2','3763.56', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091387.0','1044419.0','64', '53','39','156807.88', '52','39','154552.61', '14','5','2255.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003124.0','1018852.0','811', '779','461','594140.75', '726','282','308905.57', '524','270','285235.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091388.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003125.0','1018852.0','4', '3','2','6462.51', '3','2','6462.51', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091389.0','1044419.0','104', '97','20','17957.08', '88','13','11834.85', '79','11','6122.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003126.0','1018852.0','2', '2','1','2868.11', '2','1','2123.84', '2','1','744.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091390.0','1044419.0','3', '2','1','531.0', '2','1','531.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003127.0','1018852.0','194', '189','84','84936.01', '177','42','49646.28', '149','51','35289.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091391.0','1044419.0','84', '75','34','31058.26', '72','32','27646.72', '29','5','3411.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003128.0','1018852.0','74', '61','22','28922.04', '56','15','18501.6', '48','11','10420.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091392.0','1044419.0','10', '7','2','1062.0', '7','2','1062.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003129.0','1018852.0','539', '496','159','112028.2', '428','45','37483.4', '402','124','74544.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091393.0','1044419.0','23', '23','13','26103.68', '22','13','13325.79', '13','5','12777.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003130.0','1018852.0','3', '2','1','806.25', '2','0','0.0', '2','1','806.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091394.0','1044419.0','36', '30','20','77668.5', '29','20','55180.76', '7','1','22487.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003131.0','1018852.0','9', '8','6','14895.51', '8','5','13553.2', '3','1','1342.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091395.0','1044419.0','3', '3','3','3748.3', '3','3','3748.3', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003132.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091396.0','1044419.0','6', '3','2','3757.85', '3','2','3414.6', '1','1','343.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003133.0','1018852.0','3', '3','1','2424.02', '3','1','2424.02', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091397.0','1044419.0','609', '586','369','599912.73', '563','295','400475.44', '389','167','199437.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003134.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091398.0','1044419.0','12', '11','3','3171.65', '11','2','1539.07', '4','2','1632.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003135.0','1018852.0','286', '281','170','258373.04', '274','139','173075.32', '180','65','85297.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091399.0','1044419.0','17', '14','2','3356.0', '14','2','2999.67', '9','1','356.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003136.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091400.0','1044419.0','53', '45','33','199400.4', '44','30','92773.92', '23','15','106626.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003137.0','1018852.0','4', '4','4','18226.74', '4','4','16379.54', '2','2','1847.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091401.0','1044419.0','4', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003138.0','1018852.0','478', '460','297','495610.67', '444','233','310711.99', '296','150','184898.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091402.0','1044419.0','87', '78','27','35025.4', '70','15','20824.0', '56','21','14201.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003139.0','1018852.0','13', '8','5','14909.71', '7','4','12403.69', '3','2','2506.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091403.0','1044419.0','1', '1','1','6059.89', '1','1','4343.28', '1','1','1716.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003140.0','1018852.0','1', '1','1','1296.39', '1','1','954.0', '1','1','342.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091404.0','1044419.0','382', '362','113','97390.43', '310','37','38165.72', '296','88','59224.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003141.0','1018852.0','1', '1','1','5835.86', '0','0','0.0', '1','1','5835.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091405.0','1044419.0','142', '100','69','228771.59', '98','66','203022.51', '35','19','25749.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003142.0','1018852.0','12', '10','7','27366.17', '10','7','27366.17', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091406.0','1044419.0','1', '1','1','208.86', '1','1','208.86', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003143.0','1018852.0','11', '10','2','2945.16', '9','2','1853.0', '9','1','1092.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091407.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003144.0','1018852.0','1', '1','1','1272.85', '0','0','0.0', '1','1','1272.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091408.0','1044419.0','248', '234','77','92212.47', '217','50','67119.21', '188','37','25093.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003145.0','1018852.0','51', '38','19','44736.69', '36','18','13463.25', '19','3','31273.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091409.0','1044419.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003146.0','1018852.0','11', '9','1','2459.33', '8','1','1275.0', '8','1','1184.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091410.0','1044419.0','12', '8','3','1635.05', '8','0','0.0', '8','3','1635.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003147.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091411.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003148.0','1018852.0','343', '323','111','129328.01', '294','65','83571.84', '257','69','45756.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091412.0','1044419.0','214', '195','50','59621.6', '172','34','32661.99', '149','29','26959.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003149.0','1018852.0','2', '1','1','2211.3', '1','1','2211.3', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091413.0','1044419.0','4', '3','2','810.16', '3','2','810.16', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003150.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091414.0','1044419.0','5', '4','1','3850.05', '4','1','2342.74', '1','1','1507.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003151.0','1018852.0','5', '3','2','11191.05', '3','2','10448.81', '2','1','742.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091415.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003152.0','1018852.0','14', '11','2','7938.47', '10','2','6052.54', '8','1','1885.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091416.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003153.0','1018852.0','25', '24','7','4879.65', '23','3','2384.0', '17','5','2495.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091417.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003154.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091418.0','1044419.0','4', '4','1','298.4', '4','1','298.4', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003155.0','1018852.0','1', '1','1','550.0', '0','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091419.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003156.0','1018852.0','84', '73','43','38442.06', '72','40','35510.9', '33','6','2931.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091420.0','1044419.0','53', '45','14','8330.13', '42','12','6930.2', '31','3','1399.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003157.0','1018852.0','1', '1','1','4798.65', '1','1','2997.44', '1','1','1801.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091421.0','1044419.0','26', '19','13','30231.38', '19','12','20871.14', '5','4','9360.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003158.0','1018852.0','15', '15','6','16430.9', '15','5','8584.0', '7','2','7846.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091422.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003159.0','1018852.0','64', '60','32','52743.51', '59','27','38483.63', '42','18','14259.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091423.0','1044419.0','3', '2','1','356.77', '2','0','0.0', '1','1','356.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003160.0','1018852.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091424.0','1044419.0','2', '2','2','19781.88', '2','2','13490.0', '2','2','6291.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003161.0','1018852.0','1', '1','1','531.0', '1','1','531.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091425.0','1044419.0','4', '3','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003162.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091426.0','1044419.0','1', '1','1','1988.3', '1','1','1062.0', '1','1','926.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003163.0','1018852.0','98', '96','59','133392.79', '93','47','75961.78', '60','31','57431.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091427.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003164.0','1018852.0','32', '30','22','21949.23', '29','14','11606.87', '20','13','10342.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091428.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003165.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091429.0','1044419.0','481', '470','237','412638.51', '453','204','313332.48', '254','88','99306.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003166.0','1018852.0','18', '14','2','1437.47', '14','1','1322.0', '12','1','115.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091430.0','1044419.0','10', '8','0','0.0', '8','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003167.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091431.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003168.0','1018852.0','36', '31','8','10301.76', '29','6','5146.72', '25','5','5155.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091432.0','1044419.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003169.0','1018852.0','3', '3','1','531.0', '3','1','531.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091433.0','1044419.0','149', '134','29','42712.22', '117','19','22442.28', '102','13','20269.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003170.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091434.0','1044419.0','294', '259','58','57659.06', '219','31','27894.13', '205','40','29764.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003171.0','1018852.0','1', '1','1','2299.13', '1','1','2039.29', '1','1','259.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091435.0','1044419.0','82', '82','51','81097.04', '82','40','48683.77', '54','28','32413.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003172.0','1018852.0','35', '23','5','3771.99', '21','4','2587.66', '16','1','1184.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091436.0','1044419.0','1', '1','1','208.86', '1','1','208.86', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003173.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091437.0','1044419.0','3', '2','2','3906.15', '2','2','2740.28', '1','1','1165.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003174.0','1018852.0','13', '11','10','20316.6', '11','9','20199.25', '3','1','117.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091438.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003175.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091439.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003176.0','1018852.0','4', '2','1','7344.0', '2','1','7344.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091440.0','1044419.0','1', '1','1','3703.28', '1','1','3703.28', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003177.0','1018852.0','94', '83','29','33086.96', '79','16','20916.08', '58','19','12170.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091441.0','1044419.0','16', '11','9','37295.47', '11','9','37287.42', '4','1','8.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003178.0','1018852.0','112', '101','34','22730.41', '92','15','10177.01', '76','24','12553.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091442.0','1044419.0','1', '1','1','576.18', '1','1','576.18', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003179.0','1018852.0','14', '9','3','1214.47', '8','2','863.64', '7','1','350.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091443.0','1044419.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003180.0','1018852.0','1', '1','1','2095.94', '1','1','2095.94', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091444.0','1044419.0','92', '91','59','153685.19', '91','44','95820.36', '61','30','57864.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003181.0','1018852.0','10', '7','5','24056.7', '7','5','24006.7', '4','1','50.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091445.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003182.0','1018852.0','10', '6','3','17077.49', '5','2','2536.0', '5','3','14541.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091446.0','1044419.0','133', '126','33','27946.04', '100','12','11582.02', '114','27','16364.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003183.0','1018852.0','13', '13','9','19638.79', '13','7','16355.88', '6','4','3282.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091447.0','1044419.0','64', '50','31','113181.05', '49','29','88073.61', '21','14','25107.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003184.0','1018852.0','1', '1','1','4616.68', '1','1','3820.44', '1','1','796.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091448.0','1044419.0','640', '613','378','845079.73', '591','286','460573.64', '400','208','384506.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003185.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091449.0','1044419.0','418', '388','121','124037.26', '352','66','78025.92', '300','74','46011.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003186.0','1018852.0','4', '3','3','6514.52', '3','3','6514.52', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091450.0','1044419.0','164', '147','42','69023.47', '139','32','51108.39', '112','23','17915.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003187.0','1018852.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091451.0','1044419.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003188.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091452.0','1044419.0','8', '4','2','2609.24', '4','2','2609.24', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003189.0','1018852.0','1', '1','1','550.0', '0','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091453.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003190.0','1018852.0','1', '1','1','25600.0', '1','1','6422.0', '1','1','19178.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091454.0','1044419.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003191.0','1018852.0','157', '148','62','105555.76', '137','37','49124.28', '103','38','56431.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091455.0','1044419.0','3', '3','3','12093.98', '3','3','12093.98', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003192.0','1018852.0','69', '57','12','7286.25', '51','6','3444.48', '47','6','3841.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091456.0','1044419.0','7', '6','5','21836.19', '6','5','18991.61', '2','2','2844.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003193.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091457.0','1044419.0','67', '55','27','34234.36', '47','15','15412.49', '46','20','18821.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003194.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091458.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003195.0','1018852.0','35', '26','6','3317.56', '23','5','2767.56', '17','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091459.0','1044419.0','1', '1','1','531.0', '1','1','531.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003196.0','1018852.0','18', '17','1','1309.96', '17','1','1309.96', '13','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091460.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003197.0','1018852.0','1', '1','1','1462.0', '1','1','1462.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091461.0','1044419.0','1', '1','1','1012.53', '1','0','0.0', '1','1','1012.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003198.0','1018852.0','1', '1','1','455.0', '1','1','455.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091462.0','1044419.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003199.0','1018852.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091463.0','1044419.0','1', '1','1','455.0', '1','1','455.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003200.0','1018852.0','2', '2','2','11914.92', '2','2','1246.67', '1','1','10668.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091464.0','1044419.0','1152', '1056','593','1235533.19', '1020','364','665984.98', '681','418','569548.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003201.0','1018852.0','6', '6','3','3699.34', '5','3','3699.34', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091465.0','1044419.0','2', '2','2','4250.46', '2','2','924.12', '2','2','3326.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003202.0','1018852.0','3', '2','1','481.0', '2','1','481.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091466.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003203.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091467.0','1044419.0','5', '5','5','7036.31', '5','4','4031.67', '4','2','3004.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003204.0','1018852.0','1', '1','1','550.0', '0','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091468.0','1044419.0','7', '7','2','9328.56', '7','2','6798.24', '2','1','2530.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003205.0','1018852.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091469.0','1044419.0','1', '1','1','531.0', '1','1','531.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003206.0','1018852.0','380', '359','147','212603.36', '348','131','123078.74', '259','37','89524.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091470.0','1044419.0','30', '26','6','4908.15', '25','6','4908.15', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003207.0','1018852.0','18', '16','10','16553.7', '14','7','12641.37', '12','5','3912.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091471.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003208.0','1018852.0','1', '1','1','10576.61', '1','1','6008.0', '1','1','4568.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091472.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003209.0','1018852.0','2', '2','1','796.45', '2','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091473.0','1044419.0','220', '197','122','361271.84', '189','84','191790.76', '127','86','169481.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003210.0','1018852.0','3948', '3506','1979','3845863.89', '3395','1146','2169475.48', '2091','1286','1676388.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091474.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003211.0','1018852.0','1', '1','1','531.0', '1','1','531.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091475.0','1044419.0','237', '219','140','310624.11', '213','80','172686.15', '145','98','137937.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003212.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091476.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003213.0','1018852.0','4', '3','2','5123.78', '3','2','4924.62', '2','1','199.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091477.0','1044419.0','152', '118','70','166137.56', '114','67','144256.15', '47','12','21881.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003214.0','1018852.0','1', '1','1','216.08', '1','0','0.0', '1','1','216.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091478.0','1044419.0','1', '1','1','6221.58', '1','1','4816.38', '1','1','1405.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003215.0','1018852.0','81', '77','53','110226.04', '76','51','91282.71', '45','15','18943.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091479.0','1044419.0','3', '2','2','7961.18', '2','1','6010.0', '2','2','1951.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003216.0','1018852.0','21', '17','13','15250.84', '17','4','4397.74', '12','11','10853.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091480.0','1044419.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003217.0','1018852.0','4', '4','4','7962.13', '4','4','6621.0', '3','3','1341.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091481.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003218.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091482.0','1044419.0','939', '849','464','887521.71', '829','304','554719.04', '484','265','332802.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003064.0','1018852.0','2', '2','2','2008.68', '2','2','2008.68', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091328.0','1044419.0','1', '1','1','150.0', '1','0','0.0', '1','1','150.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003219.0','1018852.0','2', '2','1','1275.0', '2','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091483.0','1044419.0','1', '1','1','1999.19', '1','1','1999.19', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003220.0','1018852.0','764', '686','388','874284.14', '666','348','663270.15', '372','154','211013.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091484.0','1044419.0','117', '103','52','75384.66', '100','48','59909.19', '59','18','15475.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003221.0','1018852.0','1789', '1639','1064','2531462.25', '1592','621','1382495.98', '1110','760','1148966.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091485.0','1044419.0','1', '1','1','1006.51', '1','1','210.06', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003222.0','1018852.0','1', '1','1','1350.84', '1','0','0.0', '1','1','1350.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091486.0','1044419.0','1', '1','1','352.77', '1','1','128.79', '1','1','223.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003223.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091487.0','1044419.0','2', '2','1','1275.0', '2','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003224.0','1018852.0','171', '162','88','120619.87', '161','76','96550.3', '91','26','24069.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091488.0','1044419.0','1067', '1017','658','1372691.24', '982','525','906931.82', '613','308','465759.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003225.0','1018852.0','6', '6','2','7008.2', '6','2','6375.0', '3','1','633.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091489.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003226.0','1018852.0','12', '12','7','10963.28', '12','4','7472.41', '6','4','3490.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091490.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003227.0','1018852.0','766', '722','461','1051894.03', '684','305','617158.25', '495','296','434735.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091491.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003228.0','1018852.0','1', '1','1','1151.69', '1','1','1151.69', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091492.0','1044419.0','1962', '1701','898','1327033.53', '1632','463','674784.02', '1055','638','652249.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003229.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091493.0','1044419.0','1', '1','1','904.7', '1','0','0.0', '1','1','904.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003230.0','1018852.0','2', '2','2','3540.79', '2','2','3005.0', '1','1','535.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091494.0','1044419.0','102', '98','66','153776.87', '97','64','124105.37', '56','22','29671.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003231.0','1018852.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091495.0','1044419.0','7', '7','3','4613.71', '7','3','4494.76', '2','1','118.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003232.0','1018852.0','1', '1','1','2434.31', '1','1','2434.31', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091496.0','1044419.0','43', '39','20','27782.59', '38','19','24493.01', '13','6','3289.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003233.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091497.0','1044419.0','123', '116','86','174897.78', '113','63','116879.1', '79','51','58018.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003234.0','1018852.0','73', '71','48','119235.14', '71','46','89247.97', '33','16','29987.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091498.0','1044419.0','2', '2','2','9861.72', '2','2','8390.0', '2','1','1471.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003235.0','1018852.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091499.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003236.0','1018852.0','217', '143','98','127870.79', '138','92','95904.69', '70','17','31966.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091500.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003237.0','1018852.0','25', '19','4','3852.1', '18','3','2020.97', '12','2','1831.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091501.0','1044419.0','172', '157','99','197811.46', '153','85','163931.09', '68','40','33880.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003238.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091502.0','1044419.0','4', '3','1','1275.0', '3','1','1275.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003239.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091503.0','1044419.0','1', '1','1','3956.0', '1','1','3956.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003240.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091504.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003241.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091505.0','1044419.0','606', '554','325','543803.57', '527','150','284773.94', '371','250','259029.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003242.0','1018852.0','21', '14','10','35785.53', '14','9','15791.22', '8','5','19994.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091506.0','1044419.0','11', '10','6','12713.92', '10','6','10300.28', '6','3','2413.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003243.0','1018852.0','1', '1','1','547.69', '1','0','0.0', '1','1','547.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091507.0','1044419.0','24', '24','18','51267.03', '23','16','43388.78', '16','10','7878.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003244.0','1018852.0','1', '1','1','6318.05', '1','1','4712.11', '1','1','1605.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091508.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003245.0','1018852.0','2', '2','1','1445.08', '2','1','1275.0', '2','1','170.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091509.0','1044419.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003246.0','1018852.0','76', '68','15','17443.28', '60','11','8489.79', '42','7','8953.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091510.0','1044419.0','9', '6','5','13607.9', '6','5','11680.0', '3','1','1927.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003247.0','1018852.0','82', '78','46','69613.28', '76','39','42994.77', '56','22','26618.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091511.0','1044419.0','52', '38','11','7196.17', '34','8','6130.63', '23','3','1065.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003248.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091512.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003249.0','1018852.0','60', '44','6','6653.02', '36','4','3868.1', '28','3','2784.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091513.0','1044419.0','65', '62','30','83707.14', '62','29','67572.42', '31','10','16134.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003250.0','1018852.0','10', '9','2','2212.42', '9','2','2212.42', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091514.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003251.0','1018852.0','2', '2','1','5100.0', '1','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091515.0','1044419.0','1', '1','1','2046.04', '1','1','1275.0', '1','1','771.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003252.0','1018852.0','1', '1','1','910.0', '1','1','910.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091516.0','1044419.0','155', '88','45','165184.43', '84','43','97913.25', '37','17','67271.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003253.0','1018852.0','2720', '2074','1315','2945274.19', '1946','992','1733078.34', '1169','684','1212195.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091517.0','1044419.0','1', '1','1','914.95', '1','0','0.0', '1','1','914.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003254.0','1018852.0','1', '1','1','960.0', '1','1','960.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091518.0','1044419.0','1', '1','1','1358.12', '1','1','1358.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003255.0','1018852.0','1', '1','1','2237.0', '1','1','2237.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091519.0','1044419.0','1', '1','1','2668.95', '1','1','2550.0', '1','1','118.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003256.0','1018852.0','1', '1','1','765.72', '0','0','0.0', '1','1','765.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091520.0','1044419.0','1', '1','1','1298.38', '1','1','983.81', '1','1','314.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003257.0','1018852.0','438', '401','190','282744.78', '389','182','225071.41', '208','34','57673.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091521.0','1044419.0','2', '2','1','4137.66', '2','1','740.0', '2','1','3397.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003258.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091522.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003259.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091523.0','1044419.0','1', '1','1','363.97', '1','0','0.0', '1','1','363.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003260.0','1018852.0','1', '1','1','5994.92', '1','1','3458.0', '1','1','2536.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091524.0','1044419.0','25', '24','16','32275.7', '24','16','28931.17', '12','1','3344.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003261.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091525.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003262.0','1018852.0','75', '64','29','41193.16', '64','24','35005.43', '31','11','6187.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091526.0','1044419.0','60', '54','32','73442.87', '51','20','58024.32', '41','23','15418.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003263.0','1018852.0','7', '7','0','0.0', '7','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091527.0','1044419.0','144', '123','81','163419.5', '122','65','126587.02', '72','42','36832.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003264.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091528.0','1044419.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003265.0','1018852.0','4', '4','1','556.87', '4','1','556.87', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091529.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003266.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091530.0','1044419.0','503', '461','167','167952.24', '401','60','63693.49', '388','133','104258.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003267.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091531.0','1044419.0','1', '1','1','550.0', '1','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003268.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091532.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003269.0','1018852.0','5', '5','3','7027.26', '5','3','7027.26', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091533.0','1044419.0','51', '50','6','8960.16', '47','6','8960.16', '40','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003270.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091534.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003271.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091535.0','1044419.0','1', '1','1','455.0', '1','1','455.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003272.0','1018852.0','354', '333','246','581726.85', '323','194','364841.1', '214','125','216885.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091536.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003273.0','1018852.0','1', '1','1','311.0', '1','1','311.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091537.0','1044419.0','10', '10','8','17422.95', '10','8','15039.25', '7','4','2383.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003274.0','1018852.0','171', '160','93','155964.7', '158','82','125488.9', '71','29','30475.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091538.0','1044419.0','1', '1','1','989.42', '1','1','942.02', '1','1','47.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003275.0','1018852.0','2', '2','1','1379.19', '2','1','1379.19', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091539.0','1044419.0','35', '30','20','66038.3', '29','12','28306.54', '21','17','37731.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003276.0','1018852.0','34', '33','21','60202.91', '32','19','47643.62', '22','13','12559.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091540.0','1044419.0','1', '1','1','311.0', '1','1','311.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003277.0','1018852.0','1', '1','1','500.0', '1','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091541.0','1044419.0','15', '13','7','17046.84', '13','6','14381.28', '8','3','2665.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003278.0','1018852.0','3', '2','1','1062.0', '2','1','1062.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091542.0','1044419.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003279.0','1018852.0','15', '14','5','11966.33', '14','4','9833.0', '2','2','2133.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091543.0','1044419.0','37', '31','14','27548.3', '31','12','21270.04', '16','4','6278.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003280.0','1018852.0','4', '3','2','5345.31', '3','2','3945.48', '2','2','1399.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091544.0','1044419.0','61', '52','19','34194.1', '51','12','19117.42', '25','11','15076.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003281.0','1018852.0','2296', '1978','1103','2163228.91', '1910','658','1113867.77', '1182','775','1049361.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091545.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003282.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091546.0','1044419.0','254', '217','116','211963.42', '203','73','126285.07', '132','74','85678.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003283.0','1018852.0','488', '420','208','321106.71', '404','93','170548.45', '248','147','150558.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091547.0','1044419.0','2', '1','1','455.0', '1','1','455.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003284.0','1018852.0','4', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091548.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003285.0','1018852.0','209', '184','102','200030.85', '182','99','135266.22', '93','21','64764.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091549.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003286.0','1018852.0','23', '19','9','30346.49', '17','7','8693.14', '15','4','21653.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091550.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003287.0','1018852.0','639', '603','417','869751.64', '583','266','553686.9', '417','275','316064.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091551.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003288.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091552.0','1044419.0','55', '45','21','42188.4', '42','19','34758.45', '32','11','7429.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003289.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091553.0','1044419.0','42', '41','8','6879.42', '40','8','6079.58', '30','1','799.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003290.0','1018852.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091554.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003291.0','1018852.0','11', '11','10','22439.34', '11','7','14960.16', '8','7','7479.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091555.0','1044419.0','1', '1','1','1220.99', '1','1','145.26', '1','1','1075.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003292.0','1018852.0','25', '24','13','13285.6', '24','12','10021.18', '11','3','3264.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091556.0','1044419.0','3473', '2614','1716','3948846.17', '2476','1379','2144268.57', '1491','853','1804577.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003293.0','1018852.0','525', '466','281','601403.8', '445','200','436193.71', '276','161','165210.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091557.0','1044419.0','390', '367','269','821497.97', '359','192','568212.76', '250','172','253285.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003294.0','1018852.0','1', '1','1','6546.94', '1','1','5722.0', '1','1','824.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091558.0','1044419.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003295.0','1018852.0','6', '6','4','9074.56', '6','4','7322.16', '2','2','1752.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091559.0','1044419.0','183', '168','60','57395.99', '142','29','25513.35', '131','39','31882.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003296.0','1018852.0','327', '302','195','503662.62', '299','188','331261.28', '150','45','172401.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091560.0','1044419.0','1', '1','1','464.54', '1','1','464.54', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003297.0','1018852.0','4', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091561.0','1044419.0','2', '2','2','193.3', '2','2','193.3', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003298.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091562.0','1044419.0','1', '1','1','1739.78', '0','0','0.0', '1','1','1739.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003299.0','1018852.0','435', '385','110','131614.15', '342','69','74621.95', '295','62','56992.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091563.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003300.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091564.0','1044419.0','1437', '1333','877','1601232.32', '1293','407','770543.01', '889','681','830689.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003301.0','1018852.0','6', '3','2','1207.71', '3','2','1207.71', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091565.0','1044419.0','1', '1','1','771.03', '1','0','0.0', '1','1','771.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003302.0','1018852.0','5', '3','1','355.15', '3','1','355.15', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091566.0','1044419.0','318', '307','187','264205.06', '291','152','189965.13', '200','76','74239.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003303.0','1018852.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091567.0','1044419.0','1', '1','1','3666.21', '1','1','3666.21', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003304.0','1018852.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091568.0','1044419.0','9', '8','0','0.0', '7','0','0.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003305.0','1018852.0','76', '61','39','127225.12', '61','35','74855.47', '40','19','52369.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091569.0','1044419.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003306.0','1018852.0','109', '98','64','115711.78', '97','34','66500.8', '69','51','49210.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091570.0','1044419.0','290', '275','177','432932.51', '269','163','318427.64', '154','73','114504.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003307.0','1018852.0','418', '381','290','958871.28', '373','228','622649.04', '264','175','336222.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091571.0','1044419.0','1', '1','1','9571.08', '1','1','2550.0', '1','1','7021.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003308.0','1018852.0','227', '193','49','110248.64', '168','38','58488.86', '157','24','51759.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091572.0','1044419.0','1', '1','1','1406.0', '1','1','1406.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003309.0','1018852.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091573.0','1044419.0','70', '64','20','16147.46', '62','16','11243.11', '49','10','4904.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003310.0','1018852.0','50', '33','3','3168.0', '25','3','2868.0', '21','1','300.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091574.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003311.0','1018852.0','24', '23','15','38569.83', '22','15','34218.86', '12','3','4350.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091575.0','1044419.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003312.0','1018852.0','21', '16','3','3856.5', '15','3','3856.5', '10','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091576.0','1044419.0','2182', '1995','1198','2980022.23', '1935','754','1840133.4', '1239','810','1139888.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003313.0','1018852.0','24', '24','3','5768.3', '24','2','1675.73', '18','2','4092.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091577.0','1044419.0','31', '30','17','54359.92', '30','17','45169.09', '19','7','9190.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003314.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091578.0','1044419.0','317', '303','204','437066.44', '298','179','331627.77', '170','83','105438.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003315.0','1018852.0','3', '2','1','2550.0', '2','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091579.0','1044419.0','1', '1','1','1306.75', '1','1','455.0', '1','1','851.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003316.0','1018852.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091580.0','1044419.0','3042', '2764','1854','4310865.87', '2687','1166','2733963.25', '1876','1279','1576902.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003317.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091581.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003318.0','1018852.0','616', '580','150','157876.04', '520','88','91906.17', '455','78','65969.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091582.0','1044419.0','679', '606','330','631466.68', '589','322','530187.06', '267','51','101279.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003319.0','1018852.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091583.0','1044419.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003320.0','1018852.0','1', '1','1','734.45', '1','1','734.45', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091584.0','1044419.0','44', '40','16','12331.6', '39','11','8730.48', '28','6','3601.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003321.0','1018852.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091585.0','1044419.0','4', '4','2','7205.32', '4','2','3455.8', '2','2','3749.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003322.0','1018852.0','1', '1','1','1129.43', '0','0','0.0', '1','1','1129.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091586.0','1044419.0','1', '1','1','1276.58', '1','1','1275.0', '1','1','1.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003323.0','1018852.0','1', '1','1','859.65', '1','0','0.0', '1','1','859.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091587.0','1044419.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003324.0','1018852.0','372', '352','274','789631.98', '341','161','478412.1', '258','194','311219.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091588.0','1044419.0','15', '15','11','12018.65', '15','10','11240.68', '10','2','777.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003325.0','1018852.0','14', '13','5','8651.98', '12','5','6220.67', '6','2','2431.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091589.0','1044419.0','1', '1','1','3228.0', '1','1','2725.95', '1','1','502.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003326.0','1018852.0','5', '3','3','2196.48', '3','2','565.66', '2','2','1630.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091590.0','1044419.0','214', '200','125','306051.01', '193','95','231514.31', '121','68','74536.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003327.0','1018852.0','240', '215','150','252493.63', '203','93','166558.37', '142','98','85935.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091591.0','1044419.0','48', '43','18','32441.2', '42','17','27339.51', '22','7','5101.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003328.0','1018865.0','315', '300','239','945494.34', '295','209','619137.95', '216','128','326356.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091592.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003329.0','1018865.0','1', '1','1','3304.83', '1','1','3304.83', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091593.0','1044432.0','944', '863','488','843152.67', '829','360','560527.41', '508','229','282625.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003330.0','1018865.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091594.0','1044432.0','2', '2','1','367.0', '2','1','367.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003331.0','1018865.0','492', '466','330','817878.14', '457','216','501376.59', '332','226','316501.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091595.0','1044432.0','37', '37','24','59516.84', '37','18','39291.13', '22','17','20225.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003332.0','1018865.0','1', '1','1','622.0', '1','1','622.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091596.0','1044432.0','40', '37','20','39891.75', '35','16','36282.37', '21','8','3609.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003333.0','1018865.0','2', '2','1','12650.75', '2','1','4152.22', '2','1','8498.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091597.0','1044432.0','6', '6','3','2509.65', '6','3','2509.65', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003334.0','1018865.0','159', '141','53','98784.41', '132','36','60467.23', '80','29','38317.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091598.0','1044432.0','70', '66','41','74095.54', '64','26','53616.02', '43','32','20479.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003335.0','1018865.0','4', '4','2','5989.38', '4','2','5100.0', '3','1','889.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091599.0','1044432.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003336.0','1018865.0','4', '4','1','1342.91', '4','1','1342.91', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091600.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003337.0','1018865.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091601.0','1044432.0','4', '3','3','2793.89', '3','1','1457.46', '3','3','1336.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003338.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091602.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003339.0','1018865.0','21', '21','12','19116.91', '21','10','13789.99', '13','6','5326.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091603.0','1044432.0','88', '83','59','134003.23', '82','52','93872.23', '56','25','40131.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003340.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091604.0','1044432.0','2', '2','2','4717.55', '2','2','4717.55', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003341.0','1018865.0','2', '2','1','183.87', '2','1','183.87', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091605.0','1044432.0','47', '47','37','53994.68', '46','14','31729.79', '40','34','22264.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003342.0','1018865.0','10', '10','6','10879.4', '10','4','7478.33', '4','4','3401.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091606.0','1044432.0','10', '9','4','5145.36', '9','4','5137.46', '5','1','7.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003343.0','1018865.0','2', '2','1','6174.0', '2','1','6174.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091607.0','1044432.0','2', '2','1','291.0', '2','1','291.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003344.0','1018865.0','3', '2','1','1378.32', '2','1','1378.32', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091608.0','1044432.0','1019', '963','686','1488165.55', '927','362','851759.02', '713','512','636406.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003345.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091609.0','1044432.0','1', '1','1','843.9', '1','1','843.9', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003346.0','1018865.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091610.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003347.0','1018865.0','486', '464','309','544368.98', '458','267','355726.58', '281','133','188642.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091611.0','1044432.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003348.0','1018865.0','1', '1','1','812.25', '1','0','0.0', '1','1','812.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091612.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003349.0','1018865.0','3651', '3406','2328','5114637.18', '3276','1322','2769094.78', '2501','1713','2345542.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091613.0','1044432.0','1', '1','1','311.0', '1','1','311.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003350.0','1018865.0','51', '50','35','50002.89', '49','31','37934.85', '25','11','12068.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091614.0','1044432.0','4', '4','3','6595.82', '4','3','6375.0', '1','1','220.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003351.0','1018865.0','63', '58','30','62881.11', '58','28','55192.71', '23','9','7688.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091615.0','1044432.0','8', '7','1','2418.73', '6','1','2202.65', '3','1','216.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003352.0','1018865.0','36', '33','31','70363.37', '32','19','44346.74', '30','24','26016.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091616.0','1044432.0','3', '2','1','311.0', '2','1','311.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003353.0','1018865.0','53', '48','26','37011.47', '47','23','30428.89', '18','9','6582.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091617.0','1044432.0','106', '96','54','130268.67', '94','46','95633.59', '43','24','34635.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003354.0','1018865.0','6', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091618.0','1044432.0','14', '13','7','21204.22', '13','6','13494.96', '6','4','7709.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003355.0','1018865.0','1', '1','1','2080.9', '1','1','740.0', '1','1','1340.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091619.0','1044432.0','97', '87','56','105644.83', '84','45','78333.5', '39','19','27311.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003356.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091620.0','1044432.0','25', '23','15','27759.46', '23','10','15118.21', '14','9','12641.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003357.0','1018865.0','11', '10','5','8467.61', '10','4','8186.75', '5','2','280.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091621.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003358.0','1018865.0','1', '1','1','3166.9', '1','1','2861.0', '1','1','305.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091622.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003359.0','1018865.0','1', '1','1','954.45', '1','0','0.0', '1','1','954.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091623.0','1044432.0','400', '365','200','447439.4', '354','168','363118.11', '186','76','84321.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003360.0','1018865.0','4', '3','1','1275.0', '3','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091624.0','1044432.0','1', '1','1','2764.99', '1','1','622.0', '1','1','2142.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003361.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091625.0','1044432.0','1', '1','1','6359.4', '1','1','4216.24', '1','1','2143.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003362.0','1018865.0','1', '1','1','2829.28', '1','1','2550.0', '1','1','279.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091626.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003363.0','1018865.0','1', '1','1','2813.53', '1','1','2550.0', '1','1','263.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091627.0','1044432.0','1', '1','1','1897.0', '1','1','1897.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003364.0','1018865.0','10', '10','7','14341.12', '10','7','12374.75', '4','2','1966.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091628.0','1044432.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003365.0','1018865.0','110', '103','59','88834.2', '100','44','60947.95', '61','35','27886.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091629.0','1044432.0','6', '5','4','36786.46', '4','3','22320.0', '4','3','14466.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003366.0','1018865.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091630.0','1044432.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003367.0','1018865.0','6', '6','3','3080.43', '6','2','2550.0', '3','2','530.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091631.0','1044432.0','4', '2','1','6724.3', '2','1','5462.12', '1','1','1262.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003368.0','1018865.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091632.0','1044432.0','1676', '1563','1015','2134082.58', '1511','719','1470036.99', '1023','568','664045.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003369.0','1018865.0','3', '3','3','11985.53', '3','3','3611.56', '3','3','8373.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091633.0','1044432.0','1', '1','1','1411.06', '1','1','1411.06', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003370.0','1018865.0','15', '15','5','6880.58', '12','4','3438.08', '10','2','3442.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091634.0','1044432.0','74', '70','40','128312.1', '69','35','103561.38', '40','20','24750.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003371.0','1018865.0','1', '1','1','4296.14', '1','1','4296.14', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091635.0','1044432.0','18', '17','8','16059.29', '17','7','10769.88', '8','4','5289.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003372.0','1018865.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091636.0','1044432.0','2', '2','1','1216.93', '2','1','1216.93', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003373.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091637.0','1044432.0','37', '34','24','59633.33', '34','22','48116.99', '18','12','11516.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003374.0','1018865.0','1466', '1339','791','1916039.23', '1270','620','1230280.34', '780','410','685758.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091638.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003375.0','1018865.0','1', '1','1','3171.32', '1','1','3171.32', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091639.0','1044432.0','121', '117','86','162184.21', '115','80','136035.91', '65','31','26148.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003376.0','1018865.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091640.0','1044432.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003377.0','1018865.0','6', '3','2','9139.92', '3','2','7004.1', '2','2','2135.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091641.0','1044432.0','10', '9','4','4449.77', '9','4','3662.82', '5','2','786.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003378.0','1018865.0','1', '1','1','954.45', '1','0','0.0', '1','1','954.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091642.0','1044432.0','1', '1','1','363.1', '1','1','363.1', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003379.0','1018865.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091643.0','1044432.0','1', '1','1','3569.14', '1','1','2550.0', '1','1','1019.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003380.0','1018865.0','7', '7','2','8616.62', '7','2','3012.35', '3','1','5604.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091644.0','1044432.0','20', '15','9','12736.37', '14','8','11025.86', '6','3','1710.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003381.0','1018865.0','8', '8','4','6015.38', '8','3','5750.32', '4','2','265.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091645.0','1044432.0','111', '108','63','104749.38', '108','52','85691.16', '63','29','19058.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003382.0','1018865.0','51', '46','30','41675.92', '46','19','26764.71', '28','17','14911.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091646.0','1044432.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003383.0','1018865.0','5', '5','4','2843.36', '5','4','2843.36', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091647.0','1044432.0','2', '2','1','1520.69', '2','1','1520.69', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003384.0','1018865.0','145', '134','75','129886.0', '131','66','104384.96', '61','22','25501.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091648.0','1044432.0','2', '2','2','3353.91', '2','1','560.93', '2','1','2792.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003385.0','1018865.0','55', '51','33','112811.6', '51','30','89314.85', '18','12','23496.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091649.0','1044432.0','5', '5','0','0.0', '5','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003386.0','1018865.0','143', '135','93','247084.3', '130','57','138997.44', '92','68','108086.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091650.0','1044432.0','1', '1','1','2194.46', '1','1','852.0', '1','1','1342.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003387.0','1018865.0','3', '2','2','1679.68', '2','2','1679.68', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091651.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003388.0','1018865.0','17', '14','12','25649.03', '13','8','17726.84', '11','10','7922.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091652.0','1044432.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003389.0','1018865.0','1', '1','1','5053.67', '1','0','0.0', '1','1','5053.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091653.0','1044432.0','239', '219','144','282848.88', '207','107','208960.54', '151','81','73888.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003390.0','1018865.0','3', '3','1','311.0', '3','1','311.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091654.0','1044432.0','353', '333','237','587133.18', '324','186','415883.47', '223','131','171249.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003391.0','1018865.0','22', '19','12','18241.29', '17','5','7106.84', '13','10','11134.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091655.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003392.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091656.0','1044432.0','45', '43','26','50319.64', '42','18','28542.65', '22','13','21776.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003393.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091657.0','1044432.0','9', '8','6','15583.77', '8','5','13839.64', '5','2','1744.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003394.0','1018865.0','252', '226','83','138668.3', '218','63','110240.14', '106','32','28428.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091658.0','1044432.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003395.0','1018865.0','7', '5','0','0.0', '3','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091659.0','1044432.0','22', '20','13','22171.44', '20','9','15939.84', '10','8','6231.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003396.0','1018865.0','2', '2','1','223.98', '2','0','0.0', '2','1','223.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091660.0','1044432.0','55', '48','27','66310.37', '47','19','53054.15', '29','12','13256.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003397.0','1018865.0','291', '272','167','424980.97', '269','148','268734.06', '158','79','156246.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091661.0','1044432.0','138', '127','51','86366.84', '127','44','72162.09', '56','20','14204.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003184.0','1018865.0','1', '1','1','349.23', '0','0','0.0', '1','1','349.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091448.0','1044432.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003398.0','1018865.0','1', '1','1','311.0', '1','1','311.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091662.0','1044432.0','73', '68','43','99478.09', '67','37','81440.9', '40','18','18037.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003399.0','1018865.0','4', '3','1','3574.16', '3','1','2550.0', '1','1','1024.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091663.0','1044432.0','4', '4','3','3363.82', '4','2','1886.68', '4','3','1477.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003400.0','1018865.0','4', '4','1','2235.0', '4','1','2235.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091664.0','1044432.0','15', '11','7','21253.38', '10','7','19529.0', '7','2','1724.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003401.0','1018865.0','8', '6','2','2515.53', '6','1','962.0', '3','2','1553.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091665.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003402.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091666.0','1044432.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003403.0','1018865.0','104', '100','61','106550.53', '98','55','82861.57', '44','18','23688.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091667.0','1044432.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003404.0','1018865.0','12', '10','7','13244.67', '10','7','11090.81', '7','2','2153.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091668.0','1044432.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003405.0','1018865.0','29', '28','17','43980.59', '28','17','34422.81', '11','4','9557.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091669.0','1044432.0','15', '13','7','11268.97', '13','4','8009.28', '7','4','3259.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003406.0','1018865.0','9', '7','6','4477.81', '6','2','1732.0', '5','4','2745.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091670.0','1044432.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003407.0','1018865.0','1', '1','1','4223.06', '1','1','4223.06', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091671.0','1044432.0','5', '5','4','11553.51', '4','4','10624.61', '2','1','928.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003408.0','1018865.0','1', '1','1','2997.23', '1','1','2781.15', '1','1','216.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091672.0','1044432.0','3', '3','2','2696.98', '3','2','1894.21', '3','1','802.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003409.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091673.0','1044432.0','193', '177','73','214969.47', '170','64','139614.78', '82','29','75354.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003410.0','1018865.0','1', '1','1','4582.0', '1','1','4582.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091674.0','1044432.0','959', '860','480','1110789.61', '840','352','770837.68', '452','263','339951.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003411.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091675.0','1044432.0','3', '3','1','617.68', '3','1','617.68', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003412.0','1018865.0','8', '7','2','3036.27', '7','2','3036.27', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091676.0','1044432.0','274', '247','144','303598.02', '237','116','223280.36', '120','64','80317.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003413.0','1018865.0','457', '432','232','507111.24', '423','211','401742.46', '244','99','105368.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091677.0','1044432.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003414.0','1018865.0','1', '1','1','4047.45', '1','1','3172.0', '1','1','875.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091678.0','1044432.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003415.0','1018865.0','1', '1','1','828.05', '1','0','0.0', '1','1','828.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091679.0','1044432.0','1', '1','1','3290.0', '1','1','3290.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003416.0','1018865.0','4743', '4476','3086','8902323.3', '4362','2114','4468876.36', '3264','2129','4433446.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091680.0','1044432.0','9', '9','8','21947.28', '9','7','16076.26', '7','3','5871.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003417.0','1018865.0','28', '25','20','44840.42', '22','10','20857.33', '21','16','23983.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091681.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003418.0','1018865.0','1', '1','1','1064.6', '1','1','1064.6', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091682.0','1044432.0','14', '12','8','15802.31', '12','5','11717.63', '7','6','4084.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003419.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091683.0','1044432.0','354', '316','178','437280.12', '304','152','328755.43', '172','89','108524.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003420.0','1018865.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091684.0','1044432.0','3', '3','3','13726.81', '3','3','8382.12', '2','2','5344.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003421.0','1018865.0','63', '54','19','42490.05', '49','14','34241.24', '31','9','8248.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091685.0','1044432.0','7', '7','6','15644.05', '7','6','13238.72', '6','3','2405.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003422.0','1018865.0','1619', '1498','820','1363688.81', '1400','550','701120.05', '971','468','662568.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091686.0','1044432.0','8', '6','3','1953.95', '6','3','1953.95', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003423.0','1018865.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091687.0','1044432.0','23', '21','13','50065.48', '21','13','33231.72', '14','4','16833.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003424.0','1018865.0','1', '1','1','10822.0', '1','1','10822.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091688.0','1044432.0','102', '90','40','54724.75', '86','27','40890.66', '51','22','13834.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003425.0','1018865.0','1', '1','1','2593.51', '1','1','2593.51', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091689.0','1044432.0','29', '27','17','65185.7', '27','16','52317.94', '13','6','12867.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003426.0','1018865.0','23', '17','7','6178.72', '16','6','5714.96', '6','2','463.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091690.0','1044432.0','2519', '2315','1248','1980295.23', '2177','828','1067728.91', '1473','723','912566.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003427.0','1018865.0','2', '2','1','158.0', '1','0','0.0', '2','1','158.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091691.0','1044432.0','53', '49','25','61523.84', '49','20','40439.08', '25','13','21084.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003428.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091692.0','1044432.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003429.0','1018865.0','2', '2','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091693.0','1044432.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003430.0','1018865.0','1', '1','1','2141.66', '1','1','1897.0', '1','1','244.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091694.0','1044432.0','5', '5','1','2814.01', '5','1','1000.0', '3','1','1814.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003431.0','1018865.0','1', '1','1','3885.67', '1','1','3838.27', '1','1','47.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091695.0','1044432.0','4', '4','3','4677.76', '4','3','3547.67', '4','1','1130.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003432.0','1018865.0','15', '15','5','9111.09', '15','4','6901.43', '9','2','2209.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091696.0','1044432.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003433.0','1018865.0','199', '191','115','251480.45', '186','103','178659.98', '104','54','72820.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091697.0','1044432.0','24', '23','18','41278.52', '21','10','28326.54', '17','14','12951.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003434.0','1018865.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091698.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003435.0','1018865.0','2', '2','1','6285.95', '2','1','5100.0', '1','1','1185.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091699.0','1044432.0','27', '25','11','29835.61', '25','10','24551.54', '11','6','5284.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003436.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091700.0','1044432.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003437.0','1018865.0','1827', '1685','1170','2801618.85', '1614','838','1842471.76', '1167','689','959147.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091701.0','1044432.0','48', '44','16','33597.33', '43','15','28252.7', '17','4','5344.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003438.0','1018865.0','1', '1','1','796.45', '1','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091702.0','1044432.0','24', '23','18','38909.18', '22','18','29493.86', '13','5','9415.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003439.0','1018865.0','17', '17','15','34149.28', '16','8','20599.81', '13','10','13549.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091703.0','1044432.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003440.0','1018865.0','18', '16','11','31302.51', '16','9','23173.94', '10','5','8128.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091704.0','1044432.0','40', '38','29','79894.03', '36','21','49462.63', '29','17','30431.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003441.0','1018865.0','20', '19','9','25505.54', '19','8','22310.87', '11','5','3194.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091705.0','1044432.0','4', '3','3','20753.07', '3','3','11444.75', '2','2','9308.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003442.0','1018865.0','4', '4','1','1172.0', '4','1','1172.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091706.0','1044432.0','5', '4','2','2884.7', '4','1','2861.0', '1','1','23.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003443.0','1018865.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091707.0','1044432.0','16', '16','10','18532.28', '16','8','14477.31', '6','4','4054.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003444.0','1018865.0','230', '219','102','161084.15', '211','85','128418.88', '116','40','32665.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091708.0','1044432.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003445.0','1018865.0','5', '5','4','3256.9', '5','0','0.0', '4','4','3256.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091709.0','1044432.0','93', '86','62','193728.46', '83','50','129489.96', '67','37','64238.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003446.0','1018865.0','1', '1','1','150.0', '0','0','0.0', '1','1','150.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091710.0','1044432.0','9', '8','3','6626.75', '8','3','5993.55', '3','1','633.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003447.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091711.0','1044432.0','334', '298','199','363858.17', '287','160','296665.99', '171','83','67192.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003448.0','1018865.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091712.0','1044432.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003449.0','1018865.0','6', '6','3','6205.1', '6','3','6205.1', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091713.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003450.0','1018865.0','3', '2','2','5841.58', '2','2','5840.0', '1','1','1.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091714.0','1044432.0','7', '6','4','8957.03', '6','4','8053.91', '2','1','903.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003451.0','1018865.0','6', '4','3','2620.36', '4','2','2470.36', '1','1','150.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091715.0','1044432.0','1', '1','1','216.08', '1','0','0.0', '1','1','216.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003452.0','1018865.0','153', '144','81','155200.53', '143','72','119059.01', '71','28','36141.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091716.0','1044432.0','34', '33','14','30086.5', '32','11','19616.43', '13','6','10470.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003453.0','1018865.0','5', '5','1','1275.0', '5','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091717.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003454.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091718.0','1044432.0','113', '108','78','158723.05', '104','73','126774.21', '56','27','31948.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003455.0','1018865.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091719.0','1044432.0','54', '48','24','53252.9', '48','19','39824.96', '23','14','13427.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003456.0','1018865.0','16', '12','6','14596.37', '12','4','14116.81', '6','3','479.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091720.0','1044432.0','38', '35','20','58530.71', '35','14','32812.64', '20','15','25718.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003457.0','1018865.0','15', '12','9','21163.06', '12','8','17371.02', '4','4','3792.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091721.0','1044432.0','25', '24','5','3593.21', '23','4','2967.97', '14','1','625.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003458.0','1018865.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091722.0','1044432.0','1', '1','1','3284.0', '1','1','3284.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003459.0','1018865.0','19', '19','14','22568.6', '17','3','3554.92', '16','13','19013.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091723.0','1044432.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003460.0','1018865.0','24', '21','13','54823.25', '21','10','24590.12', '13','7','30233.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091724.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003461.0','1018865.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091725.0','1044432.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003462.0','1018865.0','12', '12','10','62227.09', '12','9','30073.95', '9','7','32153.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091726.0','1044432.0','30', '26','12','41657.6', '25','9','16739.56', '13','7','24918.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003463.0','1018865.0','25', '24','7','11117.33', '24','6','9575.43', '11','2','1541.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091727.0','1044432.0','2', '2','2','1453.84', '1','0','0.0', '2','2','1453.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003464.0','1018865.0','3', '3','2','2394.07', '3','2','979.31', '2','2','1414.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091728.0','1044432.0','2', '2','1','1425.0', '2','1','1275.0', '1','1','150.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003465.0','1018865.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091729.0','1044432.0','679', '647','346','673875.36', '634','317','519566.43', '341','98','154308.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003466.0','1018865.0','38', '37','24','47300.06', '37','22','37803.9', '22','12','9496.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091730.0','1044432.0','39', '38','13','29687.38', '35','8','10564.8', '17','8','19122.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003467.0','1018865.0','1', '1','1','3410.71', '1','1','1897.0', '1','1','1513.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091731.0','1044432.0','6', '4','3','3612.64', '4','1','2015.0', '3','2','1597.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003468.0','1018865.0','228', '215','107','209489.93', '207','87','147539.44', '128','48','61950.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091732.0','1044432.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003469.0','1018865.0','16', '15','4','2707.39', '15','3','1767.51', '2','2','939.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091733.0','1044432.0','14', '13','6','7363.59', '13','6','6324.99', '6','2','1038.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003470.0','1018865.0','7', '6','1','2188.02', '6','1','2188.02', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091734.0','1044432.0','31', '29','15','28188.52', '28','13','18375.18', '12','7','9813.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003471.0','1018865.0','275', '265','138','317437.7', '258','120','202525.28', '144','65','114912.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091735.0','1044432.0','251', '240','157','401809.71', '236','145','283158.96', '149','72','118650.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003472.0','1018865.0','24', '24','18','27904.51', '23','16','24018.15', '13','7','3886.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091736.0','1044432.0','3', '3','1','3402.0', '3','1','3402.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003473.0','1018865.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091737.0','1044432.0','21', '21','16','35310.6', '21','12','27167.29', '15','10','8143.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003474.0','1018865.0','848', '826','436','816257.17', '799','356','482534.18', '538','204','333722.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091738.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003475.0','1018865.0','73', '68','38','76753.99', '68','31','48608.11', '44','18','28145.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091739.0','1044432.0','36', '35','15','40458.59', '34','9','18223.77', '19','12','22234.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003476.0','1018865.0','6', '3','1','676.69', '3','1','676.69', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091740.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003477.0','1018865.0','781', '713','459','1024707.57', '690','404','843225.53', '395','183','181482.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091741.0','1044432.0','3', '3','1','470.3', '3','0','0.0', '3','1','470.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003478.0','1018865.0','12', '11','7','10360.37', '11','4','5706.66', '5','3','4653.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091742.0','1044432.0','188', '179','119','332874.7', '177','109','235134.24', '113','57','97740.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003479.0','1018865.0','8', '8','5','5451.31', '8','2','2550.0', '8','4','2901.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091743.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003480.0','1018865.0','40', '39','19','37508.47', '37','16','29347.25', '20','6','8161.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091744.0','1044432.0','68', '66','31','96263.06', '61','27','53437.62', '37','14','42825.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003481.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091745.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003482.0','1018865.0','69', '60','27','71409.6', '57','18','25092.17', '32','16','46317.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091746.0','1044432.0','13', '13','12','29477.07', '13','11','21520.94', '10','7','7956.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003483.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091747.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003484.0','1018865.0','94', '90','56','131643.84', '88','52','83662.92', '60','21','47980.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091748.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003485.0','1018865.0','7', '6','2','780.83', '6','1','661.88', '1','1','118.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091749.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003486.0','1018865.0','6', '4','4','24799.16', '4','4','12141.82', '3','1','12657.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091750.0','1044432.0','53', '51','29','80781.14', '51','27','43606.91', '31','11','37174.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003487.0','1018865.0','180', '179','105','211680.13', '173','99','177684.66', '102','31','33995.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091751.0','1044432.0','29', '27','20','52899.11', '27','17','27573.28', '22','13','25325.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003488.0','1018865.0','5', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091752.0','1044432.0','37', '35','16','25000.18', '32','10','11554.15', '21','9','13446.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003489.0','1018865.0','23', '22','14','22138.1', '22','14','20299.3', '9','4','1838.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091753.0','1044432.0','1', '1','1','598.93', '1','1','598.93', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003490.0','1018865.0','5', '5','3','10497.07', '5','3','10197.74', '3','1','299.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091754.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003491.0','1018865.0','42', '40','27','39417.55', '39','23','34293.25', '19','10','5124.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091755.0','1044432.0','5', '5','1','1122.0', '5','1','1122.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003492.0','1018865.0','1', '1','1','4020.68', '1','1','2156.71', '1','1','1863.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091756.0','1044432.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003493.0','1018865.0','498', '477','234','372462.96', '462','181','243579.68', '286','110','128883.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091757.0','1044432.0','25', '25','12','26672.91', '25','12','18388.87', '17','5','8284.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003494.0','1018865.0','4', '4','2','2316.54', '4','2','2316.54', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091758.0','1044432.0','3', '3','2','5756.25', '3','1','948.68', '3','1','4807.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003495.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091759.0','1044432.0','1', '1','1','457.95', '1','1','218.17', '1','1','239.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003496.0','1018865.0','1', '1','1','311.0', '1','1','311.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091760.0','1044432.0','667', '623','344','1023871.55', '613','315','685685.48', '326','162','338186.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003497.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091761.0','1044432.0','12', '11','5','25017.59', '11','4','12408.0', '7','3','12609.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003498.0','1018865.0','4', '4','2','10291.98', '4','2','6007.66', '3','1','4284.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091762.0','1044432.0','11', '9','8','20972.68', '9','8','14687.48', '5','3','6285.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003499.0','1018865.0','5', '4','3','3855.83', '4','3','3428.59', '1','1','427.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091763.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003500.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091764.0','1044432.0','14', '12','5','13601.55', '12','5','11197.76', '5','1','2403.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003501.0','1018865.0','12', '10','5','8760.85', '10','4','7870.56', '5','2','890.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091765.0','1044432.0','2', '2','2','17380.0', '2','2','17380.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003502.0','1018865.0','125', '121','63','132869.21', '117','47','102962.64', '59','27','29906.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091766.0','1044432.0','278', '265','142','275360.64', '262','136','212363.54', '149','34','62997.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003503.0','1018865.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091767.0','1044432.0','2', '1','1','2171.4', '1','1','2171.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003504.0','1018865.0','151', '126','57','100501.26', '120','48','72931.06', '61','24','27570.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091768.0','1044432.0','117', '99','70','343221.89', '97','62','67008.8', '72','41','276213.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003505.0','1018865.0','175', '170','88','202510.7', '167','80','140301.54', '97','36','62209.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091769.0','1044432.0','1', '1','1','1501.2', '1','1','1501.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003506.0','1018865.0','477', '450','299','979772.29', '446','284','616817.26', '276','151','362955.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091770.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003507.0','1018865.0','62', '56','24','64687.03', '55','19','41499.77', '27','12','23187.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091771.0','1044432.0','5', '4','3','7623.7', '4','2','2740.16', '3','2','4883.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003508.0','1018865.0','53', '49','27','89790.01', '48','24','56922.35', '24','13','32867.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091772.0','1044432.0','28', '25','15','29001.35', '22','9','9856.35', '22','9','19145.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003509.0','1018865.0','229', '223','125','288268.56', '213','101','175196.66', '144','62','113071.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091773.0','1044432.0','4', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003510.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091774.0','1044432.0','5', '5','4','19491.69', '5','4','18270.8', '3','1','1220.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003511.0','1018865.0','48', '47','23','52249.57', '45','19','30916.32', '28','9','21333.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091775.0','1044432.0','51', '47','30','43446.85', '46','23','28695.5', '27','15','14751.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003512.0','1018865.0','25', '25','15','31115.42', '25','14','22284.3', '16','4','8831.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091776.0','1044432.0','957', '930','523','1148941.37', '904','440','706325.08', '587','232','442616.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003513.0','1018865.0','13', '12','6','6273.52', '11','4','3559.82', '7','3','2713.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091777.0','1044432.0','3', '2','1','1393.95', '2','1','1275.0', '2','1','118.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003514.0','1018865.0','1', '1','1','2515.09', '1','1','2515.09', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091778.0','1044432.0','7', '6','2','5130.25', '6','1','2802.06', '2','1','2328.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003515.0','1018865.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091779.0','1044432.0','1', '1','1','3190.0', '1','1','3190.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003516.0','1018865.0','2', '2','1','3322.69', '2','1','3322.69', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091780.0','1044432.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003517.0','1018865.0','30', '29','20','61880.63', '29','16','40188.62', '17','12','21692.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091781.0','1044432.0','1', '1','1','565.7', '1','1','565.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003518.0','1018865.0','56', '48','18','41104.33', '46','14','24821.63', '24','10','16282.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091782.0','1044432.0','8', '7','5','5231.22', '7','1','1961.0', '5','5','3270.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003519.0','1018865.0','172', '166','88','156400.88', '159','47','57723.17', '118','58','98677.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091783.0','1044432.0','1', '1','1','434.98', '1','1','434.98', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003520.0','1018865.0','148', '132','67','157690.95', '128','57','124300.81', '53','22','33390.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091784.0','1044432.0','2', '2','1','220.82', '2','0','0.0', '1','1','220.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003521.0','1018865.0','6', '5','2','6883.15', '5','1','2791.0', '2','2','4092.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091785.0','1044432.0','4', '3','1','1738.24', '3','1','1738.24', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003522.0','1018865.0','67', '58','35','80601.95', '56','31','61037.6', '37','15','19564.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091786.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003523.0','1018865.0','200', '191','103','240197.65', '190','92','141649.95', '117','52','98547.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091787.0','1044432.0','548', '532','277','491936.42', '521','235','351035.98', '317','107','140900.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003524.0','1018865.0','4', '2','1','5840.0', '2','1','5840.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091788.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003525.0','1018865.0','382', '368','225','574190.24', '357','210','361023.11', '252','89','213167.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091789.0','1044432.0','19', '14','3','3343.09', '13','2','3175.48', '5','1','167.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003526.0','1018865.0','4', '4','2','1584.01', '4','1','1496.31', '3','1','87.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091790.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003527.0','1018865.0','13', '13','7','7355.62', '12','7','6806.53', '3','1','549.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091791.0','1044432.0','1', '1','1','3349.29', '1','1','1516.0', '1','1','1833.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003528.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091792.0','1044432.0','672', '652','363','796661.23', '637','317','521675.19', '414','167','274986.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003529.0','1018865.0','389', '369','216','451305.68', '353','182','283600.32', '250','111','167705.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091793.0','1044432.0','11', '11','5','4195.66', '11','4','2631.07', '5','3','1564.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003530.0','1018865.0','119', '109','42','67774.86', '109','38','50752.47', '48','15','17022.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091794.0','1044432.0','3', '2','1','1680.0', '2','1','1680.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003531.0','1018865.0','37', '37','13','28644.61', '37','12','25491.58', '13','3','3153.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091795.0','1044432.0','8', '8','3','8007.06', '8','3','6472.45', '6','1','1534.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003532.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091796.0','1044432.0','6', '5','2','5250.32', '5','2','3988.14', '2','1','1262.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003533.0','1018865.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091797.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003534.0','1018865.0','9', '7','4','8673.96', '5','3','7749.08', '5','2','924.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091798.0','1044432.0','145', '138','72','130084.61', '130','60','86373.15', '91','35','43711.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003535.0','1018865.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091799.0','1044432.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003536.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091800.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003537.0','1018865.0','4', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091801.0','1044432.0','168', '160','85','176892.9', '155','71','107100.4', '104','38','69792.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003538.0','1018865.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091802.0','1044432.0','2', '2','1','481.0', '2','1','481.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003539.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091803.0','1044432.0','5', '5','2','2704.65', '5','1','1892.4', '2','1','812.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003540.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091804.0','1044432.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003541.0','1018865.0','257', '248','125','225339.04', '241','104','157953.93', '159','58','67385.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091805.0','1044432.0','1', '1','1','2237.0', '1','1','2237.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003542.0','1018865.0','261', '257','142','311249.03', '254','122','206143.95', '157','61','105105.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091806.0','1044432.0','40', '38','26','79078.55', '38','24','62223.37', '18','8','16855.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003543.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091807.0','1044432.0','268', '258','136','382161.18', '251','114','169670.15', '163','65','212491.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003544.0','1018865.0','4', '4','4','3001.28', '4','3','1814.71', '1','1','1186.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091808.0','1044432.0','6', '4','1','6055.02', '4','1','753.6', '2','1','5301.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003545.0','1018865.0','2', '2','1','218.57', '2','1','218.57', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091809.0','1044432.0','1', '1','1','1553.03', '1','1','1553.03', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003546.0','1018865.0','3', '3','2','1648.05', '1','1','1058.38', '3','2','589.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091810.0','1044432.0','234', '223','144','344208.9', '217','134','302841.28', '121','52','41367.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003547.0','1018865.0','17', '17','11','17426.4', '17','11','17162.87', '6','1','263.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091811.0','1044432.0','2', '2','1','892.15', '2','1','892.15', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003548.0','1018865.0','12', '11','3','15049.42', '11','3','10243.11', '4','3','4806.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091812.0','1044432.0','28', '26','13','37522.99', '24','10','31953.26', '16','7','5569.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003549.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091813.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003550.0','1018865.0','7', '5','3','5530.78', '5','3','5530.78', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091814.0','1044432.0','1', '1','1','828.05', '1','0','0.0', '1','1','828.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003551.0','1018865.0','598', '530','309','689221.95', '508','257','476311.92', '312','147','212910.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091815.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003552.0','1018865.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091816.0','1044432.0','5', '4','1','225.9', '4','1','225.9', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003553.0','1018865.0','3', '3','1','1995.25', '3','1','845.0', '1','1','1150.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091817.0','1044432.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003554.0','1018865.0','34', '33','22','43838.35', '32','20','32220.05', '25','10','11618.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091818.0','1044432.0','1', '1','1','76.43', '1','1','76.43', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003555.0','1018865.0','13', '12','0','0.0', '12','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091819.0','1044432.0','544', '493','276','616739.43', '477','245','434473.71', '275','112','182265.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003556.0','1018865.0','18', '17','14','29845.66', '17','13','27642.05', '7','4','2203.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091820.0','1044432.0','1', '1','1','892.41', '1','0','0.0', '1','1','892.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003557.0','1018865.0','5', '5','3','13646.2', '5','3','8859.86', '3','2','4786.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091821.0','1044432.0','4', '3','1','534.03', '3','1','534.03', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003558.0','1018865.0','132', '129','86','188415.07', '128','80','154875.55', '75','33','33539.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091822.0','1044432.0','2', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003559.0','1018865.0','1', '1','1','2208.26', '1','1','2208.26', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091823.0','1044432.0','5', '5','1','2618.95', '5','1','2500.0', '2','1','118.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003560.0','1018865.0','748', '702','394','783136.71', '668','355','599498.32', '411','159','183638.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091824.0','1044432.0','1', '1','1','5073.06', '1','1','1275.0', '1','1','3798.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003561.0','1018865.0','5', '5','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091825.0','1044432.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003562.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091826.0','1044432.0','1', '1','1','455.0', '1','1','455.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003563.0','1018865.0','2871', '2482','1276','2298242.89', '2330','812','1127859.3', '1655','821','1170383.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091827.0','1044432.0','6', '5','1','15.8', '5','0','0.0', '2','1','15.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003564.0','1018865.0','4', '4','2','1577.8', '4','2','1577.8', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091828.0','1044432.0','536', '479','230','451904.55', '445','123','188818.12', '298','160','263086.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003565.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091829.0','1044432.0','1694', '1572','987','2521090.01', '1525','767','1674028.22', '994','571','847061.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003566.0','1018865.0','217', '211','140','355455.05', '209','131','266349.12', '125','52','89105.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091830.0','1044432.0','2292', '2167','1518','3520981.44', '2073','1167','1591294.45', '1672','964','1929686.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003567.0','1018865.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091831.0','1044432.0','858', '792','514','1334868.92', '770','422','857431.85', '513','278','477437.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003568.0','1018865.0','46', '44','30','55750.17', '43','24','43090.4', '33','15','12659.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091832.0','1044432.0','522', '482','292','594930.24', '453','209','299650.3', '346','188','295279.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003569.0','1018865.0','190', '172','115','312254.79', '169','77','178230.82', '115','70','134023.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091833.0','1044432.0','1', '1','1','3160.9', '1','0','0.0', '1','1','3160.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003570.0','1018865.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091834.0','1044432.0','1', '1','1','311.0', '1','1','311.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003571.0','1018865.0','1', '1','1','5041.42', '1','1','4915.02', '1','1','126.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091835.0','1044432.0','1', '1','1','3458.0', '1','1','3458.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003572.0','1018865.0','2', '2','1','1846.41', '2','1','468.22', '1','1','1378.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091836.0','1044432.0','10', '10','1','67.29', '10','1','67.29', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003573.0','1018865.0','231', '225','140','285564.75', '222','131','232324.54', '132','54','53240.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091837.0','1044432.0','8', '8','1','1366.87', '8','1','1366.87', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003574.0','1018865.0','13', '9','4','9567.54', '9','4','9547.0', '5','1','20.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091838.0','1044432.0','50', '46','30','70866.71', '45','26','51478.71', '33','15','19388.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003575.0','1018865.0','7', '6','3','3269.98', '6','3','2704.29', '3','1','565.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091839.0','1044432.0','52', '52','35','71884.71', '52','32','53990.67', '30','9','17894.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003576.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091840.0','1044432.0','6', '6','4','12487.76', '6','4','12487.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003577.0','1018865.0','1', '1','1','3510.0', '1','1','3510.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091841.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003578.0','1018865.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091842.0','1044432.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003579.0','1018865.0','4', '4','2','8711.95', '4','2','8593.0', '3','1','118.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091843.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003580.0','1018865.0','3', '3','3','16852.49', '3','3','15650.59', '2','1','1201.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091844.0','1044432.0','1', '1','1','2068.95', '1','1','2068.95', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003581.0','1018865.0','63', '59','42','88115.97', '59','31','59220.42', '38','27','28895.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091845.0','1044432.0','27', '24','14','34886.55', '24','12','24651.84', '14','8','10234.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003582.0','1018865.0','1', '1','1','4066.0', '1','1','4066.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091846.0','1044432.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003583.0','1018865.0','3', '3','2','941.91', '3','2','642.58', '3','1','299.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091847.0','1044432.0','2', '2','1','352.13', '2','1','352.13', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003584.0','1018865.0','9', '9','4','8066.98', '9','4','8066.98', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091848.0','1044432.0','31', '31','21','51825.52', '31','16','34692.0', '26','14','17133.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003585.0','1018865.0','15', '15','10','19405.33', '15','8','14530.1', '8','6','4875.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091849.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003586.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091850.0','1044432.0','2', '2','1','256.82', '1','0','0.0', '2','1','256.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003587.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091851.0','1044432.0','1', '1','1','1390.78', '1','1','1390.78', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003588.0','1018865.0','12', '12','5','10097.21', '10','2','9012.0', '6','3','1085.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091852.0','1044432.0','5', '5','2','5591.76', '5','2','5591.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003589.0','1018865.0','1', '1','1','216.58', '1','1','161.28', '1','1','55.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091853.0','1044432.0','2', '2','1','538.32', '2','1','538.32', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003590.0','1018865.0','1235', '1064','548','970908.16', '1013','286','486577.44', '657','388','484330.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091854.0','1044432.0','1', '1','1','2773.11', '1','1','910.0', '1','1','1863.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003591.0','1018865.0','14', '14','5','10150.2', '14','5','8094.13', '4','2','2056.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091855.0','1044432.0','6', '5','4','9432.57', '5','2','5407.0', '3','3','4025.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003592.0','1018865.0','3', '3','1','3933.6', '3','1','1773.37', '2','1','2160.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091856.0','1044432.0','6', '5','4','14834.33', '5','4','11158.81', '3','3','3675.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003593.0','1018865.0','96', '89','60','117780.48', '87','54','87758.64', '61','24','30021.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091857.0','1044432.0','346', '304','159','278696.71', '292','122','173216.07', '200','85','105480.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003594.0','1018865.0','3', '3','1','2938.52', '3','1','1708.6', '1','1','1229.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091858.0','1044432.0','1', '1','1','1794.2', '1','1','1794.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003595.0','1018865.0','169', '163','105','312688.32', '159','103','230549.28', '107','39','82139.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091859.0','1044432.0','2709', '2533','1654','3061440.35', '2394','1165','1429289.66', '1951','1047','1632150.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003596.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091860.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003597.0','1018865.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091861.0','1044432.0','26', '23','16','41505.1', '21','11','25211.94', '18','11','16293.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003598.0','1018865.0','1', '1','1','1507.0', '1','1','1507.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091862.0','1044432.0','6362', '5864','3432','6563925.61', '5542','2283','2927002.93', '4224','2233','3636922.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003599.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091863.0','1044432.0','3', '2','1','424.48', '2','1','192.6', '2','1','231.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003600.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091864.0','1044432.0','12', '10','6','20630.92', '10','6','13624.18', '6','2','7006.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003601.0','1018865.0','14', '12','6','8635.25', '11','3','5781.0', '10','4','2854.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091865.0','1044432.0','8', '8','7','6707.19', '8','2','2636.94', '6','6','4070.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003602.0','1018865.0','2', '2','1','2030.0', '2','1','1424.8', '1','1','605.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091866.0','1044432.0','37', '32','22','40705.28', '31','15','27444.55', '15','10','13260.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003603.0','1018865.0','340', '314','194','433027.96', '301','170','330398.75', '182','84','102629.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091867.0','1044432.0','448', '397','190','321132.12', '381','95','161674.2', '239','137','159457.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003604.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091868.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003605.0','1018865.0','1', '1','1','1953.05', '1','1','1046.0', '1','1','907.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091869.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001440.0', '2003606.0','1018865.0','1', '1','1','821.08', '1','1','821.08', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005892.0', '2091870.0','1044432.0','7', '6','1','845.43', '6','0','0.0', '5','1','845.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003607.0','1018865.0','44', '40','22','54328.88', '36','17','32772.15', '31','10','21556.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091871.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003608.0','1018865.0','6', '5','1','1275.0', '5','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091872.0','1044432.0','3', '3','2','5736.63', '3','2','2975.0', '3','1','2761.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003609.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091873.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003610.0','1018865.0','1', '1','1','455.0', '1','1','455.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091874.0','1044432.0','95', '84','39','41843.23', '72','29','20830.88', '63','16','21012.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003611.0','1018865.0','2', '2','1','118.95', '1','0','0.0', '2','1','118.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091875.0','1044432.0','1', '1','1','2050.48', '1','1','2050.48', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003612.0','1018865.0','1', '1','1','4559.28', '1','1','2781.57', '1','1','1777.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091876.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003613.0','1018865.0','442', '422','218','463099.14', '393','135','209989.92', '290','153','253109.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091877.0','1044432.0','1', '1','1','8732.75', '1','1','6010.0', '1','1','2722.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003614.0','1018865.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091878.0','1044432.0','173', '162','106','285986.79', '158','92','219489.31', '103','59','66497.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003615.0','1018865.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091879.0','1044432.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003616.0','1018865.0','146', '140','59','154293.67', '136','56','109399.37', '78','21','44894.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091880.0','1044432.0','301', '266','184','412603.26', '257','114','256351.0', '183','119','156252.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003617.0','1018865.0','2', '2','1','618.06', '2','0','0.0', '2','1','618.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091881.0','1044432.0','13', '11','6','11313.98', '10','5','10733.89', '6','1','580.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003618.0','1018865.0','2024', '1847','811','1095508.06', '1750','495','543374.62', '1154','497','552133.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091882.0','1044432.0','12', '10','6','11020.91', '10','6','10901.96', '4','1','118.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003619.0','1018865.0','7', '5','1','10511.0', '5','1','10511.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091883.0','1044432.0','2', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003620.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091884.0','1044432.0','1', '1','1','2151.84', '1','1','2151.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003621.0','1018865.0','1', '1','1','1226.47', '1','1','455.0', '1','1','771.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091885.0','1044432.0','88', '77','28','54439.95', '75','26','45794.7', '27','8','8645.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003622.0','1018865.0','1', '1','1','861.23', '1','0','0.0', '1','1','861.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091886.0','1044432.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003623.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091887.0','1044432.0','19', '19','12','45586.57', '19','11','21037.54', '14','9','24549.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003624.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091888.0','1044432.0','1', '1','1','3290.0', '1','1','3290.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003625.0','1018865.0','1', '1','1','3288.18', '1','1','2026.0', '1','1','1262.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091889.0','1044432.0','3', '2','1','636.96', '2','1','420.88', '1','1','216.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003626.0','1018865.0','1', '1','1','2990.7', '1','0','0.0', '1','1','2990.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091890.0','1044432.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003627.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091891.0','1044432.0','3', '3','2','3676.08', '3','1','3460.0', '2','1','216.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003628.0','1018865.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091892.0','1044432.0','1300', '1118','585','958871.64', '1066','295','470511.29', '688','443','488360.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003629.0','1018865.0','3', '1','1','1513.09', '1','1','1513.09', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091893.0','1044432.0','914', '878','596','1117412.67', '849','339','665183.05', '630','399','452229.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003630.0','1018865.0','9', '9','5','6606.1', '9','5','6514.6', '4','1','91.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091894.0','1044432.0','4', '4','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003631.0','1018865.0','37', '35','23','56985.98', '34','22','46441.79', '14','8','10544.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091895.0','1044432.0','58', '57','39','97004.73', '56','35','65097.52', '33','14','31907.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003632.0','1018865.0','2', '2','2','1375.86', '2','2','1375.86', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091896.0','1044432.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003633.0','1018865.0','1', '1','1','3668.0', '1','1','3510.0', '1','1','158.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091897.0','1044432.0','73', '70','44','79818.25', '68','37','65154.6', '41','16','14663.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003634.0','1018865.0','16', '13','8','14025.9', '13','8','13510.27', '5','1','515.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091898.0','1044432.0','3', '2','1','121.13', '2','1','121.13', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003635.0','1018865.0','8', '8','3','2171.63', '8','2','1836.6', '4','1','335.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091899.0','1044432.0','5', '5','4','11165.54', '5','3','9244.04', '4','2','1921.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003636.0','1018865.0','20', '19','16','111583.86', '18','15','15585.0', '14','12','95998.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091900.0','1044432.0','121', '111','67','166022.38', '111','62','122270.59', '52','27','43751.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003637.0','1018865.0','1', '1','1','843.85', '1','0','0.0', '1','1','843.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091901.0','1044432.0','109', '108','68','107035.55', '104','57','87137.24', '63','27','19898.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003638.0','1018865.0','4', '3','1','223.98', '3','0','0.0', '2','1','223.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091902.0','1044432.0','1', '1','1','1911.2', '1','1','1676.3', '1','1','234.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003639.0','1018865.0','1', '1','1','800.76', '1','1','800.76', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091903.0','1044432.0','29', '28','18','26600.46', '28','18','24250.34', '13','5','2350.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003640.0','1018865.0','19', '18','11','25533.62', '18','11','21176.87', '10','4','4356.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091904.0','1044432.0','9', '9','5','17090.73', '9','5','14882.57', '2','1','2208.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003641.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091905.0','1044432.0','5', '5','2','2721.81', '5','2','2721.81', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003642.0','1018865.0','25', '23','14','35885.31', '21','12','29276.84', '15','8','6608.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091906.0','1044432.0','133', '123','71','144088.06', '121','63','118464.77', '70','30','25623.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003643.0','1018865.0','3', '2','1','1275.0', '2','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091907.0','1044432.0','1', '1','1','342.12', '1','0','0.0', '1','1','342.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003644.0','1018865.0','9', '8','2','6937.85', '8','2','6937.85', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091908.0','1044432.0','656', '619','428','1497193.97', '591','304','895486.22', '430','286','601707.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003645.0','1018865.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091909.0','1044432.0','314', '281','183','519555.39', '271','138','344334.85', '184','109','175220.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003646.0','1018865.0','2', '2','2','1610.09', '2','2','1365.0', '2','1','245.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091910.0','1044432.0','3', '2','1','311.0', '2','1','311.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003647.0','1018865.0','2503', '2330','1525','3322452.95', '2221','1175','1662033.64', '1754','938','1660419.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091911.0','1044432.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003648.0','1018865.0','9', '5','2','2912.27', '5','1','59.88', '3','2','2852.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091912.0','1044432.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003649.0','1018865.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091913.0','1044432.0','3', '2','1','455.0', '2','1','455.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003650.0','1018865.0','6', '5','2','7216.54', '5','2','4477.87', '4','2','2738.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091914.0','1044432.0','19', '18','9','12023.67', '17','8','9951.73', '8','3','2071.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003651.0','1018865.0','5', '5','3','5356.08', '5','3','3190.0', '1','1','2166.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091915.0','1044432.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003652.0','1018865.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091916.0','1044432.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003653.0','1018865.0','1', '1','1','3392.27', '1','1','2361.01', '1','1','1031.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091917.0','1044432.0','21', '18','8','14541.99', '17','4','6267.18', '14','7','8274.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003654.0','1018865.0','2', '2','1','311.0', '2','1','311.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091918.0','1044432.0','1', '1','1','15810.37', '1','1','5884.0', '1','1','9926.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003655.0','1018873.0','5', '4','0','0.0', '4','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091919.0','1044440.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003656.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091920.0','1044440.0','14', '11','7','22660.2', '11','6','14169.02', '6','4','8491.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003657.0','1018873.0','483', '449','273','590655.09', '428','224','418543.2', '277','132','172111.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091921.0','1044440.0','3', '3','1','2725.08', '3','1','2550.0', '3','1','175.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003658.0','1018873.0','29', '29','19','45041.57', '29','19','39160.35', '16','3','5881.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091922.0','1044440.0','1', '1','1','1765.12', '1','1','1765.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003659.0','1018873.0','5', '5','3','7957.0', '5','3','7957.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091923.0','1044440.0','15', '14','9','19888.05', '14','8','15406.01', '10','2','4482.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003660.0','1018873.0','4', '3','3','10159.42', '3','3','8775.17', '1','1','1384.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091924.0','1044440.0','7', '7','5','9761.7', '7','5','9642.75', '4','1','118.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003661.0','1018873.0','15', '14','9','21391.87', '14','7','18310.5', '8','5','3081.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091925.0','1044440.0','18', '18','10','23079.15', '16','10','17867.97', '11','4','5211.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003662.0','1018873.0','1', '1','1','843.85', '1','0','0.0', '1','1','843.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091926.0','1044440.0','1', '1','1','2869.82', '1','1','2846.12', '1','1','23.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003663.0','1018873.0','2945', '2629','1422','2202425.72', '2466','907','1016248.62', '1846','914','1186177.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091927.0','1044440.0','1', '1','1','31.6', '1','0','0.0', '1','1','31.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003664.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091928.0','1044440.0','1785', '1652','1041','2174450.42', '1574','848','1135853.55', '1182','632','1038596.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003665.0','1018873.0','5', '3','3','8925.0', '3','3','8925.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091929.0','1044440.0','97', '89','52','116866.21', '86','50','97767.17', '48','14','19099.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003666.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091930.0','1044440.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003667.0','1018873.0','1173', '1000','457','690271.87', '937','213','262489.39', '613','331','427782.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091931.0','1044440.0','292', '278','189','510686.61', '274','165','347988.21', '176','87','162698.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003668.0','1018873.0','8', '6','2','426.43', '6','1','217.62', '2','1','208.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091932.0','1044440.0','11', '9','5','24302.87', '9','4','14642.62', '6','3','9660.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003669.0','1018873.0','1', '1','1','1509.56', '1','1','1509.56', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091933.0','1044440.0','1', '1','1','1810.79', '1','1','1275.0', '1','1','535.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003670.0','1018873.0','3', '3','2','1615.68', '3','0','0.0', '2','2','1615.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091934.0','1044440.0','2193', '1945','991','1717686.78', '1809','650','611374.95', '1364','695','1106311.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003671.0','1018873.0','1', '1','1','2344.22', '1','1','1164.2', '1','1','1180.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091935.0','1044440.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003672.0','1018873.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091936.0','1044440.0','1', '1','1','150.0', '1','0','0.0', '1','1','150.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003673.0','1018873.0','1', '1','1','470.97', '1','0','0.0', '1','1','470.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091937.0','1044440.0','41', '39','17','44095.67', '36','17','31534.96', '17','5','12560.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003674.0','1018873.0','8', '8','0','0.0', '8','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091938.0','1044440.0','5', '4','1','5000.0', '3','0','0.0', '1','1','5000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003675.0','1018873.0','165', '157','86','166062.37', '155','82','135793.63', '68','17','30268.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091939.0','1044440.0','8', '7','3','17282.51', '7','3','12473.52', '4','3','4808.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003676.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091940.0','1044440.0','1', '1','1','2071.45', '1','1','1275.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003677.0','1018873.0','3', '2','1','1275.0', '2','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091941.0','1044440.0','1', '1','1','455.0', '1','1','455.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003678.0','1018873.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091942.0','1044440.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003679.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091943.0','1044440.0','106', '96','60','152984.38', '95','56','113381.88', '59','30','39602.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003680.0','1018873.0','5', '5','2','17394.39', '4','2','5127.12', '3','1','12267.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091944.0','1044440.0','854', '785','495','1387883.67', '759','385','908814.45', '530','289','479069.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003681.0','1018873.0','4', '4','2','672.08', '3','0','0.0', '3','2','672.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091945.0','1044440.0','1341', '1211','734','1564379.17', '1180','508','1007316.84', '735','420','557062.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003682.0','1018873.0','2837', '2506','1467','3298179.34', '2383','926','1905850.44', '1693','1021','1392328.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091946.0','1044440.0','5', '5','3','4880.98', '5','2','1501.0', '3','1','3379.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003683.0','1018873.0','1', '1','1','1682.9', '1','1','481.0', '1','1','1201.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091947.0','1044440.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003684.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091948.0','1044440.0','5', '4','3','6453.16', '4','3','5527.79', '2','1','925.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003685.0','1018873.0','115', '109','73','138220.62', '108','69','131457.29', '44','14','6763.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091949.0','1044440.0','1', '1','1','1046.0', '1','1','1046.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003686.0','1018873.0','31', '28','21','43104.25', '28','16','37390.31', '19','11','5713.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091950.0','1044440.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003687.0','1018873.0','2357', '2210','1165','2076761.94', '2028','744','1123120.4', '1530','732','953641.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091951.0','1044440.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003688.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091952.0','1044440.0','203', '187','113','374482.01', '185','102','263245.89', '89','45','111236.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003689.0','1018873.0','22', '21','6','31554.65', '21','5','7231.83', '8','4','24322.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091953.0','1044440.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003690.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091954.0','1044440.0','1', '1','1','5350.27', '1','1','5350.27', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003691.0','1018873.0','214', '188','103','221261.63', '174','50','79865.67', '127','79','141395.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091955.0','1044440.0','163', '145','94','182137.25', '136','46','116002.39', '103','70','66134.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003692.0','1018873.0','1', '1','1','1170.65', '1','1','311.0', '1','1','859.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091956.0','1044440.0','117', '104','60','218325.31', '103','58','145689.38', '67','32','72635.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003693.0','1018873.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091957.0','1044440.0','1960', '1833','757','1249209.57', '1696','478','639442.07', '1100','493','609767.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003694.0','1018873.0','1071', '975','641','1501977.42', '951','430','1045835.62', '651','399','456141.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091958.0','1044440.0','18', '18','13','27626.52', '18','10','20449.97', '15','10','7176.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003695.0','1018873.0','100', '98','74','175738.6', '96','50','115476.28', '68','50','60262.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091959.0','1044440.0','1', '1','1','3485.26', '1','1','3485.26', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003696.0','1018873.0','39', '38','24','55396.71', '37','15','34151.17', '23','15','21245.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091960.0','1044440.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003697.0','1018873.0','209', '196','110','375233.45', '193','94','251984.12', '135','61','123249.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091961.0','1044440.0','7', '7','2','2529.43', '7','2','2529.43', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003698.0','1018873.0','1', '1','1','783.32', '1','1','783.32', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091962.0','1044440.0','12', '12','5','8883.86', '12','5','8883.86', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003699.0','1018873.0','576', '435','264','724422.18', '405','197','391560.76', '265','147','332861.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091963.0','1044440.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003700.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091964.0','1044440.0','1276', '1150','621','857220.69', '1090','460','513364.84', '797','330','343855.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003701.0','1018873.0','2', '2','1','1037.09', '2','1','792.0', '2','1','245.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091965.0','1044440.0','1966', '1720','757','1118182.95', '1644','379','524634.71', '1051','536','593548.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003702.0','1018873.0','147', '139','104','335753.27', '136','89','271422.26', '88','47','64331.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091966.0','1044440.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003703.0','1018873.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091967.0','1044440.0','89', '87','67','181687.29', '87','59','122555.95', '59','36','59131.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003704.0','1018873.0','1', '1','1','1772.13', '1','1','728.0', '1','1','1044.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091968.0','1044440.0','334', '309','221','632202.72', '299','165','377659.14', '217','144','254543.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003705.0','1018873.0','4', '4','1','6742.42', '4','1','4012.0', '2','1','2730.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091969.0','1044440.0','450', '422','149','213957.55', '401','96','133848.28', '193','77','80109.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003706.0','1018873.0','3', '2','2','1759.04', '2','2','1759.04', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091970.0','1044440.0','25', '25','18','28903.89', '25','14','21723.34', '15','8','7180.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003707.0','1018873.0','786', '725','454','769171.82', '685','335','426144.88', '535','268','343026.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091971.0','1044440.0','1', '1','1','2288.76', '1','1','2288.76', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003708.0','1018873.0','1', '1','1','828.05', '1','0','0.0', '1','1','828.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091972.0','1044440.0','94', '87','55','131999.03', '83','49','89264.44', '52','26','42734.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003709.0','1018873.0','30', '28','15','32159.9', '28','5','19677.82', '19','13','12482.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091973.0','1044440.0','35', '33','14','50560.26', '32','11','31321.29', '20','11','19238.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003710.0','1018873.0','1', '1','1','806.08', '1','0','0.0', '1','1','806.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091974.0','1044440.0','366', '353','246','565255.45', '345','122','306140.34', '265','183','259115.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003711.0','1018873.0','1265', '1175','670','1218698.77', '1028','403','633414.26', '917','463','585284.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091975.0','1044440.0','5', '5','2','2580.6', '5','2','2580.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003712.0','1018873.0','237', '222','151','333744.39', '219','120','228758.24', '146','77','104986.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091976.0','1044440.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003713.0','1018873.0','86', '81','45','86138.78', '79','43','72103.83', '39','14','14034.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091977.0','1044440.0','167', '164','106','280904.17', '163','98','211007.8', '110','53','69896.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003714.0','1018873.0','10', '10','6','11956.26', '10','5','11128.21', '3','1','828.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091978.0','1044440.0','16', '14','4','9789.85', '14','3','8961.8', '5','1','828.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003715.0','1018873.0','1906', '1734','979','1970386.21', '1672','706','1166904.08', '1104','552','803482.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091979.0','1044440.0','7', '5','1','1275.0', '5','1','1275.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003716.0','1018873.0','122', '88','45','81641.12', '83','31','31227.21', '59','29','50413.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091980.0','1044440.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003717.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091981.0','1044440.0','436', '409','264','612905.95', '402','227','444214.72', '245','130','168691.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003718.0','1018873.0','1275', '1125','636','1039065.69', '1086','321','602349.58', '686','451','436716.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091982.0','1044440.0','91', '84','58','103915.55', '83','55','80792.24', '53','22','23123.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003719.0','1018873.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091983.0','1044440.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003720.0','1018873.0','169', '148','73','120834.02', '141','48','85988.26', '82','39','34845.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091984.0','1044440.0','1', '1','1','3685.9', '1','1','2181.0', '1','1','1504.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003721.0','1018873.0','1', '1','1','787.37', '1','0','0.0', '1','1','787.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091985.0','1044440.0','1', '1','1','2881.4', '1','1','1462.0', '1','1','1419.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003722.0','1018873.0','155', '151','89','148687.26', '148','48','81144.83', '101','64','67542.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091986.0','1044440.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003723.0','1018873.0','1', '1','1','1939.41', '1','1','740.0', '1','1','1199.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091987.0','1044440.0','885', '831','501','1059662.29', '795','364','587809.59', '562','308','471852.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001614.0', '2003724.0','1018873.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005894.0', '2091988.0','1044440.0','5', '5','3','4711.68', '5','2','3352.66', '4','2','1359.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003725.0','1018873.0','890', '850','425','718567.96', '807','302','438520.19', '559','236','280047.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091989.0','1044440.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003726.0','1018873.0','1', '1','1','1425.59', '1','0','0.0', '1','1','1425.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091990.0','1044440.0','159', '153','91','232177.35', '151','85','168492.36', '87','36','63684.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003727.0','1018873.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091991.0','1044440.0','5', '5','2','3482.35', '5','1','2550.0', '3','1','932.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003728.0','1018873.0','1', '1','1','2081.5', '1','1','2081.5', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2091992.0','1044440.0','1', '1','1','455.0', '1','1','455.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003729.0','1018873.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091993.0','1044440.0','4119', '3835','2217','4437650.84', '3654','1664','2416294.07', '2634','1234','2021356.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003730.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091994.0','1044440.0','2', '2','2','4149.16', '2','2','2092.0', '2','2','2057.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003731.0','1018873.0','5', '4','4','10829.5', '4','3','7105.08', '3','3','3724.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091995.0','1044440.0','1', '1','1','3270.72', '1','1','622.0', '1','1','2648.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003732.0','1018873.0','5', '5','4','5926.0', '5','4','5926.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091996.0','1044440.0','188', '168','73','136794.74', '153','44','63309.07', '105','52','73485.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003733.0','1018873.0','24', '24','11','20595.16', '24','10','20379.08', '10','1','216.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091997.0','1044440.0','3', '2','2','3227.69', '2','2','2229.09', '2','2','998.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003734.0','1018873.0','13', '13','6','8206.25', '12','6','7815.12', '7','2','391.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091998.0','1044440.0','406', '384','233','687456.35', '376','204','486057.0', '250','122','201399.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003735.0','1018873.0','1', '1','1','628.8', '1','0','0.0', '1','1','628.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091999.0','1044440.0','21', '19','13','25335.07', '18','9','15166.24', '12','7','10168.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003736.0','1018873.0','6', '6','5','9119.74', '6','3','7204.9', '6','3','1914.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092000.0','1044440.0','2', '2','1','821.44', '2','1','821.44', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003737.0','1018873.0','8', '7','3','3583.65', '7','2','2555.32', '3','1','1028.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092001.0','1044440.0','499', '451','240','630331.62', '437','210','445338.66', '254','125','184992.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003738.0','1018873.0','7', '6','4','2629.52', '6','3','2518.92', '2','1','110.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092002.0','1044440.0','3', '3','2','5043.93', '3','1','3984.0', '2','1','1059.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003739.0','1018873.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092003.0','1044440.0','30', '29','22','57713.32', '28','21','49703.98', '18','8','8009.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003740.0','1018873.0','1', '1','1','582.12', '1','1','582.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092004.0','1044440.0','1', '1','1','1205.12', '1','1','1205.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003741.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092005.0','1044440.0','1', '1','1','1714.26', '1','1','1714.26', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003742.0','1018873.0','2', '2','1','1497.4', '2','1','1275.0', '2','1','222.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092006.0','1044440.0','1', '1','1','796.45', '1','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003743.0','1018873.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092007.0','1044440.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003744.0','1018873.0','1734', '1616','1040','2063464.6', '1565','568','1172180.04', '1151','754','891284.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092008.0','1044440.0','6', '5','3','2484.95', '5','2','1649.0', '1','1','835.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003745.0','1018873.0','1', '1','1','4.74', '1','0','0.0', '1','1','4.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092009.0','1044440.0','2', '2','1','150.0', '2','0','0.0', '1','1','150.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003746.0','1018873.0','2', '2','2','1558.99', '2','1','1343.47', '1','1','215.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092010.0','1044440.0','25', '24','9','7267.39', '24','7','6422.99', '11','2','844.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003747.0','1018873.0','8', '8','5','10365.16', '8','5','9967.94', '5','2','397.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092011.0','1044440.0','2', '2','1','649.65', '2','1','313.04', '1','1','336.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003748.0','1018873.0','4', '4','2','7587.24', '4','2','7587.24', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092012.0','1044440.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003749.0','1018873.0','19', '15','6','5691.51', '14','6','5691.51', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092013.0','1044440.0','323', '311','178','606689.75', '308','163','425359.62', '154','75','181330.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003750.0','1018873.0','33', '28','17','73038.57', '28','16','38971.13', '12','5','34067.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092014.0','1044440.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003751.0','1018873.0','15', '14','4','4221.59', '13','3','3795.91', '6','2','425.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092015.0','1044440.0','252', '232','116','197307.05', '219','85','114555.58', '142','71','82751.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003752.0','1018873.0','16', '16','12','17081.23', '15','10','14058.52', '8','4','3022.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092016.0','1044440.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003753.0','1018873.0','46', '41','24','47864.61', '39','19','38711.5', '22','12','9153.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092017.0','1044440.0','1', '1','1','17102.75', '1','1','5722.0', '1','1','11380.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003754.0','1018873.0','4', '3','1','481.0', '3','1','481.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092018.0','1044440.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003755.0','1018873.0','2', '2','1','2032.26', '2','1','1506.67', '1','1','525.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092019.0','1044440.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003756.0','1018873.0','4', '4','3','6937.55', '4','3','5779.69', '3','2','1157.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092020.0','1044440.0','13', '12','8','11008.84', '12','8','9840.22', '3','1','1168.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003757.0','1018873.0','2', '2','1','2183.38', '2','1','2183.38', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092021.0','1044440.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003758.0','1018873.0','2', '2','1','4501.13', '2','1','3680.2', '1','1','820.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092022.0','1044440.0','6', '5','3','2169.15', '4','2','1951.49', '4','1','217.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003759.0','1018873.0','479', '448','197','294124.71', '425','132','176326.1', '257','118','117798.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092023.0','1044440.0','6', '6','3','5703.35', '5','3','5703.35', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003760.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092024.0','1044440.0','849', '790','526','1230640.15', '759','361','632002.25', '585','356','598637.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003761.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092025.0','1044440.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003762.0','1018873.0','24', '23','14','15945.69', '22','12','14439.53', '9','4','1506.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092026.0','1044440.0','2', '2','2','2766.36', '2','1','455.0', '1','1','2311.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002324.0','1018873.0','194', '183','118','268779.4', '179','92','177978.25', '122','66','90801.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090588.0','1044440.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003763.0','1018873.0','103', '98','73','152287.55', '97','62','106687.12', '62','29','45600.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092027.0','1044440.0','1415', '1340','693','1117347.74', '1277','506','713345.18', '894','366','404002.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003764.0','1018873.0','2', '2','2','1612.05', '2','1','784.0', '2','1','828.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092028.0','1044440.0','1', '1','1','624.67', '1','1','624.67', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003765.0','1018873.0','1', '1','1','4599.81', '1','1','2550.0', '1','1','2049.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092029.0','1044440.0','12', '11','10','21134.04', '10','10','19916.64', '9','2','1217.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003766.0','1018873.0','24', '22','11','32865.62', '21','10','26472.84', '16','6','6392.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092030.0','1044440.0','26', '25','8','9718.4', '25','6','9480.5', '8','2','237.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003767.0','1018873.0','2', '1','1','216.08', '1','0','0.0', '1','1','216.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092031.0','1044440.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2002348.0','1018873.0','8', '7','6','16540.18', '7','6','11743.82', '2','1','4796.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2090612.0','1044440.0','7', '7','4','5631.76', '7','4','4998.56', '5','1','633.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003768.0','1018873.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092032.0','1044440.0','21', '20','11','15294.32', '20','9','12472.51', '12','3','2821.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003769.0','1018873.0','25', '25','17','27315.22', '24','14','20696.28', '16','8','6618.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092033.0','1044440.0','152', '144','84','157411.55', '142','68','106382.42', '76','40','51029.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003770.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092034.0','1044440.0','1', '1','1','3757.83', '1','1','622.0', '1','1','3135.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003771.0','1018873.0','8', '8','1','812.61', '8','1','274.37', '1','1','538.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092035.0','1044440.0','36', '35','20','88933.29', '35','19','39272.88', '21','12','49660.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003772.0','1018873.0','3', '3','1','118.95', '3','0','0.0', '1','1','118.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092036.0','1044440.0','8', '8','4','6166.76', '8','4','5533.56', '2','1','633.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003773.0','1018873.0','148', '141','84','235980.03', '135','68','156207.82', '108','53','79772.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092037.0','1044440.0','1', '1','1','597.73', '1','1','597.73', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003774.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092038.0','1044440.0','37', '35','26','79467.78', '35','24','56106.95', '19','9','23360.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003775.0','1018873.0','48', '46','20','36725.13', '43','20','32877.71', '22','5','3847.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092039.0','1044440.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003776.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092040.0','1044440.0','3', '2','1','216.08', '2','0','0.0', '2','1','216.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003777.0','1018873.0','6', '4','1','1387.12', '4','1','1118.0', '3','1','269.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092041.0','1044440.0','1', '1','1','1897.0', '1','1','1897.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003778.0','1018873.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092042.0','1044440.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003779.0','1018873.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092043.0','1044440.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003780.0','1018873.0','7', '6','0','0.0', '6','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092044.0','1044440.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003781.0','1018873.0','137', '129','76','179294.12', '123','53','98956.61', '87','45','80337.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092045.0','1044440.0','490', '466','238','542172.3', '455','206','362832.01', '246','116','179340.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003782.0','1018873.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092046.0','1044440.0','6', '5','3','1889.28', '5','3','1889.28', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003783.0','1018873.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092047.0','1044440.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003784.0','1018873.0','4', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092048.0','1044440.0','3', '2','1','1492.58', '2','1','1492.58', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003785.0','1018873.0','18', '17','13','25202.31', '17','10','19906.27', '11','6','5296.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092049.0','1044440.0','2', '1','1','438.92', '1','1','438.92', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003786.0','1018873.0','101', '93','33','66492.27', '88','31','50327.83', '43','8','16164.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092050.0','1044440.0','19', '14','2','2866.2', '13','0','0.0', '4','2','2866.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003787.0','1018873.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092051.0','1044440.0','42', '40','20','40973.64', '40','20','31618.86', '18','3','9354.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003788.0','1018873.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092052.0','1044440.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003789.0','1018873.0','146', '125','83','189110.76', '120','58','105270.63', '90','56','83840.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092053.0','1044440.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003790.0','1018873.0','162', '154','97','203839.89', '153','75','151858.78', '89','51','51981.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092054.0','1044440.0','74', '67','41','122769.0', '66','37','85106.85', '46','27','37662.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003791.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092055.0','1044441.0','4', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003792.0','1018874.0','22', '20','15','21031.99', '20','10','14954.6', '11','6','6077.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092056.0','1044441.0','6', '6','4','17612.39', '6','4','13959.14', '4','3','3653.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003793.0','1018874.0','2', '2','1','1275.0', '2','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092057.0','1044441.0','2', '2','2','2746.81', '2','2','2746.81', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003794.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092058.0','1044441.0','3', '3','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003795.0','1018874.0','77', '70','50','105547.91', '67','42','66619.19', '45','30','38928.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092059.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003796.0','1018874.0','17', '16','10','21624.97', '15','8','15029.12', '8','5','6595.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092060.0','1044441.0','4', '4','1','23.7', '4','0','0.0', '1','1','23.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003797.0','1018874.0','104', '96','60','157566.83', '94','57','112054.15', '58','24','45512.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092061.0','1044441.0','22', '22','10','19415.07', '21','10','17938.14', '12','2','1476.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003798.0','1018874.0','28', '23','13','61041.07', '21','12','29943.65', '13','5','31097.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092062.0','1044441.0','48', '45','32','82330.6', '44','29','64252.2', '28','18','18078.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003799.0','1018874.0','15', '15','5','8688.7', '15','4','7876.45', '6','1','812.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092063.0','1044441.0','4', '3','1','7209.9', '2','1','6062.0', '2','1','1147.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003800.0','1018874.0','11', '11','6','13581.43', '11','6','10457.54', '4','2','3123.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092064.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003801.0','1018874.0','1', '1','1','798.03', '1','0','0.0', '1','1','798.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092065.0','1044441.0','135', '129','83','139261.83', '128','69','98353.37', '80','39','40908.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003802.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092066.0','1044441.0','8', '6','4','9507.6', '5','3','4169.7', '3','1','5337.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003803.0','1018874.0','15', '15','7','9732.75', '14','7','7780.69', '10','2','1952.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092067.0','1044441.0','8', '7','6','12928.74', '7','4','9241.1', '4','3','3687.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003804.0','1018874.0','5', '4','2','2247.14', '4','2','2247.14', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092068.0','1044441.0','12', '11','6','7446.92', '10','5','6246.92', '4','1','1200.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003805.0','1018874.0','87', '82','55','92777.16', '82','36','51938.99', '56','41','40838.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092069.0','1044441.0','344', '326','192','442818.06', '314','160','331049.95', '196','90','111768.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003806.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092070.0','1044441.0','1', '1','1','1950.42', '1','1','1138.17', '1','1','812.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003807.0','1018874.0','1', '1','1','5692.34', '1','1','3172.0', '1','1','2520.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092071.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003808.0','1018874.0','1', '1','1','12249.65', '1','1','740.0', '1','1','11509.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092072.0','1044441.0','2', '2','2','391.65', '2','1','311.0', '1','1','80.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003809.0','1018874.0','1', '1','1','1646.4', '1','1','1646.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092073.0','1044441.0','168', '142','55','75549.02', '139','44','59254.53', '70','15','16294.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003810.0','1018874.0','3', '1','1','1764.24', '1','1','1764.24', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092074.0','1044441.0','10', '9','8','15737.13', '9','6','15288.94', '6','2','448.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003811.0','1018874.0','30', '28','9','26498.5', '28','9','21103.84', '10','2','5394.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092075.0','1044441.0','4', '3','1','381.1', '3','0','0.0', '2','1','381.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003812.0','1018874.0','4', '4','4','5078.64', '4','3','2784.15', '3','2','2294.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092076.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003813.0','1018874.0','21', '20','10','15386.36', '20','10','15386.36', '11','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092077.0','1044441.0','67', '64','46','112421.62', '64','43','93355.54', '35','13','19066.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003814.0','1018874.0','15', '14','9','15462.49', '14','7','13627.26', '5','2','1835.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092078.0','1044441.0','2', '1','1','3351.0', '1','1','3351.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003815.0','1018874.0','19', '15','5','7648.86', '15','4','6211.27', '6','2','1437.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092079.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003816.0','1018874.0','76', '72','48','87558.47', '72','36','52332.87', '42','28','35225.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092080.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003817.0','1018874.0','925', '854','425','700060.52', '810','312','465995.82', '508','214','234064.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092081.0','1044441.0','4', '4','4','6853.16', '4','4','5752.7', '3','2','1100.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003818.0','1018874.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092082.0','1044441.0','51', '41','30','38952.73', '40','18','23593.02', '26','17','15359.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003819.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092083.0','1044441.0','44', '40','21','45329.42', '37','18','31041.8', '21','11','14287.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003820.0','1018874.0','13', '12','8','13809.01', '12','8','11367.6', '5','2','2441.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092084.0','1044441.0','154', '142','109','253715.8', '136','62','130690.65', '116','92','123025.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003821.0','1018874.0','1', '1','1','31.6', '1','0','0.0', '1','1','31.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092085.0','1044441.0','35', '30','18','52609.56', '29','17','39407.61', '14','5','13201.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003822.0','1018874.0','2', '2','2','5139.36', '2','2','5139.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092086.0','1044441.0','49', '44','23','47213.22', '39','20','43896.03', '17','6','3317.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003823.0','1018874.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092087.0','1044441.0','51', '47','18','36840.9', '47','16','28941.94', '20','7','7898.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003824.0','1018874.0','43', '34','12','37285.19', '33','12','31231.51', '23','5','6053.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092088.0','1044441.0','50', '46','26','40213.64', '46','22','34048.57', '22','7','6165.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003825.0','1018874.0','666', '626','391','787883.91', '597','330','593629.25', '404','172','194254.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092089.0','1044441.0','14', '13','3','2991.47', '13','2','2778.6', '7','1','212.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003826.0','1018874.0','4', '2','1','761.92', '2','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092090.0','1044441.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003827.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092091.0','1044441.0','10', '8','5','6616.22', '8','5','6616.22', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003828.0','1018874.0','10', '8','3','3900.55', '7','3','3900.55', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092092.0','1044441.0','19', '18','8','10839.3', '18','8','10234.48', '10','2','604.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003829.0','1018874.0','1', '1','1','1012.53', '1','0','0.0', '1','1','1012.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092093.0','1044441.0','1', '1','1','1280.71', '1','1','1280.71', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003830.0','1018874.0','5', '5','5','7885.5', '5','5','6458.0', '3','2','1427.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092094.0','1044441.0','1', '1','1','560.96', '1','1','214.59', '1','1','346.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003831.0','1018874.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092095.0','1044441.0','1', '1','1','820.15', '1','0','0.0', '1','1','820.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003832.0','1018874.0','161', '150','86','144974.71', '147','72','120025.74', '91','35','24948.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092096.0','1044441.0','3', '2','2','3695.6', '2','2','3172.0', '2','1','523.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003833.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092097.0','1044441.0','158', '142','79','155206.21', '138','48','97232.18', '95','52','57974.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003834.0','1018874.0','163', '154','99','188421.23', '152','75','135248.93', '95','48','53172.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092098.0','1044441.0','2', '2','2','2015.0', '2','2','2015.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003835.0','1018874.0','202', '183','98','163387.9', '179','97','153878.8', '64','7','9509.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092099.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003836.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092100.0','1044441.0','90', '84','68','169214.73', '83','53','103134.0', '63','39','66080.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003837.0','1018874.0','27', '24','14','57112.95', '23','12','30435.55', '11','5','26677.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092101.0','1044441.0','136', '115','50','65088.25', '109','44','59537.64', '43','10','5550.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003838.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092102.0','1044441.0','1', '1','1','2788.68', '1','1','2788.68', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003839.0','1018874.0','753', '678','323','606694.57', '623','222','416129.49', '388','165','190565.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092103.0','1044441.0','132', '123','77','151658.33', '121','63','114226.15', '71','34','37432.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003840.0','1018874.0','5', '4','3','14543.58', '4','3','11453.51', '4','3','3090.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092104.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003841.0','1018874.0','941', '856','460','911763.51', '838','413','669283.8', '414','163','242479.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092105.0','1044441.0','18', '16','8','15201.34', '16','8','11560.07', '10','2','3641.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003842.0','1018874.0','11', '11','4','6186.27', '11','4','5936.27', '4','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092106.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003843.0','1018874.0','1', '1','1','105.16', '1','1','105.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092107.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003844.0','1018874.0','1', '1','1','796.45', '1','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092108.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003845.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092109.0','1044441.0','1', '1','1','7500.0', '0','0','0.0', '1','1','7500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003846.0','1018874.0','55', '50','21','33789.24', '50','21','33005.59', '20','2','783.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092110.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003847.0','1018874.0','1', '1','1','1536.45', '1','1','740.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092111.0','1044441.0','43', '39','18','40727.84', '34','18','40240.19', '23','2','487.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003848.0','1018874.0','78', '74','48','103933.12', '69','30','60680.64', '58','33','43252.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092112.0','1044441.0','365', '321','114','222180.37', '303','85','140751.22', '181','50','81429.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003849.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092113.0','1044441.0','265', '253','141','294883.83', '247','122','219020.56', '150','62','75863.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003850.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092114.0','1044441.0','1', '1','1','1401.7', '1','1','1401.7', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003851.0','1018874.0','207', '201','120','233559.4', '199','102','173924.28', '121','55','59635.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092115.0','1044441.0','752', '702','473','1311375.57', '686','406','891840.41', '442','233','419535.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003852.0','1018874.0','15', '12','7','9514.62', '12','7','9514.62', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092116.0','1044441.0','40', '36','18','26665.88', '35','16','22156.23', '16','6','4509.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003853.0','1018874.0','4', '3','2','2042.8', '3','2','2042.8', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092117.0','1044441.0','52', '48','31','66253.92', '48','27','56726.31', '31','12','9527.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003854.0','1018874.0','1', '1','1','5285.0', '1','0','0.0', '1','1','5285.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092118.0','1044441.0','2', '2','2','2550.0', '2','2','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003855.0','1018874.0','79', '67','22','38046.21', '60','18','31998.72', '37','7','6047.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092119.0','1044441.0','56', '52','34','57912.44', '48','30','47799.55', '27','10','10112.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003856.0','1018874.0','148', '124','44','73773.07', '119','29','50002.23', '53','22','23770.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092120.0','1044441.0','10', '7','4','5100.0', '6','4','5100.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003857.0','1018874.0','2', '2','1','1275.0', '2','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092121.0','1044441.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003858.0','1018874.0','130', '108','46','74769.07', '100','43','61879.62', '77','12','12889.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092122.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003859.0','1018874.0','1163', '1095','485','784105.5', '1051','338','459806.02', '669','251','324299.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092123.0','1044441.0','4', '4','2','2550.0', '4','2','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003860.0','1018874.0','252', '236','178','453089.01', '230','158','321452.02', '179','88','131636.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092124.0','1044441.0','2', '2','1','1466.68', '2','1','1466.68', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003861.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092125.0','1044441.0','151', '134','55','147569.67', '131','51','123972.18', '48','13','23597.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003862.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092126.0','1044441.0','2', '2','2','22782.98', '2','2','12120.0', '2','2','10662.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003863.0','1018874.0','3', '3','1','1150.76', '3','1','1150.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092127.0','1044441.0','1', '1','1','2297.24', '1','1','2297.24', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003864.0','1018874.0','85', '67','27','35454.43', '65','19','28270.24', '41','11','7184.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092128.0','1044441.0','5', '5','3','13890.6', '5','3','10242.0', '2','1','3648.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003865.0','1018874.0','1', '1','1','932.25', '1','0','0.0', '1','1','932.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092129.0','1044441.0','1', '1','1','1067.92', '1','1','207.4', '1','1','860.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003866.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092130.0','1044441.0','83', '75','61','108815.27', '74','45','89992.23', '48','34','18823.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003867.0','1018874.0','179', '162','86','143839.6', '158','67','98979.54', '92','31','44860.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092131.0','1044441.0','4', '3','2','4173.05', '3','2','3329.2', '3','1','843.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003868.0','1018874.0','486', '438','229','445208.64', '428','183','341960.9', '230','104','103247.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092132.0','1044441.0','1', '1','1','510.92', '1','0','0.0', '1','1','510.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003869.0','1018874.0','1', '1','1','831.32', '1','1','310.18', '1','1','521.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092133.0','1044441.0','17', '16','12','16139.25', '14','9','10056.48', '12','4','6082.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003870.0','1018874.0','153', '147','91','171152.44', '144','88','125917.85', '80','31','45234.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092134.0','1044441.0','182', '161','46','102590.64', '155','40','69519.6', '56','23','33071.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003871.0','1018874.0','9', '9','5','5073.55', '9','4','4859.14', '7','1','214.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092135.0','1044441.0','51', '49','20','29354.21', '49','20','28066.6', '36','2','1287.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2002315.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2090579.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003872.0','1018874.0','144', '105','40','117129.49', '102','31','52133.01', '53','21','64996.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092136.0','1044441.0','18', '10','0','0.0', '10','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003873.0','1018874.0','11', '8','0','0.0', '8','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092137.0','1044441.0','31', '19','1','1113.47', '18','0','0.0', '9','1','1113.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003874.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092138.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003875.0','1018874.0','7', '5','2','5873.97', '5','1','4869.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092139.0','1044441.0','17', '13','2','1840.94', '12','0','0.0', '7','2','1840.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003876.0','1018874.0','5', '4','1','954.27', '4','0','0.0', '3','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092140.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003877.0','1018874.0','2', '2','1','5021.58', '2','1','4236.38', '2','1','785.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092141.0','1044441.0','7', '7','5','31331.1', '7','4','18899.0', '6','4','12432.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003878.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092142.0','1044441.0','4', '3','1','2092.48', '3','0','0.0', '2','1','2092.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003879.0','1018874.0','1', '1','1','837.66', '1','0','0.0', '1','1','837.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092143.0','1044441.0','9', '5','5','4550.48', '5','3','2038.0', '5','3','2512.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003880.0','1018874.0','146', '131','59','147616.06', '130','56','121907.26', '55','17','25708.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092144.0','1044441.0','1', '1','1','846.11', '1','0','0.0', '1','1','846.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003881.0','1018874.0','866', '807','437','929409.44', '793','400','656191.44', '409','145','273218.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092145.0','1044441.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003882.0','1018874.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092146.0','1044441.0','4', '4','3','10933.66', '4','3','10200.0', '2','1','733.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003883.0','1018874.0','261', '246','167','457059.33', '244','162','368567.56', '111','49','88491.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092147.0','1044441.0','62', '53','31','126248.96', '52','28','89517.95', '30','20','36731.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003884.0','1018874.0','4', '4','2','6375.0', '4','2','6375.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092148.0','1044441.0','340', '264','114','319295.53', '241','72','162971.52', '137','76','156324.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003885.0','1018874.0','11', '7','0','0.0', '5','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092149.0','1044441.0','5', '4','4','7969.24', '4','4','7969.24', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003886.0','1018874.0','35', '17','4','5753.56', '17','1','1275.0', '8','4','4478.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092150.0','1044441.0','168', '141','56','85732.18', '126','24','47868.87', '66','39','37863.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003887.0','1018874.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092151.0','1044441.0','1', '1','1','3712.34', '1','1','2658.78', '1','1','1053.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003888.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092152.0','1044441.0','14', '12','3','3311.1', '12','1','1122.0', '6','3','2189.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003889.0','1018874.0','15', '14','10','32286.67', '14','8','20886.63', '7','4','11400.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092153.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003890.0','1018874.0','32', '27','12','24494.27', '24','3','14722.0', '18','11','9772.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092154.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003891.0','1018874.0','3', '2','2','1563.13', '1','0','0.0', '2','2','1563.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092155.0','1044441.0','12', '9','5','11772.9', '8','4','3846.74', '6','3','7926.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003892.0','1018874.0','1', '1','1','2730.67', '1','1','954.0', '1','1','1776.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092156.0','1044441.0','6', '4','4','3246.22', '4','3','2982.24', '3','2','263.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003893.0','1018874.0','296', '288','163','175178.16', '282','155','165473.72', '176','24','9704.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092157.0','1044441.0','2', '2','2','4434.23', '2','2','3840.19', '1','1','594.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003894.0','1018874.0','3', '2','1','1370.92', '1','0','0.0', '2','1','1370.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092158.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003895.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092159.0','1044441.0','38', '19','3','16752.05', '18','2','13338.0', '10','2','3414.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003896.0','1018874.0','3', '3','2','3885.62', '2','1','982.0', '3','2','2903.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092160.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003897.0','1018874.0','9', '6','0','0.0', '6','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092161.0','1044441.0','12', '8','1','937.37', '7','0','0.0', '5','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003898.0','1018874.0','1', '1','1','6500.0', '0','0','0.0', '1','1','6500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092162.0','1044441.0','23', '17','5','10738.83', '17','4','9885.96', '4','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003899.0','1018874.0','8', '6','4','3484.4', '5','0','0.0', '6','4','3484.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092163.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003900.0','1018874.0','7', '6','3','20452.96', '5','2','2967.53', '3','2','17485.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092164.0','1044441.0','2', '2','2','1810.17', '2','1','477.0', '2','2','1333.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003901.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092165.0','1044441.0','5', '4','1','11332.0', '3','1','11332.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003902.0','1018874.0','22', '17','13','31758.29', '17','12','14303.04', '10','5','17455.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092166.0','1044441.0','459', '414','177','203529.25', '380','74','98198.4', '295','131','105330.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003903.0','1018874.0','18', '8','2','1959.58', '7','0','0.0', '3','2','1959.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092167.0','1044441.0','97', '91','52','104312.34', '90','44','79771.16', '51','20','24541.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003904.0','1018874.0','2', '2','2','4170.8', '2','2','4155.4', '1','1','15.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092168.0','1044441.0','7', '4','1','4662.67', '4','1','4662.67', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003905.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092169.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003906.0','1018874.0','61', '52','39','134812.12', '47','30','85642.21', '27','18','49169.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092170.0','1044441.0','11', '9','0','0.0', '9','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003907.0','1018874.0','16', '10','0','0.0', '10','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092171.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003908.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092172.0','1044441.0','8', '7','4','12871.37', '6','1','11322.0', '5','3','1549.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003909.0','1018874.0','7', '6','2','1148.96', '5','0','0.0', '4','2','1148.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092173.0','1044441.0','18', '17','5','8192.17', '17','5','8192.17', '11','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003910.0','1018874.0','1', '1','1','549.03', '1','1','549.03', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092174.0','1044441.0','5', '1','1','2394.28', '1','1','954.0', '1','1','1440.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003911.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092175.0','1044441.0','25', '22','12','23411.62', '21','9','17175.29', '16','9','6236.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003912.0','1018874.0','53', '24','2','1772.86', '24','0','0.0', '8','2','1772.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092176.0','1044441.0','8886', '8064','4894','10816523.24', '7730','3312','5283758.2', '5614','3230','5532765.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003913.0','1018874.0','11', '8','2','2557.55', '8','1','1325.78', '4','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092177.0','1044441.0','1', '1','1','3504.0', '1','1','3504.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003914.0','1018874.0','4', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092178.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003915.0','1018874.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092179.0','1044441.0','21', '21','12','26867.96', '19','10','20672.89', '10','7','6195.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003916.0','1018874.0','1', '1','1','4394.2', '1','1','3263.42', '1','1','1130.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092180.0','1044441.0','1', '1','1','903.57', '1','0','0.0', '1','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003917.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092181.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003918.0','1018874.0','2', '2','1','3762.62', '1','1','3408.0', '2','1','354.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092182.0','1044441.0','14', '8','1','533.93', '7','0','0.0', '3','1','533.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001548.0', '2003919.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005897.0', '2092183.0','1044441.0','53', '49','37','155107.15', '49','31','111503.26', '31','25','43603.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002287.0','1018874.0','46', '27','3','5293.35', '26','1','4205.23', '6','2','1088.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090551.0','1044441.0','3', '1','1','861.32', '1','0','0.0', '1','1','861.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002283.0','1018874.0','14', '10','3','7847.61', '8','2','6994.74', '7','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090547.0','1044441.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003920.0','1018874.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092184.0','1044441.0','1', '1','1','2069.3', '1','0','0.0', '1','1','2069.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002317.0','1018874.0','8244', '7439','4397','7252157.54', '7207','2383','3570588.3', '4704','3065','3681569.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090581.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003921.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092185.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003922.0','1018874.0','2', '1','1','2534.4', '1','1','2534.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092186.0','1044441.0','6', '5','0','0.0', '5','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003923.0','1018874.0','6', '4','0','0.0', '4','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092187.0','1044441.0','7', '3','1','1216.56', '2','0','0.0', '2','1','1216.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003924.0','1018874.0','1', '1','1','477.0', '1','1','477.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092188.0','1044441.0','8', '4','1','2634.25', '4','1','1299.16', '2','1','1335.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003925.0','1018874.0','115', '105','58','141041.82', '104','50','98764.92', '58','24','42276.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092189.0','1044441.0','6', '5','5','23640.19', '5','5','17768.32', '4','2','5871.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003926.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092190.0','1044441.0','11', '9','1','982.0', '7','1','982.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003927.0','1018874.0','298', '225','98','169580.29', '215','59','96044.16', '104','59','73536.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092191.0','1044441.0','41', '24','3','10220.82', '22','3','8534.0', '16','2','1686.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003928.0','1018874.0','43', '16','1','988.07', '14','0','0.0', '6','1','988.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092192.0','1044441.0','7', '4','2','1722.64', '4','0','0.0', '3','2','1722.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003929.0','1018874.0','4', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092193.0','1044441.0','7', '6','3','2795.21', '6','0','0.0', '3','3','2795.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003930.0','1018874.0','3', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092194.0','1044441.0','1', '1','1','3313.27', '1','1','2359.0', '1','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003931.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092195.0','1044441.0','1', '1','1','477.0', '1','1','477.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003932.0','1018874.0','2', '2','1','572.33', '1','1','572.33', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092196.0','1044441.0','3647', '3369','2233','4332226.66', '3264','1162','2138157.12', '2363','1700','2194069.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003933.0','1018874.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092197.0','1044441.0','42', '36','12','23816.74', '34','11','20226.89', '12','5','3589.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003934.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092198.0','1044441.0','38', '30','15','27775.57', '30','15','27012.32', '15','2','763.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003935.0','1018874.0','20', '12','0','0.0', '12','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092199.0','1044441.0','557', '449','264','740998.12', '423','196','420083.97', '251','153','320914.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003936.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092200.0','1044441.0','28', '13','1','1004.97', '12','0','0.0', '6','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003937.0','1018874.0','18', '13','1','1226.0', '12','1','1226.0', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092201.0','1044441.0','6', '3','1','903.57', '3','0','0.0', '1','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003938.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092202.0','1044441.0','17', '8','1','585.74', '8','0','0.0', '4','1','585.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003939.0','1018874.0','1', '1','1','477.0', '1','1','477.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092203.0','1044441.0','29', '19','4','13115.84', '19','4','7557.97', '12','1','5557.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003940.0','1018874.0','28', '21','8','10959.93', '16','5','9383.29', '9','3','1576.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092204.0','1044441.0','7', '7','5','14107.34', '7','2','2721.0', '5','5','11386.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003941.0','1018874.0','6', '6','1','1035.72', '6','1','863.04', '2','1','172.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092205.0','1044441.0','24', '24','22','75433.73', '24','22','66102.86', '11','8','9330.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003942.0','1018874.0','247', '177','75','205976.61', '168','49','103902.43', '83','46','102074.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092206.0','1044441.0','4', '3','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003943.0','1018874.0','4', '4','3','1749.68', '4','0','0.0', '3','3','1749.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092207.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003944.0','1018874.0','31', '28','15','55514.12', '27','14','40122.77', '16','4','15391.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092208.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003945.0','1018874.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092209.0','1044441.0','163', '152','47','67130.9', '149','43','57482.81', '83','12','9648.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002306.0','1018874.0','15', '3','1','869.77', '3','0','0.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090570.0','1044441.0','707', '605','262','634933.89', '580','146','320338.28', '281','175','314595.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003946.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092210.0','1044441.0','64', '53','39','177664.37', '52','33','112569.92', '34','18','65094.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003947.0','1018874.0','11', '8','2','1270.06', '8','0','0.0', '5','2','1270.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092211.0','1044441.0','9', '6','1','668.47', '5','0','0.0', '3','1','668.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003948.0','1018874.0','19', '15','0','0.0', '15','0','0.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092212.0','1044441.0','5', '4','2','1983.24', '4','0','0.0', '3','2','1983.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003949.0','1018874.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092213.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003950.0','1018874.0','6', '4','4','5294.31', '3','0','0.0', '4','4','5294.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092214.0','1044441.0','1', '1','1','2830.5', '1','1','2830.5', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003951.0','1018874.0','1', '1','1','1155.08', '1','1','1155.08', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092215.0','1044441.0','168', '97','51','89758.17', '92','46','54762.84', '38','19','34995.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003952.0','1018874.0','2', '2','2','12164.31', '2','2','4307.39', '2','1','7856.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092216.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003953.0','1018874.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092217.0','1044441.0','449', '416','193','347541.8', '388','145','236453.16', '229','91','111088.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003954.0','1018874.0','6', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092218.0','1044441.0','82', '81','53','84123.2', '81','45','70196.46', '46','19','13926.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003955.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092219.0','1044441.0','9', '5','3','5426.06', '5','2','4556.29', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003956.0','1018874.0','9', '5','1','835.97', '4','0','0.0', '4','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092220.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003957.0','1018874.0','6516', '6163','4044','6401224.34', '6004','1439','2896823.07', '4421','3409','3504401.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092221.0','1044441.0','24', '17','1','226.8', '17','0','0.0', '7','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003958.0','1018874.0','339', '299','96','173592.27', '281','79','133310.31', '215','32','40281.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092222.0','1044441.0','2', '2','1','235.4', '2','1','235.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003959.0','1018874.0','414', '379','206','354384.73', '350','113','176896.23', '273','142','177488.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092223.0','1044441.0','11', '9','1','1868.5', '9','1','1784.0', '6','1','84.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003960.0','1018874.0','1', '1','1','2565.4', '1','1','2550.0', '1','1','15.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092224.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003961.0','1018874.0','48', '41','36','123982.65', '40','33','85093.2', '25','19','38889.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092225.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003962.0','1018874.0','59', '32','1','5339.01', '32','1','5100.0', '10','1','239.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092226.0','1044441.0','107', '98','56','269596.82', '96','45','114420.11', '52','30','155176.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003963.0','1018874.0','35', '22','1','3008.01', '18','1','1642.0', '13','1','1366.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092227.0','1044441.0','19', '14','7','5731.46', '14','2','1382.7', '8','6','4348.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002264.0','1018874.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090528.0','1044441.0','7', '6','5','3773.48', '5','0','0.0', '6','5','3773.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003964.0','1018874.0','31', '21','6','9604.34', '18','3','7365.8', '12','3','2238.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092228.0','1044441.0','7', '5','2','2101.54', '5','0','0.0', '2','2','2101.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002534.0','1018874.0','7', '6','2','1130.37', '6','0','0.0', '2','2','1130.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090798.0','1044441.0','1', '1','1','3557.12', '1','1','3030.45', '1','1','526.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003965.0','1018874.0','92', '72','38','53041.89', '70','34','42062.17', '38','10','10979.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092229.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003966.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092230.0','1044441.0','18', '10','1','4002.8', '10','1','3776.0', '7','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003967.0','1018874.0','152', '148','93','219304.92', '144','85','164363.18', '82','36','54941.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092231.0','1044441.0','4', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002277.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090541.0','1044441.0','20', '17','7','3331.96', '16','0','0.0', '13','7','3331.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003968.0','1018874.0','139', '99','39','82135.21', '94','26','48120.03', '42','20','34015.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092232.0','1044441.0','6', '5','4','3139.61', '5','1','349.13', '3','3','2790.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003969.0','1018874.0','6', '4','1','164.76', '3','1','164.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092233.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003970.0','1018874.0','27', '17','0','0.0', '15','0','0.0', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092234.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002280.0','1018874.0','11', '6','4','3397.29', '6','1','442.88', '4','3','2954.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090544.0','1044441.0','10', '6','3','9034.9', '6','3','7233.0', '4','2','1801.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003971.0','1018874.0','12', '9','1','455.51', '6','0','0.0', '5','1','455.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092235.0','1044441.0','7', '7','4','5907.95', '6','4','5907.95', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003972.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092236.0','1044441.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003973.0','1018874.0','25', '14','2','2330.07', '14','1','1426.5', '3','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092237.0','1044441.0','2', '2','1','1389.6', '2','1','1162.8', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003974.0','1018874.0','1', '1','1','477.0', '1','1','477.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092238.0','1044441.0','17', '15','3','6724.48', '13','1','4334.0', '7','3','2390.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003975.0','1018874.0','7', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092239.0','1044441.0','19', '19','15','43728.29', '19','12','29004.91', '9','7','14723.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003976.0','1018874.0','1', '1','1','521.29', '1','0','0.0', '1','1','521.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092240.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003977.0','1018874.0','36', '33','21','99812.56', '31','19','67930.75', '23','12','31881.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092241.0','1044441.0','40', '34','17','59674.02', '34','12','24491.43', '19','13','35182.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003978.0','1018874.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092242.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003979.0','1018874.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092243.0','1044441.0','36', '26','12','38739.65', '21','4','20368.68', '17','10','18370.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002544.0','1018874.0','13', '10','2','2895.27', '10','1','1748.0', '4','1','1147.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090808.0','1044441.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003980.0','1018874.0','41', '38','25','30835.21', '36','3','5428.18', '26','24','25407.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092244.0','1044441.0','35', '25','11','15732.38', '22','6','6868.68', '19','9','8863.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003981.0','1018874.0','3', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092245.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002349.0','1018874.0','24', '17','8','7966.46', '13','3','2244.51', '13','6','5721.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090613.0','1044441.0','3', '2','1','852.87', '2','0','0.0', '2','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003982.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092246.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003983.0','1018874.0','1', '1','1','896.81', '1','0','0.0', '1','1','896.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092247.0','1044441.0','9', '6','1','944.73', '6','0','0.0', '4','1','944.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002271.0','1018874.0','31', '24','1','835.97', '24','0','0.0', '10','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090535.0','1044441.0','4', '3','1','954.27', '3','0','0.0', '2','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003984.0','1018874.0','7', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092248.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003985.0','1018874.0','6', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092249.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003986.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092250.0','1044441.0','9', '7','1','590.12', '6','0','0.0', '4','1','590.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003987.0','1018874.0','2', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092251.0','1044441.0','4', '4','0','0.0', '4','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002350.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090614.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002379.0','1018874.0','15', '12','1','593.5', '12','0','0.0', '8','1','593.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090643.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003988.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092252.0','1044441.0','25', '15','3','10054.02', '15','3','8850.09', '9','1','1203.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003989.0','1018874.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092253.0','1044441.0','1', '1','1','2229.0', '1','1','2229.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003990.0','1018874.0','1', '1','1','6420.46', '1','1','5549.0', '1','1','871.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092254.0','1044441.0','280', '244','138','153533.81', '232','34','59337.65', '152','120','94196.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003991.0','1018874.0','13', '7','0','0.0', '6','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092255.0','1044441.0','93', '63','3','6447.14', '61','1','2624.0', '31','3','3823.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003992.0','1018874.0','21', '15','1','3439.26', '15','1','3439.26', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092256.0','1044441.0','311', '291','229','614246.85', '283','116','313918.07', '240','192','300328.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003993.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092257.0','1044441.0','1', '1','1','230.18', '1','0','0.0', '1','1','230.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002276.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090540.0','1044441.0','5', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003994.0','1018874.0','18', '15','12','51139.39', '15','11','8239.0', '7','6','42900.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092258.0','1044441.0','15', '15','13','41531.65', '15','9','31828.84', '12','8','9702.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003995.0','1018874.0','23', '22','17','78785.57', '20','13','51398.5', '16','11','27387.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092259.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003996.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092260.0','1044441.0','4', '3','2','677.49', '3','1','449.0', '1','1','228.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003997.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092261.0','1044441.0','52', '45','27','90730.29', '43','23','79821.76', '27','12','10908.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003998.0','1018874.0','10', '8','1','1231.77', '8','0','0.0', '3','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092262.0','1044441.0','27', '11','1','971.17', '10','0','0.0', '5','1','971.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003999.0','1018874.0','20', '15','2','1567.12', '14','0','0.0', '7','2','1567.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092263.0','1044441.0','2', '2','2','346.09', '2','0','0.0', '2','2','346.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004000.0','1018874.0','19', '19','16','65188.65', '19','12','37717.48', '14','12','27471.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092264.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004001.0','1018874.0','4', '3','2','2506.77', '3','1','1275.0', '2','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092265.0','1044441.0','3', '2','1','9370.52', '2','1','3448.0', '2','1','5922.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004002.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092266.0','1044441.0','6', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004003.0','1018874.0','70', '33','7','13558.36', '33','5','10231.26', '15','3','3327.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092267.0','1044441.0','1', '1','1','723.52', '1','1','723.52', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004004.0','1018874.0','12', '10','3','2617.76', '10','0','0.0', '5','3','2617.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092268.0','1044441.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004005.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092269.0','1044441.0','8', '6','2','1775.03', '5','0','0.0', '3','2','1775.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004006.0','1018874.0','1', '1','1','992.76', '1','1','992.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092270.0','1044441.0','1', '1','1','1113.47', '1','0','0.0', '1','1','1113.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004007.0','1018874.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092271.0','1044441.0','9191', '8364','5065','8859664.35', '8117','2706','3712075.4', '5276','3651','5147588.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004008.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092272.0','1044441.0','4', '2','1','477.0', '2','1','477.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004009.0','1018874.0','10', '9','3','4071.23', '8','1','1902.09', '5','3','2169.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092273.0','1044441.0','10', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004010.0','1018874.0','11', '6','1','835.97', '6','0','0.0', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092274.0','1044441.0','74', '71','51','182198.2', '71','48','146200.37', '45','30','35997.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004011.0','1018874.0','1', '1','1','15792.9', '1','1','1260.0', '1','1','14532.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092275.0','1044441.0','37', '35','22','71257.75', '35','17','47581.61', '21','12','23676.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004012.0','1018874.0','1', '1','1','449.0', '1','1','449.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092276.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004013.0','1018874.0','1', '1','1','242.03', '1','1','242.03', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092277.0','1044441.0','13', '9','1','772.74', '9','0','0.0', '3','1','772.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004014.0','1018874.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092278.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004015.0','1018874.0','14', '14','0','0.0', '13','0','0.0', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092279.0','1044441.0','7', '6','0','0.0', '6','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004016.0','1018874.0','24', '19','12','10170.32', '17','5','2399.78', '13','10','7770.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092280.0','1044441.0','34', '27','16','39561.59', '26','8','9599.94', '19','13','29961.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004017.0','1018874.0','8', '5','2','3111.53', '5','1','2140.36', '4','1','971.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092281.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004018.0','1018874.0','20', '11','4','3562.49', '10','0','0.0', '7','4','3562.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092282.0','1044441.0','15', '7','0','0.0', '6','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004019.0','1018874.0','1325', '1160','599','827139.85', '1084','233','382430.83', '721','484','444709.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092283.0','1044441.0','357', '336','213','346390.69', '321','100','184741.64', '242','170','161649.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004020.0','1018874.0','1', '1','1','477.0', '1','1','477.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092284.0','1044441.0','6', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004021.0','1018874.0','65', '42','3','10071.45', '38','2','6740.0', '20','2','3331.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092285.0','1044441.0','10', '4','1','2625.0', '3','1','2625.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004022.0','1018874.0','1', '1','1','869.77', '1','0','0.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092286.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004023.0','1018874.0','4496', '3982','2434','5709961.96', '3796','1732','2773130.6', '2630','1533','2936831.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092287.0','1044441.0','4', '1','1','1446.0', '1','1','1446.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004024.0','1018874.0','3', '3','2','10256.24', '2','2','1431.0', '3','1','8825.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092288.0','1044441.0','2', '2','1','2363.25', '1','0','0.0', '2','1','2363.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004025.0','1018874.0','10', '6','1','1928.99', '6','1','898.0', '1','1','1030.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092289.0','1044441.0','10', '5','0','0.0', '5','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004026.0','1018874.0','26', '19','2','6160.48', '17','1','3671.73', '8','2','2488.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092290.0','1044441.0','7', '5','1','2557.29', '5','1','1275.0', '2','1','1282.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004027.0','1018874.0','2', '1','1','477.0', '1','1','477.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092291.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004028.0','1018874.0','11', '11','0','0.0', '11','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092292.0','1044441.0','62', '51','34','141527.51', '50','31','92805.44', '25','16','48722.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004029.0','1018874.0','22', '18','2','1539.23', '15','1','319.72', '13','1','1219.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092293.0','1044441.0','56', '33','1','477.0', '31','1','477.0', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004030.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092294.0','1044441.0','148', '130','91','341881.79', '128','73','197551.51', '72','51','144330.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004031.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092295.0','1044441.0','4', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004032.0','1018874.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092296.0','1044441.0','12', '8','0','0.0', '7','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004033.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092297.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002344.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090608.0','1044441.0','1', '1','1','477.0', '1','1','477.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002330.0','1018874.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090594.0','1044441.0','14', '8','6','33235.89', '7','5','18444.35', '6','5','14791.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004034.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092298.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004035.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092299.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004036.0','1018874.0','1', '1','1','869.77', '1','0','0.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092300.0','1044441.0','6', '6','4','17676.88', '6','4','9100.0', '3','1','8576.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004037.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092301.0','1044441.0','6', '5','0','0.0', '4','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004038.0','1018874.0','41', '30','17','25425.91', '26','10','16873.4', '21','12','8552.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092302.0','1044441.0','21', '7','2','1083.46', '7','1','242.42', '3','1','841.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004039.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092303.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004040.0','1018874.0','58', '50','21','32867.41', '47','14','18803.4', '41','14','14064.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092304.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004041.0','1018874.0','22', '14','1','1422.0', '13','1','1422.0', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092305.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002318.0','1018874.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090582.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004042.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092306.0','1044441.0','27', '22','14','13138.87', '22','1','190.76', '17','14','12948.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004043.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092307.0','1044441.0','7', '5','3','2706.0', '5','3','2706.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004044.0','1018874.0','26', '24','19','51287.72', '20','13','39271.39', '19','13','12016.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092308.0','1044441.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002282.0','1018874.0','4', '4','0','0.0', '3','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090546.0','1044441.0','21', '15','0','0.0', '15','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004045.0','1018874.0','12', '11','0','0.0', '10','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092309.0','1044441.0','6', '6','3','2592.41', '5','0','0.0', '4','3','2592.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004046.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092310.0','1044441.0','1', '1','1','903.57', '1','0','0.0', '1','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004047.0','1018874.0','434', '404','300','671464.58', '393','158','401604.25', '284','229','269860.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092311.0','1044441.0','2', '2','1','2229.0', '2','1','2229.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004048.0','1018874.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092312.0','1044441.0','1', '1','1','477.0', '1','1','477.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004049.0','1018874.0','1', '1','1','477.0', '1','1','477.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092313.0','1044441.0','23', '18','13','38993.85', '17','11','34945.85', '8','5','4048.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004050.0','1018874.0','6', '3','3','1908.0', '3','3','1908.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092314.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004051.0','1018874.0','829', '672','568','1711367.84', '654','550','817540.63', '381','221','893827.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092315.0','1044441.0','17', '10','0','0.0', '10','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004052.0','1018874.0','69', '57','48','314980.36', '57','47','176022.14', '40','34','138958.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092316.0','1044441.0','10', '5','1','1204.61', '5','0','0.0', '4','1','1204.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004053.0','1018874.0','1', '1','1','959.34', '1','0','0.0', '1','1','959.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092317.0','1044441.0','622', '605','444','970054.76', '579','218','519992.31', '473','369','450062.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002298.0','1018874.0','1370', '1309','937','1928643.66', '1280','401','919487.59', '1000','808','1009156.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090562.0','1044441.0','2', '2','2','1164.17', '2','0','0.0', '2','2','1164.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004054.0','1018874.0','8780', '8161','4973','7699304.99', '7932','1940','3177795.49', '5294','3996','4521509.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092318.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004055.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092319.0','1044441.0','1', '1','1','814.54', '1','0','0.0', '1','1','814.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004056.0','1018874.0','6', '5','2','12609.36', '5','2','4986.27', '1','1','7623.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092320.0','1044441.0','21', '9','2','3494.93', '9','2','2291.0', '5','1','1203.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004057.0','1018874.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092321.0','1044441.0','48', '19','3','7454.7', '19','2','2052.0', '11','3','5402.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004058.0','1018874.0','8', '6','3','21383.09', '5','3','12436.27', '4','3','8946.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092322.0','1044441.0','9', '6','2','7754.17', '4','1','6474.0', '6','2','1280.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004059.0','1018874.0','8', '4','0','0.0', '4','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092323.0','1044441.0','7', '5','1','940.7', '5','1','69.24', '1','1','871.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004060.0','1018874.0','30', '24','7','5908.95', '24','0','0.0', '15','7','5908.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092324.0','1044441.0','30', '26','6','14140.84', '26','2','10627.96', '11','4','3512.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002334.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090598.0','1044441.0','1', '1','1','615.47', '1','0','0.0', '1','1','615.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004061.0','1018874.0','13', '6','1','179.64', '6','1','179.64', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092325.0','1044441.0','70', '61','4','9200.47', '57','3','3966.0', '44','2','5234.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004062.0','1018874.0','9', '8','3','4221.15', '8','2','3266.88', '5','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092326.0','1044441.0','30', '21','10','22066.18', '19','8','9046.62', '14','6','13019.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002341.0','1018874.0','1', '1','1','1231.77', '1','0','0.0', '1','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090605.0','1044441.0','47', '27','3','6920.0', '27','3','6920.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004063.0','1018874.0','2742', '2322','1317','2261685.0', '2209','584','998085.93', '1408','992','1263599.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092327.0','1044441.0','48', '23','6','11122.31', '23','4','5213.41', '10','3','5908.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004064.0','1018874.0','1', '1','1','7723.97', '1','1','6806.0', '1','1','917.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092328.0','1044441.0','26', '15','2','6454.43', '14','1','4109.76', '9','2','2344.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004065.0','1018874.0','10258', '9145','6191','17269695.23', '8855','4210','7762260.45', '5852','4004','9507434.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092329.0','1044441.0','33', '11','1','1004.97', '11','0','0.0', '4','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004066.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092330.0','1044441.0','1', '1','1','477.0', '1','1','477.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002313.0','1018874.0','1', '1','1','999.97', '1','0','0.0', '1','1','999.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090577.0','1044441.0','16', '9','1','1730.15', '9','1','1730.15', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004067.0','1018874.0','4', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092331.0','1044441.0','2', '1','1','449.0', '1','1','449.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004068.0','1018874.0','25', '24','1','835.97', '23','0','0.0', '6','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092332.0','1044441.0','260', '232','162','411059.3', '221','121','298284.44', '150','94','112774.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004069.0','1018874.0','9', '9','4','16622.08', '9','4','4111.53', '5','2','12510.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092333.0','1044441.0','8', '7','0','0.0', '7','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004070.0','1018874.0','13', '6','0','0.0', '5','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092334.0','1044441.0','23', '13','3','5011.58', '13','1','1036.0', '7','3','3975.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004071.0','1018874.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092335.0','1044441.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004072.0','1018874.0','17', '14','7','16058.95', '14','4','12097.86', '10','5','3961.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092336.0','1044441.0','2', '2','1','2267.0', '2','1','2267.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004073.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092337.0','1044441.0','31', '19','6','9411.91', '19','3','3345.98', '10','5','6065.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004074.0','1018874.0','24', '13','7','13715.05', '12','5','11087.77', '8','4','2627.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092338.0','1044441.0','1', '1','1','477.0', '1','1','477.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002293.0','1018874.0','23', '14','5','15182.48', '14','5','8072.31', '11','1','7110.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090557.0','1044441.0','7', '6','4','6126.78', '6','3','4453.15', '2','2','1673.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002321.0','1018874.0','1101', '830','417','522869.2', '794','219','291891.03', '439','270','230978.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090585.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002263.0','1018874.0','2', '2','2','7891.32', '2','1','477.0', '1','1','7414.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090527.0','1044441.0','1', '1','1','2027.56', '1','1','477.0', '1','1','1550.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004075.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092339.0','1044441.0','73', '51','45','141377.4', '49','44','76174.48', '30','18','65202.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002259.0','1018874.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090523.0','1044441.0','1', '1','1','194.31', '1','0','0.0', '1','1','194.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004076.0','1018874.0','24', '14','2','1756.44', '13','0','0.0', '4','2','1756.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092340.0','1044441.0','1', '1','1','2631.33', '1','1','2631.33', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002274.0','1018874.0','190', '162','109','320140.49', '157','85','138535.48', '87','59','181605.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090538.0','1044441.0','72', '42','2','1985.98', '39','2','1985.98', '32','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004077.0','1018874.0','6', '3','2','2790.72', '3','1','1026.0', '2','1','1764.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092341.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002270.0','1018874.0','8269', '7391','4370','6262736.84', '7135','1957','2743590.45', '4693','3281','3519146.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090534.0','1044441.0','1', '1','1','2161.9', '1','1','954.0', '1','1','1207.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004078.0','1018874.0','1', '1','1','903.57', '1','0','0.0', '1','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092342.0','1044441.0','1', '1','1','2437.69', '1','1','2437.69', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004079.0','1018874.0','21', '9','2','2118.44', '9','0','0.0', '5','2','2118.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092343.0','1044441.0','26', '14','2','1773.34', '13','0','0.0', '8','2','1773.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004080.0','1018874.0','530', '382','231','876664.26', '352','192','405154.51', '245','138','471509.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092344.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004081.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092345.0','1044441.0','1', '1','1','1062.77', '0','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004082.0','1018874.0','15', '15','11','28754.98', '14','5','21471.27', '13','9','7283.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092346.0','1044441.0','5493', '4939','2710','3833492.48', '4774','1228','1550216.65', '2937','2020','2283275.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004083.0','1018874.0','1', '1','1','5522.09', '1','1','3504.0', '1','1','2018.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092347.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004084.0','1018874.0','1', '1','1','6184.0', '1','1','6184.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092348.0','1044441.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004085.0','1018874.0','51', '47','30','101768.75', '46','28','73018.13', '24','14','28750.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092349.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004086.0','1018874.0','79', '67','53','128541.63', '63','36','80980.95', '51','39','47560.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092350.0','1044441.0','2', '2','2','6092.62', '2','1','3855.88', '2','2','2236.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004087.0','1018874.0','20', '18','9','20976.52', '18','7','17011.18', '7','4','3965.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092351.0','1044441.0','10', '4','1','937.94', '4','1','711.14', '2','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004088.0','1018874.0','8', '5','0','0.0', '5','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092352.0','1044441.0','10', '9','3','2802.31', '9','0','0.0', '5','3','2802.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004089.0','1018874.0','3', '3','1','954.0', '3','1','954.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092353.0','1044441.0','17', '10','4','3488.84', '9','2','1800.0', '5','2','1688.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002295.0','1018874.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090559.0','1044441.0','27', '20','1','500.0', '19','0','0.0', '9','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002345.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090609.0','1044441.0','14', '14','3','5783.31', '13','3','4413.73', '6','1','1369.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004090.0','1018874.0','3', '3','2','762.43', '3','1','753.98', '1','1','8.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092354.0','1044441.0','657', '601','383','709503.68', '581','164','351815.03', '411','310','357688.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004091.0','1018874.0','413', '344','211','618321.51', '318','125','366566.94', '219','156','251754.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092355.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002279.0','1018874.0','7', '7','5','23731.87', '7','5','15690.36', '4','2','8041.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090543.0','1044441.0','42', '24','5','15693.57', '24','4','6541.14', '11','4','9152.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004092.0','1018874.0','1', '1','1','25600.0', '1','1','11216.0', '1','1','14384.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092356.0','1044441.0','62', '43','1','1374.0', '37','1','1374.0', '24','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004093.0','1018874.0','9', '8','3','4338.04', '7','1','2152.0', '4','2','2186.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092357.0','1044441.0','20', '15','0','0.0', '13','0','0.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004094.0','1018874.0','9', '7','2','2571.97', '7','1','1374.0', '4','1','1197.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092358.0','1044441.0','32', '28','17','51574.48', '26','11','26875.14', '18','10','24699.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004095.0','1018874.0','21', '17','2','1891.64', '17','0','0.0', '11','2','1891.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092359.0','1044441.0','1', '1','1','6179.0', '0','0','0.0', '1','1','6179.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002275.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090539.0','1044441.0','11', '8','2','1133.61', '8','0','0.0', '6','2','1133.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004096.0','1018874.0','6', '5','0','0.0', '4','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092360.0','1044441.0','14', '8','1','3648.0', '7','1','3648.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002305.0','1018874.0','19', '13','2','3343.41', '12','1','1866.0', '8','1','1477.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090569.0','1044441.0','1', '1','1','8154.97', '0','0','0.0', '1','1','8154.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004097.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092361.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002319.0','1018874.0','2694', '2250','1224','2525847.62', '2143','718','1082081.88', '1249','804','1443765.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090583.0','1044441.0','21', '19','10','37572.93', '19','8','31253.45', '13','9','6319.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004098.0','1018874.0','1', '1','1','477.0', '1','1','477.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092362.0','1044441.0','5', '5','3','12252.86', '5','1','3586.0', '5','3','8666.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002322.0','1018874.0','35', '25','2','7282.41', '23','1','5100.0', '15','2','2182.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090586.0','1044441.0','4', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004099.0','1018874.0','5', '5','3','11686.5', '5','1','6531.0', '4','3','5155.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092363.0','1044441.0','4', '3','3','32625.46', '3','2','13102.45', '3','3','19523.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004100.0','1018874.0','7', '6','4','8449.57', '5','3','6034.0', '3','2','2415.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092364.0','1044441.0','11', '8','1','861.32', '6','0','0.0', '4','1','861.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004101.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092365.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004102.0','1018874.0','203', '176','108','466989.63', '170','86','259477.6', '99','60','207512.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092366.0','1044441.0','6', '6','1','886.67', '6','0','0.0', '5','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004103.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092367.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004104.0','1018874.0','9', '9','6','5400.3', '8','2','1980.91', '7','5','3419.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092368.0','1044441.0','13', '9','4','5930.32', '8','1','3073.58', '7','4','2856.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004105.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092369.0','1044441.0','1867', '1673','885','1198066.3', '1617','342','618332.44', '992','691','579733.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004106.0','1018874.0','3', '3','1','6165.31', '3','1','5100.0', '3','1','1065.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092370.0','1044441.0','1801', '1614','932','1806150.27', '1579','461','928529.01', '940','689','877621.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002415.0','1018874.0','1', '1','1','629.99', '1','0','0.0', '1','1','629.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090679.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004107.0','1018874.0','14', '11','1','844.42', '11','0','0.0', '6','1','844.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092371.0','1044441.0','17', '11','3','1702.99', '11','2','748.72', '4','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004108.0','1018874.0','5', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092372.0','1044441.0','20', '18','1','1195.77', '18','1','500.12', '14','1','695.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004109.0','1018874.0','67', '51','35','57516.84', '49','9','23532.24', '38','31','33984.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092373.0','1044441.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002316.0','1018874.0','1349', '1141','561','728678.07', '1102','194','354489.38', '627','448','374188.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090580.0','1044441.0','30', '21','4','2802.87', '21','0','0.0', '9','4','2802.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004110.0','1018874.0','3', '3','1','252.84', '3','0','0.0', '3','1','252.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092374.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004111.0','1018874.0','851', '776','403','583488.74', '760','151','230803.11', '429','308','352685.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092375.0','1044441.0','1636', '1537','1113','3018004.93', '1474','671','1762648.73', '1178','814','1255356.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002273.0','1018874.0','8', '5','0','0.0', '5','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090537.0','1044441.0','3', '3','2','1105.02', '3','0','0.0', '2','2','1105.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004112.0','1018874.0','1', '1','1','328.2', '1','0','0.0', '1','1','328.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092376.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004113.0','1018874.0','30', '28','24','75223.17', '28','17','46588.53', '19','15','28634.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092377.0','1044441.0','1', '1','1','1409.23', '1','1','1409.23', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004114.0','1018874.0','1', '1','1','3448.0', '1','1','3448.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092378.0','1044441.0','9', '6','2','1891.64', '5','0','0.0', '3','2','1891.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004115.0','1018874.0','5', '5','1','903.57', '5','0','0.0', '3','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092379.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002320.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090584.0','1044441.0','18', '15','6','5523.31', '15','0','0.0', '11','6','5523.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004116.0','1018874.0','27', '12','5','4361.51', '11','1','1098.0', '10','4','3263.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092380.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004117.0','1018874.0','59', '38','10','17232.3', '37','8','7528.89', '27','5','9703.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092381.0','1044441.0','22', '15','1','886.67', '15','0','0.0', '6','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004118.0','1018874.0','15', '11','2','3653.31', '11','1','2775.09', '4','1','878.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092382.0','1044441.0','15', '13','1','91.24', '13','0','0.0', '5','1','91.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004119.0','1018874.0','17', '12','0','0.0', '12','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092383.0','1044441.0','9', '5','0','0.0', '5','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002292.0','1018874.0','20', '13','1','341.42', '11','0','0.0', '9','1','341.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090556.0','1044441.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002259.0','1018874.0','3', '3','0','0.0', '2','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090523.0','1044441.0','17', '11','2','4040.28', '9','0','0.0', '6','2','4040.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004120.0','1018874.0','16', '10','1','2434.48', '10','1','1275.0', '8','1','1159.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092384.0','1044441.0','9', '7','1','878.22', '6','0','0.0', '5','1','878.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004121.0','1018874.0','16', '12','1','989.76', '12','0','0.0', '7','1','989.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092385.0','1044441.0','7', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004122.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092386.0','1044441.0','24', '10','1','852.87', '10','0','0.0', '4','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002262.0','1018874.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090526.0','1044441.0','8', '4','0','0.0', '4','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004123.0','1018874.0','22', '16','1','1164.17', '16','0','0.0', '8','1','1164.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092387.0','1044441.0','19', '15','1','852.87', '15','0','0.0', '7','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004124.0','1018874.0','6', '5','0','0.0', '5','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092388.0','1044441.0','1', '1','1','915.12', '1','1','915.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004125.0','1018874.0','4', '4','0','0.0', '4','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092389.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004126.0','1018874.0','54', '33','8','12025.06', '33','4','4050.09', '24','7','7974.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092390.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004127.0','1018874.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092391.0','1044441.0','11', '10','3','2459.86', '10','0','0.0', '5','3','2459.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004128.0','1018874.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092392.0','1044441.0','14', '12','0','0.0', '11','0','0.0', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004129.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092393.0','1044441.0','7', '6','3','2697.19', '6','0','0.0', '4','3','2697.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004130.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092394.0','1044441.0','2', '1','1','9750.14', '1','1','6474.0', '1','1','3276.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004131.0','1018874.0','15', '10','1','1004.97', '9','0','0.0', '8','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092395.0','1044441.0','3', '3','1','737.96', '1','1','455.98', '3','1','281.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004132.0','1018874.0','6', '3','2','1810.87', '3','0','0.0', '3','2','1810.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092396.0','1044441.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002471.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090735.0','1044441.0','5', '2','1','920.47', '2','0','0.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004133.0','1018874.0','7', '5','1','1096.57', '4','0','0.0', '3','1','1096.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092397.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004134.0','1018874.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092398.0','1044441.0','9', '5','0','0.0', '5','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004135.0','1018874.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092399.0','1044441.0','4', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004136.0','1018874.0','12', '11','5','6478.5', '11','3','5944.0', '8','2','534.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092400.0','1044441.0','20', '14','0','0.0', '13','0','0.0', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002288.0','1018874.0','5', '5','1','698.54', '5','0','0.0', '2','1','698.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090552.0','1044441.0','13', '9','0','0.0', '8','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002278.0','1018874.0','17', '10','1','341.42', '9','0','0.0', '5','1','341.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090542.0','1044441.0','24', '20','2','4304.0', '19','2','4304.0', '12','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004137.0','1018874.0','23', '12','0','0.0', '12','0','0.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092401.0','1044441.0','4', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002319.0','1018874.0','7', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090583.0','1044441.0','8', '5','0','0.0', '5','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004138.0','1018874.0','29', '17','0','0.0', '15','0','0.0', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092402.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004139.0','1018874.0','44', '39','13','15209.2', '38','2','4717.99', '35','12','10491.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092403.0','1044441.0','9', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002347.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090611.0','1044441.0','11', '7','0','0.0', '7','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004140.0','1018874.0','8', '3','1','852.87', '3','0','0.0', '2','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092404.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004141.0','1018874.0','171', '118','46','48002.49', '112','10','17110.87', '101','38','30891.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092405.0','1044441.0','28', '13','0','0.0', '13','0','0.0', '10','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004142.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092406.0','1044441.0','33', '21','1','327.56', '21','1','327.56', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004143.0','1018874.0','111', '80','36','45644.0', '78','8','12877.34', '70','32','32766.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092407.0','1044441.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004144.0','1018874.0','5', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092408.0','1044441.0','29', '15','3','3231.91', '12','0','0.0', '10','3','3231.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004145.0','1018874.0','18', '10','3','3957.58', '9','1','2226.49', '5','2','1731.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092409.0','1044441.0','9', '5','0','0.0', '5','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002468.0','1018874.0','7', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090732.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004146.0','1018874.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092410.0','1044441.0','8', '6','0','0.0', '6','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004147.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092411.0','1044441.0','53', '24','0','0.0', '22','0','0.0', '13','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004148.0','1018874.0','4', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092412.0','1044441.0','9', '9','1','2581.51', '9','1','2581.51', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004149.0','1018874.0','6', '5','1','1004.97', '5','0','0.0', '4','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092413.0','1044441.0','9', '7','1','861.32', '7','0','0.0', '3','1','861.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004150.0','1018874.0','35', '24','0','0.0', '24','0','0.0', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092414.0','1044441.0','16', '8','0','0.0', '8','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004151.0','1018874.0','27', '12','1','1004.97', '10','0','0.0', '5','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092415.0','1044441.0','8', '3','1','1004.97', '3','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004152.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092416.0','1044441.0','10', '6','0','0.0', '6','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004153.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092417.0','1044441.0','4', '3','2','2319.89', '3','0','0.0', '2','2','2319.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002299.0','1018874.0','9', '7','2','3540.91', '7','2','3540.91', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090563.0','1044441.0','3', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004154.0','1018874.0','10', '7','1','869.77', '7','0','0.0', '4','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092418.0','1044441.0','1', '1','1','1036.0', '1','1','1036.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004155.0','1018874.0','22', '10','1','613.44', '10','1','613.44', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092419.0','1044441.0','11', '11','2','1375.07', '11','0','0.0', '3','2','1375.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004156.0','1018874.0','92', '46','2','2496.07', '44','1','1646.0', '22','1','850.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092420.0','1044441.0','16', '11','0','0.0', '10','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004157.0','1018874.0','13', '8','3','2558.61', '7','0','0.0', '6','3','2558.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092421.0','1044441.0','28', '24','1','1113.47', '24','0','0.0', '13','1','1113.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004158.0','1018874.0','3', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092422.0','1044441.0','53', '33','0','0.0', '32','0','0.0', '12','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004159.0','1018874.0','9', '7','0','0.0', '7','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092423.0','1044441.0','43', '29','2','1721.65', '26','2','1721.65', '12','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004160.0','1018874.0','21', '8','1','2217.46', '8','1','1646.0', '7','1','571.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092424.0','1044441.0','21', '12','0','0.0', '12','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004161.0','1018874.0','79', '40','5','12681.17', '39','2','4888.0', '23','5','7793.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092425.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004162.0','1018874.0','42', '17','1','1004.97', '17','0','0.0', '10','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092426.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004163.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092427.0','1044441.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004164.0','1018874.0','6', '4','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092428.0','1044441.0','22', '17','2','3468.0', '16','2','3468.0', '13','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004165.0','1018874.0','26', '15','0','0.0', '13','0','0.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092429.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004166.0','1018874.0','5', '3','2','1940.25', '3','1','1084.0', '2','1','856.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092430.0','1044441.0','35', '15','1','1036.0', '14','1','1036.0', '10','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004167.0','1018874.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092431.0','1044441.0','12', '4','1','1004.97', '4','0','0.0', '2','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004168.0','1018874.0','26', '17','2','1747.99', '16','0','0.0', '7','2','1747.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092432.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004169.0','1018874.0','17', '12','4','3597.38', '11','0','0.0', '9','4','3597.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092433.0','1044441.0','1', '1','1','852.87', '1','0','0.0', '1','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004170.0','1018874.0','31', '21','2','3029.45', '21','1','918.0', '11','2','2111.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092434.0','1044441.0','13', '8','0','0.0', '8','0','0.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004140.0','1018874.0','8', '4','0','0.0', '4','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092404.0','1044441.0','40', '36','28','70074.3', '35','16','32682.7', '28','22','37391.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002543.0','1018874.0','1', '1','1','988.07', '1','0','0.0', '1','1','988.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090807.0','1044441.0','8', '6','2','2108.33', '6','1','918.0', '5','2','1190.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004171.0','1018874.0','18', '15','5','9740.18', '15','4','5414.4', '8','3','4325.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092435.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004172.0','1018874.0','1', '1','1','311.3', '1','0','0.0', '1','1','311.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092436.0','1044441.0','1', '1','1','2187.95', '1','1','1084.0', '1','1','1103.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004173.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092437.0','1044441.0','1', '1','1','954.0', '1','1','954.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004174.0','1018874.0','10', '4','4','3512.88', '4','0','0.0', '4','4','3512.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092438.0','1044441.0','80', '48','4','2547.32', '46','2','1536.15', '16','2','1011.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004175.0','1018874.0','20', '13','2','1455.59', '12','1','294.42', '7','1','1161.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092439.0','1044441.0','24', '20','0','0.0', '20','0','0.0', '15','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004176.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092440.0','1044441.0','30', '26','11','65167.12', '26','8','36607.55', '15','6','28559.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004177.0','1018874.0','351', '294','189','692864.54', '283','155','396994.39', '181','108','295870.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092441.0','1044441.0','12', '11','7','12960.41', '10','4','9216.1', '6','5','3744.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004178.0','1018874.0','9', '7','1','1231.77', '6','0','0.0', '3','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092442.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002261.0','1018874.0','5', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090525.0','1044441.0','1', '1','1','771.14', '0','0','0.0', '1','1','771.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004179.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092443.0','1044441.0','1', '1','1','2696.12', '1','0','0.0', '1','1','2696.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004180.0','1018874.0','41', '17','1','1330.0', '14','1','1330.0', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092444.0','1044441.0','5', '3','1','439.23', '3','1','301.62', '2','1','137.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004181.0','1018874.0','6', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092445.0','1044441.0','1', '1','1','2278.17', '1','0','0.0', '1','1','2278.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004182.0','1018874.0','12', '7','0','0.0', '6','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092446.0','1044441.0','1', '1','1','3601.38', '1','1','57.96', '1','1','3543.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002304.0','1018874.0','40', '25','2','6062.86', '25','2','2568.0', '17','2','3494.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090568.0','1044441.0','6', '5','1','317.99', '4','0','0.0', '5','1','317.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002302.0','1018874.0','4', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090566.0','1044441.0','15', '11','0','0.0', '10','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004183.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092447.0','1044441.0','6025', '5457','3704','7247425.1', '5193','1490','2860562.46', '4031','3091','4386862.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004184.0','1018874.0','6', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092448.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004185.0','1018874.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092449.0','1044441.0','53', '38','0','0.0', '35','0','0.0', '22','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004186.0','1018874.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092450.0','1044441.0','1', '1','1','949.68', '1','0','0.0', '1','1','949.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004187.0','1018874.0','3', '3','1','918.0', '3','1','918.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092451.0','1044441.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004188.0','1018874.0','53', '42','4','4186.62', '41','2','2679.0', '22','2','1507.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092452.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004189.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092453.0','1044441.0','5', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004190.0','1018874.0','3', '2','2','7081.05', '2','1','5998.0', '1','1','1083.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092454.0','1044441.0','10', '7','2','2000.14', '7','0','0.0', '5','2','2000.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004191.0','1018874.0','1', '1','1','1104.23', '1','0','0.0', '1','1','1104.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092455.0','1044441.0','1', '1','1','1069.66', '1','0','0.0', '1','1','1069.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002323.0','1018874.0','3', '3','3','5267.77', '3','2','4398.0', '2','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090587.0','1044441.0','10', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004192.0','1018874.0','82', '62','4','20857.82', '59','4','10262.48', '42','3','10595.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092456.0','1044441.0','1', '1','1','449.0', '1','1','449.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004193.0','1018874.0','28', '18','5','4296.35', '17','2','988.39', '12','4','3307.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092457.0','1044441.0','7', '5','0','0.0', '5','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004194.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092458.0','1044441.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004195.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092459.0','1044441.0','3', '3','2','1481.9', '3','2','1465.0', '2','1','16.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004196.0','1018874.0','1', '1','1','449.0', '1','1','449.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092460.0','1044441.0','6', '6','2','4635.73', '6','1','2870.84', '4','2','1764.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004197.0','1018874.0','404', '294','158','368105.49', '267','99','168254.85', '170','96','199850.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092461.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002310.0','1018874.0','2', '2','2','3827.92', '2','0','0.0', '2','2','3827.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090574.0','1044441.0','1', '1','1','5362.22', '1','0','0.0', '1','1','5362.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004198.0','1018874.0','2', '2','1','2574.71', '1','0','0.0', '2','1','2574.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092462.0','1044441.0','1', '1','1','1186.66', '0','0','0.0', '1','1','1186.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004199.0','1018874.0','1', '1','1','3360.67', '1','1','844.38', '1','1','2516.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092463.0','1044441.0','1', '1','1','263.0', '1','1','263.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004200.0','1018874.0','1', '1','1','376.46', '1','1','19.02', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092464.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004201.0','1018874.0','2', '2','2','4123.44', '2','1','805.86', '2','2','3317.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092465.0','1044441.0','1', '1','1','849.23', '1','0','0.0', '1','1','849.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004202.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092466.0','1044441.0','1', '1','1','492.7', '1','0','0.0', '1','1','492.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004203.0','1018874.0','1096', '1046','862','1441060.03', '748','303','357432.69', '845','715','1083627.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092467.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004204.0','1018874.0','1', '1','1','714.87', '1','0','0.0', '1','1','714.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092468.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002328.0','1018874.0','2', '2','2','1800.68', '2','1','795.71', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090592.0','1044441.0','2', '2','2','2921.98', '2','2','648.96', '2','2','2273.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002303.0','1018874.0','19', '11','4','3173.3', '11','3','2586.15', '8','1','587.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090567.0','1044441.0','1', '1','1','1427.42', '1','1','934.72', '1','1','492.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004205.0','1018874.0','23', '14','4','2774.94', '13','0','0.0', '7','4','2774.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092469.0','1044441.0','20', '16','11','22516.57', '15','8','19200.67', '11','6','3315.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002290.0','1018874.0','4', '3','0','0.0', '3','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090554.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004206.0','1018874.0','12', '7','2','2723.78', '7','1','2152.0', '4','1','571.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092470.0','1044441.0','12', '9','5','2961.73', '9','1','108.72', '6','4','2853.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002325.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090589.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004207.0','1018874.0','44', '32','5','3699.5', '32','0','0.0', '12','5','3699.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092471.0','1044441.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004208.0','1018874.0','29', '21','0','0.0', '20','0','0.0', '10','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092472.0','1044441.0','42', '29','6','5541.73', '25','0','0.0', '19','6','5541.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004209.0','1018874.0','19', '14','1','252.98', '14','1','252.98', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092473.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004210.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092474.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002309.0','1018874.0','1', '1','1','395.8', '1','0','0.0', '1','1','395.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090573.0','1044441.0','234', '222','188','455352.36', '177','77','120836.63', '189','167','334515.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004211.0','1018874.0','1', '1','1','1558.26', '1','0','0.0', '1','1','1558.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092475.0','1044441.0','1', '1','1','5057.24', '1','1','3186.0', '1','1','1871.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004212.0','1018874.0','1', '1','1','1147.27', '1','0','0.0', '1','1','1147.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092476.0','1044441.0','4', '4','4','10425.21', '4','2','3356.0', '4','4','7069.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004213.0','1018874.0','1', '1','1','894.0', '1','1','894.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092477.0','1044441.0','75', '54','8','24062.77', '48','2','1965.08', '34','7','22097.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004214.0','1018874.0','1', '1','1','237.3', '1','1','237.3', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092478.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004215.0','1018874.0','11', '8','1','1154.03', '8','0','0.0', '4','1','1154.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092479.0','1044441.0','1', '1','1','4393.35', '1','1','4166.55', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004216.0','1018874.0','11', '9','0','0.0', '9','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092480.0','1044441.0','14', '11','0','0.0', '10','0','0.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004217.0','1018874.0','3', '3','2','2633.2', '3','2','1848.0', '2','1','785.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092481.0','1044441.0','28', '20','3','8001.2', '18','1','6018.0', '12','3','1983.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004218.0','1018874.0','11', '7','4','14674.88', '7','2','6676.42', '3','3','7998.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092482.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004219.0','1018874.0','1', '1','1','869.77', '1','0','0.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092483.0','1044441.0','1', '1','1','11878.77', '1','1','10647.0', '1','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004220.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092484.0','1044441.0','5915', '5492','4214','14571955.06', '5328','2671','7110862.23', '4092','3210','7461092.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004221.0','1018874.0','26', '16','1','226.8', '16','0','0.0', '9','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092485.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004222.0','1018874.0','1', '1','1','1666.0', '1','1','1666.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092486.0','1044441.0','14', '12','3','1309.85', '11','0','0.0', '9','3','1309.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004223.0','1018874.0','10', '9','7','29275.57', '9','6','20221.04', '7','6','9054.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092487.0','1044441.0','25', '17','0','0.0', '16','0','0.0', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004224.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092488.0','1044441.0','1', '1','1','4782.75', '1','1','1666.0', '1','1','3116.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002289.0','1018874.0','20', '18','3','12464.93', '16','3','2379.64', '15','3','10085.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090553.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004225.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092489.0','1044441.0','1', '1','1','954.27', '1','0','0.0', '1','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004226.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092490.0','1044441.0','6', '6','6','16016.51', '5','3','5689.45', '5','5','10327.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004227.0','1018874.0','24', '12','2','1919.02', '12','0','0.0', '6','2','1919.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092491.0','1044441.0','1', '1','1','1669.06', '1','1','1275.0', '1','1','394.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004228.0','1018874.0','50', '35','0','0.0', '34','0','0.0', '22','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092492.0','1044441.0','1', '1','1','99.73', '1','1','99.73', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004229.0','1018874.0','1', '1','1','18123.42', '1','1','5994.0', '1','1','12129.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092493.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004230.0','1018874.0','2', '1','1','985.62', '1','1','65.15', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092494.0','1044441.0','2', '2','2','1295.26', '2','0','0.0', '2','2','1295.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004231.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092495.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004232.0','1018874.0','7', '3','2','9166.93', '3','1','5100.0', '3','2','4066.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092496.0','1044441.0','4', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004233.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092497.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004234.0','1018874.0','17', '13','2','1874.74', '13','0','0.0', '8','2','1874.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092498.0','1044441.0','24', '19','1','878.22', '19','0','0.0', '10','1','878.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004235.0','1018874.0','22', '15','1','927.23', '14','0','0.0', '8','1','927.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092499.0','1044441.0','16', '14','1','1666.0', '12','1','1666.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004236.0','1018874.0','2', '1','1','794.29', '1','1','301.59', '1','1','492.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092500.0','1044441.0','4', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004237.0','1018874.0','1', '1','1','2920.08', '1','1','533.76', '1','1','2386.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092501.0','1044441.0','16', '10','4','3648.26', '10','0','0.0', '7','4','3648.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004238.0','1018874.0','6', '6','6','4482.01', '5','4','2569.95', '5','4','1912.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092502.0','1044441.0','1', '1','1','1084.0', '1','1','1084.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002880.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091144.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004239.0','1018874.0','12', '5','2','1671.94', '5','0','0.0', '3','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092503.0','1044441.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004240.0','1018874.0','3', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092504.0','1044441.0','4', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002546.0','1018874.0','26', '16','2','2186.3', '16','1','1275.0', '6','2','911.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090810.0','1044441.0','16', '12','3','9399.0', '12','2','6936.0', '5','2','2463.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004241.0','1018874.0','1895', '1669','1046','1892455.11', '1625','620','893110.3', '1001','685','999344.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092505.0','1044441.0','6091', '5462','3509','6557380.05', '5294','1684','3142535.92', '3579','2627','3414844.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004242.0','1018874.0','26', '20','15','38577.07', '18','15','21872.22', '10','4','16704.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092506.0','1044441.0','5', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002484.0','1018874.0','11', '7','1','937.37', '6','0','0.0', '5','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090748.0','1044441.0','21', '16','9','40907.63', '16','6','12134.07', '10','5','28773.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004243.0','1018874.0','11', '5','2','1071.22', '5','0','0.0', '3','2','1071.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092507.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004244.0','1018874.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092508.0','1044441.0','9', '9','6','13983.31', '9','3','7556.72', '8','6','6426.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004245.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092509.0','1044441.0','4', '3','3','6556.89', '3','2','4707.5', '2','2','1849.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004246.0','1018874.0','25', '13','12','22737.79', '13','12','17352.0', '5','4','5385.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092510.0','1044441.0','2', '2','2','5691.03', '2','2','2400.0', '1','1','3291.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004247.0','1018874.0','699', '537','427','1210846.42', '510','403','519045.02', '311','186','691801.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092511.0','1044441.0','10', '6','3','2568.82', '6','1','447.0', '4','3','2121.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004248.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092512.0','1044441.0','1', '1','1','869.77', '1','0','0.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004249.0','1018874.0','7', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092513.0','1044441.0','18', '12','1','3861.27', '12','0','0.0', '3','1','3861.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004250.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092514.0','1044441.0','71', '51','8','12635.15', '50','4','7275.53', '27','5','5359.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004251.0','1018874.0','44', '35','1','920.47', '32','0','0.0', '23','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092515.0','1044441.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004252.0','1018874.0','1', '1','1','3555.66', '1','1','1675.71', '1','1','1879.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092516.0','1044441.0','15', '12','2','3468.37', '11','1','2531.0', '6','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004253.0','1018874.0','1', '1','1','447.0', '1','1','447.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092517.0','1044441.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002389.0','1018874.0','23', '14','2','1388.49', '14','0','0.0', '7','2','1388.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090653.0','1044441.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002419.0','1018874.0','138', '104','4','4028.81', '98','1','1850.0', '85','4','2178.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090683.0','1044441.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004254.0','1018874.0','24', '20','9','27024.77', '19','7','17364.35', '11','5','9660.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092518.0','1044441.0','47', '41','5','4820.71', '40','0','0.0', '23','5','4820.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004255.0','1018874.0','6', '5','2','1325.06', '5','0','0.0', '3','2','1325.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092519.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004256.0','1018874.0','61', '46','5','11451.2', '45','2','7029.55', '33','4','4421.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092520.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004257.0','1018874.0','1', '1','1','1924.51', '1','1','494.0', '1','1','1430.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092521.0','1044441.0','24', '20','1','226.8', '19','0','0.0', '11','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004258.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092522.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004259.0','1018874.0','852', '758','458','1301277.46', '720','341','926171.57', '467','272','375105.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092523.0','1044441.0','1', '1','1','957.25', '1','1','512.13', '1','1','445.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002363.0','1018874.0','4', '4','3','12409.25', '4','3','10540.86', '2','2','1868.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090627.0','1044441.0','10', '10','8','10967.6', '10','5','9059.06', '5','5','1908.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004260.0','1018874.0','2901', '2800','2394','4670521.02', '2109','928','886578.75', '2399','2126','3783942.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092524.0','1044441.0','258', '247','229','530140.9', '196','118','132382.74', '226','198','397758.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002851.0','1018874.0','2', '2','2','9521.43', '2','2','2271.93', '2','2','7249.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091115.0','1044441.0','3', '3','3','6072.66', '3','2','379.4', '3','3','5693.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002451.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090715.0','1044441.0','222', '205','164','550134.69', '186','101','181168.19', '176','141','368966.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002475.0','1018874.0','6', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090739.0','1044441.0','1', '1','1','2304.0', '1','1','2304.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002454.0','1018874.0','21', '11','1','1243.98', '11','0','0.0', '6','1','1243.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090718.0','1044441.0','1', '1','1','654.77', '1','0','0.0', '1','1','654.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004261.0','1018874.0','36', '21','3','2595.29', '19','0','0.0', '12','3','2595.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092525.0','1044441.0','1', '1','1','6648.93', '1','1','2550.0', '1','1','4098.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002488.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090752.0','1044441.0','42', '22','1','3105.16', '20','1','1330.0', '11','1','1775.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004262.0','1018874.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092526.0','1044441.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004263.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092527.0','1044441.0','50', '24','1','1257.81', '22','0','0.0', '9','1','1257.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002491.0','1018874.0','3', '3','1','2764.15', '3','0','0.0', '3','1','2764.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090755.0','1044441.0','18', '11','1','236.94', '11','0','0.0', '8','1','236.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002473.0','1018874.0','1483', '1404','985','2428431.01', '1366','498','1253428.94', '1014','771','1175002.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090737.0','1044441.0','13', '5','1','920.47', '5','0','0.0', '3','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002526.0','1018874.0','4270', '4011','2676','3905109.1', '3893','877','1545623.52', '2878','2294','2359485.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090790.0','1044441.0','69', '45','2','5458.6', '45','1','1850.0', '11','2','3608.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002390.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090654.0','1044441.0','13', '8','0','0.0', '8','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004264.0','1018874.0','10', '8','0','0.0', '8','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092528.0','1044441.0','1', '1','1','4469.57', '1','1','3566.0', '1','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002466.0','1018874.0','195', '142','56','135257.25', '134','28','46132.35', '67','37','89124.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090730.0','1044441.0','40', '32','17','61062.65', '32','12','38066.79', '18','11','22995.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004265.0','1018874.0','28', '16','2','2129.77', '16','1','1260.0', '6','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092529.0','1044441.0','6', '4','0','0.0', '3','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004266.0','1018874.0','39', '28','9','10219.38', '28','3','2990.0', '23','8','7229.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092530.0','1044441.0','27', '12','2','1233.22', '11','2','388.8', '6','1','844.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002611.0','1018874.0','5915', '5512','3755','10252624.34', '5380','2518','4995823.63', '3542','2483','5256800.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090875.0','1044441.0','1', '1','1','4814.99', '1','1','938.0', '1','1','3876.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004267.0','1018874.0','1', '1','1','2884.52', '1','0','0.0', '1','1','2884.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092531.0','1044441.0','2', '2','2','4542.82', '2','2','1339.11', '2','1','3203.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002889.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091153.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002365.0','1018874.0','1', '1','1','297.73', '1','1','297.73', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090629.0','1044441.0','5', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004268.0','1018874.0','1', '1','1','523.27', '1','0','0.0', '1','1','523.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092532.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002892.0','1018874.0','24', '13','1','988.07', '12','0','0.0', '5','1','988.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091156.0','1044441.0','8', '5','0','0.0', '5','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004269.0','1018874.0','19', '10','0','0.0', '9','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092533.0','1044441.0','1', '1','1','1231.77', '1','0','0.0', '1','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004270.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092534.0','1044441.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004271.0','1018874.0','145', '138','98','377516.22', '134','60','183521.54', '98','76','193994.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092535.0','1044441.0','2047', '1887','1244','1856811.8', '1817','394','728689.92', '1352','1043','1128121.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004272.0','1018874.0','1', '1','1','447.0', '1','1','447.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092536.0','1044441.0','7', '7','2','1122.26', '6','1','250.8', '4','1','871.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002359.0','1018874.0','8', '6','0','0.0', '6','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090623.0','1044441.0','1', '1','1','1672.33', '1','1','198.0', '1','1','1474.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002386.0','1018874.0','1', '1','1','693.97', '1','0','0.0', '1','1','693.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090650.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004273.0','1018874.0','1', '1','1','1499.32', '1','0','0.0', '1','1','1499.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092537.0','1044441.0','1', '1','1','6198.1', '1','1','2265.0', '1','1','3933.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004274.0','1018874.0','1', '1','1','985.39', '1','0','0.0', '1','1','985.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092538.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004275.0','1018874.0','1549', '1493','1081','2084170.74', '1053','342','404871.12', '1252','965','1679299.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092539.0','1044441.0','1', '1','1','4415.99', '1','1','3346.67', '1','1','1069.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004276.0','1018874.0','1', '1','1','1989.22', '1','0','0.0', '1','1','1989.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092540.0','1044441.0','6', '6','5','9893.65', '4','0','0.0', '5','5','9893.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004277.0','1018874.0','2324', '2243','1871','3836580.79', '1612','500','746646.52', '1982','1723','3089934.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092541.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004278.0','1018874.0','11', '11','7','24237.26', '11','7','15634.98', '3','3','8602.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092542.0','1044441.0','2', '2','2','285.05', '1','1','153.55', '1','1','131.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002537.0','1018874.0','38', '26','12','35562.86', '26','10','30362.92', '11','6','5199.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090801.0','1044441.0','2', '2','2','9286.68', '2','0','0.0', '2','2','9286.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002470.0','1018874.0','15', '12','8','14878.41', '12','5','12108.9', '6','4','2769.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090734.0','1044441.0','1', '1','1','910.44', '1','1','57.96', '1','1','852.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004279.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092543.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004280.0','1018874.0','1', '1','1','1011.04', '1','1','160.9', '1','1','850.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092544.0','1044441.0','2', '2','2','9155.29', '2','1','1275.0', '2','2','7880.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002420.0','1018874.0','1', '1','1','3210.05', '1','1','2133.77', '1','1','1076.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090684.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002884.0','1018874.0','66', '59','43','94015.04', '55','21','69604.52', '41','31','24410.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091148.0','1044441.0','2', '1','1','903.57', '1','0','0.0', '1','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004281.0','1018874.0','1', '1','1','225.05', '1','1','225.05', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092545.0','1044441.0','11', '11','10','38815.1', '11','8','9076.69', '9','8','29738.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002539.0','1018874.0','479', '471','382','671459.84', '442','227','207581.94', '363','316','463877.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090803.0','1044441.0','1', '1','1','1117.4', '0','0','0.0', '1','1','1117.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004282.0','1018874.0','1', '1','1','11732.14', '1','1','1012.0', '1','1','10720.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092546.0','1044441.0','1', '1','1','3074.52', '1','1','337.32', '1','1','2737.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004283.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092547.0','1044441.0','1', '1','1','413.99', '1','1','345.18', '1','1','68.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002494.0','1018874.0','2', '2','1','2713.79', '1','0','0.0', '1','1','2713.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090758.0','1044441.0','2', '2','2','1414.32', '2','1','345.0', '2','1','1069.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002828.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091092.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002547.0','1018874.0','2', '1','1','449.0', '1','1','449.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090811.0','1044441.0','396', '365','286','598530.59', '331','163','229063.26', '284','231','369467.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002571.0','1018874.0','1', '1','1','449.0', '1','1','449.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090835.0','1044441.0','24', '23','17','71063.24', '22','10','11608.2', '19','15','59455.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002589.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090853.0','1044441.0','1', '1','1','6214.75', '1','0','0.0', '1','1','6214.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002508.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090772.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004284.0','1018874.0','1', '1','1','2171.99', '1','0','0.0', '1','1','2171.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092548.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002882.0','1018874.0','22', '19','7','4930.14', '16','2','2145.0', '13','5','2785.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091146.0','1044441.0','1', '1','1','3524.06', '1','1','411.68', '1','1','3112.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002535.0','1018874.0','1', '1','1','1272.92', '1','0','0.0', '1','1','1272.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090799.0','1044441.0','3584', '3479','2990','7817610.57', '3085','1872','2378752.54', '2837','2288','5438858.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004285.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092549.0','1044441.0','2', '2','1','345.0', '2','1','345.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002857.0','1018874.0','1', '1','1','660.0', '1','1','660.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091121.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004286.0','1018874.0','6', '6','5','7901.69', '4','1','1275.0', '5','5','6626.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092550.0','1044441.0','1', '1','1','3432.56', '1','1','898.0', '1','1','2534.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004287.0','1018874.0','8', '8','4','15087.04', '7','3','12167.47', '4','2','2919.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092551.0','1044441.0','3', '3','3','5560.34', '3','2','2287.0', '3','2','3273.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004288.0','1018874.0','28', '25','19','34292.61', '25','14','14185.99', '15','12','20106.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092552.0','1044441.0','19', '19','14','37435.66', '18','9','8704.8', '13','10','28730.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002464.0','1018874.0','1', '1','1','400.91', '1','1','400.91', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090728.0','1044441.0','2', '2','2','2099.92', '2','2','2099.92', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002492.0','1018874.0','1', '1','1','457.8', '1','1','457.8', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090756.0','1044441.0','24', '18','0','0.0', '17','0','0.0', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002362.0','1018874.0','1', '1','1','1396.95', '1','1','462.89', '1','1','934.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090626.0','1044441.0','16', '14','9','68958.2', '13','5','32897.0', '12','9','36061.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004289.0','1018874.0','1', '1','1','766.42', '0','0','0.0', '1','1','766.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092553.0','1044441.0','183', '163','105','281623.54', '151','71','210856.88', '103','67','70766.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002594.0','1018874.0','2', '2','2','1759.47', '2','2','1402.03', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090858.0','1044441.0','122', '103','70','212322.04', '94','46','143023.09', '70','54','69298.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004290.0','1018874.0','1', '1','1','610.74', '1','1','115.9', '1','1','494.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092554.0','1044441.0','2', '2','2','1775.67', '0','0','0.0', '2','2','1775.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004291.0','1018874.0','1', '1','1','4407.06', '1','1','2793.0', '1','1','1614.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092555.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002886.0','1018874.0','1', '1','1','6000.72', '1','1','4341.0', '1','1','1659.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091150.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004292.0','1018874.0','2', '2','2','11182.48', '2','2','2550.0', '2','2','8632.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092556.0','1044441.0','1', '1','1','2433.89', '1','0','0.0', '1','1','2433.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002452.0','1018874.0','1', '1','1','338.65', '1','1','338.65', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090716.0','1044441.0','2', '2','1','3128.31', '2','0','0.0', '1','1','3128.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002533.0','1018874.0','1', '1','1','488.94', '1','0','0.0', '1','1','488.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090797.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004293.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092557.0','1044441.0','2', '2','2','2264.21', '2','1','474.0', '2','2','1790.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002455.0','1018874.0','5', '5','5','27533.75', '2','0','0.0', '5','5','27533.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090719.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004294.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092558.0','1044441.0','4', '4','4','6017.93', '3','2','1190.82', '3','3','4827.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004295.0','1018874.0','1', '1','1','1111.74', '1','0','0.0', '1','1','1111.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092559.0','1044441.0','1', '1','1','1788.9', '1','1','1275.0', '1','1','513.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002708.0','1018874.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090972.0','1044441.0','1', '1','1','1165.8', '1','1','264.56', '1','1','901.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002465.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090729.0','1044441.0','1', '1','1','631.16', '1','0','0.0', '1','1','631.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002891.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091155.0','1044441.0','2', '2','1','648.65', '2','1','72.03', '2','1','576.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004296.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092560.0','1044441.0','1', '1','1','1123.74', '1','1','138.34', '1','1','985.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004297.0','1018874.0','1', '1','1','1696.67', '1','0','0.0', '1','1','1696.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092561.0','1044441.0','4', '4','4','21568.87', '4','3','9236.59', '4','4','12332.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004298.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092562.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004299.0','1018874.0','2', '2','2','2046.45', '1','1','157.38', '2','2','1889.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092563.0','1044441.0','1', '1','1','1225.22', '0','0','0.0', '1','1','1225.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004300.0','1018874.0','3', '3','2','2011.83', '2','1','1275.0', '3','1','736.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092564.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004301.0','1018874.0','2', '2','2','555.44', '2','1','198.0', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092565.0','1044441.0','9', '7','0','0.0', '7','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004302.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092566.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004303.0','1018874.0','5', '4','1','231.87', '4','0','0.0', '2','1','231.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092567.0','1044441.0','12', '10','1','1004.97', '10','0','0.0', '6','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002388.0','1018874.0','1', '1','1','14602.93', '1','1','1012.0', '1','1','13590.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090652.0','1044441.0','66', '44','21','28607.07', '40','10','17506.6', '19','13','11100.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004304.0','1018874.0','2', '2','1','3088.92', '2','1','1538.89', '1','1','1550.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092568.0','1044441.0','3', '1','1','169.0', '1','0','0.0', '1','1','169.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004305.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092569.0','1044441.0','1', '1','1','9663.12', '1','1','277.0', '1','1','9386.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004306.0','1018874.0','1', '1','1','2007.14', '1','0','0.0', '1','1','2007.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092570.0','1044441.0','1', '1','1','555.83', '1','1','555.83', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002592.0','1018874.0','3734', '3624','3087','8069004.45', '3297','1960','2919100.87', '2937','2356','5149903.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090856.0','1044441.0','92', '85','73','121881.0', '76','37','39760.64', '69','58','82120.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004307.0','1018874.0','2158', '2098','1733','3801402.54', '1868','880','798280.78', '1777','1484','3003121.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092571.0','1044441.0','1', '1','1','11488.98', '1','1','5100.0', '1','1','6388.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002706.0','1018874.0','1', '1','1','7061.12', '1','1','148.02', '1','1','6913.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090970.0','1044441.0','1', '1','1','1675.63', '1','1','1116.92', '1','1','558.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002590.0','1018874.0','1', '1','1','4382.23', '1','1','1650.48', '1','1','2731.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090854.0','1044441.0','16', '13','7','8167.85', '12','3','5125.0', '6','4','3042.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002570.0','1018874.0','2', '2','2','16801.17', '2','1','4500.0', '2','2','12301.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090834.0','1044441.0','1', '1','1','714.87', '0','0','0.0', '1','1','714.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002453.0','1018874.0','2', '2','2','2864.48', '2','2','893.7', '1','1','1970.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090717.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004308.0','1018874.0','1', '1','1','478.27', '1','1','120.83', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092572.0','1044441.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004309.0','1018874.0','1', '1','1','231.56', '1','0','0.0', '1','1','231.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092573.0','1044441.0','2', '2','1','283.68', '2','1','283.68', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002859.0','1018874.0','1', '1','1','1767.7', '1','1','1275.0', '1','1','492.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091123.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004310.0','1018874.0','1', '1','1','702.0', '0','0','0.0', '1','1','702.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092574.0','1044441.0','1', '1','1','449.0', '1','1','449.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004311.0','1018874.0','22', '21','15','68904.98', '21','11','48112.21', '13','10','20792.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092575.0','1044441.0','5', '5','4','8186.69', '4','3','3772.89', '5','3','4413.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004312.0','1018874.0','1', '1','1','795.44', '1','0','0.0', '1','1','795.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092576.0','1044441.0','493', '481','383','901694.84', '427','207','221244.46', '382','325','680450.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004313.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092577.0','1044441.0','3', '3','3','5915.38', '3','2','411.8', '3','3','5503.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004314.0','1018874.0','12', '12','12','37291.43', '11','10','14115.87', '11','11','23175.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092578.0','1044441.0','23', '20','17','25118.69', '17','9','8098.18', '15','13','17020.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004315.0','1018874.0','167', '162','123','245155.65', '155','69','76726.21', '128','103','168429.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092579.0','1044441.0','1', '1','1','1900.96', '1','0','0.0', '1','1','1900.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004316.0','1018874.0','141', '132','109','204668.35', '118','51','58425.21', '107','92','146243.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092580.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004317.0','1018874.0','1', '1','1','2859.72', '1','1','1012.0', '1','1','1847.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092581.0','1044441.0','1', '1','1','2617.83', '1','1','1275.0', '1','1','1342.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004318.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092582.0','1044441.0','5', '5','4','9619.2', '3','3','5984.61', '3','2','3634.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004319.0','1018874.0','203', '194','164','426138.83', '172','74','112206.0', '173','147','313932.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092583.0','1044441.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002888.0','1018874.0','4', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091152.0','1044441.0','6', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004320.0','1018874.0','16', '13','12','53989.56', '12','10','35923.07', '12','11','18066.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092584.0','1044441.0','1', '1','1','937.37', '1','0','0.0', '1','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004321.0','1018874.0','40', '39','29','92293.56', '37','20','59074.62', '28','22','33218.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092585.0','1044441.0','1', '1','1','2173.0', '1','1','2173.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004322.0','1018874.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092586.0','1044441.0','1', '1','1','3695.45', '1','1','27.83', '1','1','3667.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004323.0','1018874.0','1097', '1057','869','1813613.29', '909','467','475293.55', '942','778','1338319.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092587.0','1044441.0','1', '1','1','2233.08', '1','0','0.0', '1','1','2233.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004324.0','1018874.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092588.0','1044441.0','2', '2','2','8453.1', '2','1','250.13', '2','2','8202.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004325.0','1018874.0','1', '1','1','4734.95', '1','1','1496.0', '1','1','3238.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092589.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004326.0','1018874.0','1', '1','1','357.44', '1','0','0.0', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092590.0','1044441.0','4', '4','3','3994.52', '3','2','337.54', '3','2','3656.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004327.0','1018874.0','1', '1','1','884.56', '1','1','884.56', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092591.0','1044441.0','3', '3','3','16353.71', '3','1','3239.34', '3','3','13114.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004328.0','1018874.0','1470', '1409','1092','2468807.53', '1102','468','517056.48', '1129','920','1951751.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092592.0','1044441.0','1', '1','1','37.32', '1','1','37.32', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002758.0','1018874.0','1', '1','1','1446.99', '1','1','551.76', '1','1','895.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091022.0','1044441.0','1', '1','1','911.83', '1','1','350.32', '1','1','561.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002894.0','1018874.0','1', '1','1','2160.6', '1','1','1275.0', '1','1','885.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091158.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004329.0','1018874.0','1', '1','1','3751.27', '1','0','0.0', '1','1','3751.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092593.0','1044441.0','199', '190','168','348193.08', '171','90','104142.33', '161','146','244050.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004330.0','1018874.0','2', '2','1','1342.84', '1','0','0.0', '2','1','1342.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092594.0','1044441.0','1', '1','1','1830.58', '0','0','0.0', '1','1','1830.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004331.0','1018874.0','1', '1','1','1313.98', '1','0','0.0', '1','1','1313.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092595.0','1044441.0','1', '1','1','5994.29', '1','1','3133.26', '1','1','2861.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004332.0','1018874.0','1430', '1357','1038','2289190.98', '1199','602','856695.62', '1008','786','1432495.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092596.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002631.0','1018874.0','1', '1','1','357.44', '0','0','0.0', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090895.0','1044441.0','1', '1','1','1749.0', '1','1','48.96', '1','1','1700.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004333.0','1018874.0','1', '1','1','263.0', '1','0','0.0', '1','1','263.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092597.0','1044441.0','1', '1','1','890.25', '1','0','0.0', '1','1','890.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004334.0','1018874.0','3', '3','3','11007.05', '3','2','2683.37', '2','2','8323.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092598.0','1044441.0','1', '1','1','10042.89', '1','1','3693.0', '1','1','6349.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004335.0','1018874.0','1', '1','1','357.44', '1','0','0.0', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092599.0','1044441.0','395', '378','319','561410.9', '280','122','153689.87', '313','268','407721.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004336.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092600.0','1044441.0','1', '1','1','3205.29', '0','0','0.0', '1','1','3205.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004337.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092601.0','1044441.0','3', '3','3','3169.68', '2','0','0.0', '3','3','3169.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004338.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092602.0','1044441.0','1', '1','1','1974.97', '1','1','1275.0', '1','1','699.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002798.0','1018874.0','1', '1','1','372.74', '1','0','0.0', '1','1','372.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091062.0','1044441.0','1', '1','1','2907.44', '1','1','2550.0', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004339.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092603.0','1044441.0','2271', '2170','1519','3346672.87', '1755','668','779955.73', '1762','1309','2566717.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002395.0','1018874.0','3', '3','2','1667.3', '1','0','0.0', '2','2','1667.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090659.0','1044441.0','1', '1','1','3042.7', '1','1','2550.0', '1','1','492.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002591.0','1018874.0','1', '1','1','2701.76', '1','1','1275.0', '1','1','1426.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090855.0','1044441.0','753', '726','600','1317149.73', '680','405','482754.86', '508','407','834394.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002859.0','1018874.0','1', '1','1','4167.89', '1','1','2550.0', '1','1','1617.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091123.0','1044441.0','2', '2','1','970.23', '2','0','0.0', '1','1','970.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004340.0','1018874.0','1', '1','1','144.0', '1','1','144.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092604.0','1044441.0','1', '1','1','1631.78', '1','0','0.0', '1','1','1631.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004341.0','1018874.0','1', '1','1','15605.58', '1','1','1194.0', '1','1','14411.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092605.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002710.0','1018874.0','1', '1','1','2415.9', '1','0','0.0', '1','1','2415.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090974.0','1044441.0','17', '12','0','0.0', '11','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004342.0','1018874.0','4', '3','1','41.44', '3','1','41.44', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092606.0','1044441.0','7', '6','0','0.0', '4','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004343.0','1018874.0','6', '4','2','6565.0', '2','2','6565.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092607.0','1044441.0','5', '4','1','13338.17', '2','1','5998.0', '3','1','7340.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004344.0','1018874.0','1', '1','1','3582.1', '1','0','0.0', '1','1','3582.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092608.0','1044441.0','30', '27','17','37524.33', '24','10','28805.65', '19','12','8718.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002756.0','1018874.0','44', '38','6','7074.97', '37','1','833.0', '20','6','6241.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091020.0','1044441.0','21', '16','2','1127.56', '16','1','142.52', '8','1','985.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004345.0','1018874.0','334', '290','174','380068.6', '270','115','263362.38', '183','109','116706.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092609.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004346.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092610.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004347.0','1018874.0','2', '2','2','16425.42', '2','2','6605.2', '2','2','9820.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092611.0','1044441.0','195', '172','102','262472.86', '161','78','187755.44', '92','58','74717.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004348.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092612.0','1044441.0','3256', '3146','2768','6569570.22', '2191','995','1196017.02', '2890','2547','5373553.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002836.0','1018874.0','2148', '2077','1818','5033701.71', '1931','1121','1485049.18', '1648','1452','3548652.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091100.0','1044441.0','265', '248','172','313590.8', '185','62','76621.21', '202','147','236969.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004349.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092613.0','1044441.0','1', '1','1','985.39', '0','0','0.0', '1','1','985.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002864.0','1018874.0','3', '3','2','3851.4', '2','0','0.0', '2','2','3851.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091128.0','1044441.0','1', '1','1','112.38', '1','1','112.38', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004350.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092614.0','1044441.0','1', '1','1','263.89', '1','1','263.89', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002675.0','1018874.0','1', '1','1','3083.49', '1','1','382.03', '1','1','2701.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090939.0','1044441.0','619', '584','476','779485.57', '464','209','254031.58', '457','372','525453.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004351.0','1018874.0','1', '1','1','131.5', '1','0','0.0', '1','1','131.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092615.0','1044441.0','1', '1','1','2791.46', '1','1','1389.86', '1','1','1401.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002665.0','1018874.0','7844', '7546','6318','14187206.18', '6093','2736','3221230.0', '6232','5313','10965976.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090929.0','1044441.0','1', '1','1','1692.7', '0','0','0.0', '1','1','1692.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002717.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090981.0','1044441.0','1', '1','1','1922.95', '1','0','0.0', '1','1','1922.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004352.0','1018874.0','1', '1','1','558.71', '1','0','0.0', '1','1','558.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092616.0','1044441.0','1', '1','1','851.35', '1','1','157.38', '1','1','693.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004353.0','1018874.0','1', '1','1','1682.56', '1','1','1682.56', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092617.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004354.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092618.0','1044441.0','3', '2','1','473.67', '1','0','0.0', '1','1','473.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002369.0','1018874.0','7612', '7394','6623','19739315.76', '6834','4306','5349342.62', '6310','5522','14389973.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090633.0','1044441.0','15', '12','8','22336.47', '10','7','7836.14', '9','6','14500.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004355.0','1018874.0','65', '59','49','87143.54', '53','30','29893.31', '42','36','57250.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092619.0','1044441.0','1', '1','1','1094.39', '1','1','259.16', '1','1','835.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004356.0','1018874.0','1', '1','1','2471.01', '1','1','1023.9', '1','1','1447.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092620.0','1044441.0','4993', '4853','3878','14584783.42', '4547','2434','3936274.71', '4041','3276','10648508.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004357.0','1018874.0','421', '407','319','813487.46', '350','156','200951.02', '325','261','612536.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092621.0','1044441.0','1', '1','1','9526.91', '1','1','440.0', '1','1','9086.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004358.0','1018874.0','165', '144','73','125218.86', '131','40','42029.17', '89','51','83189.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092622.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004359.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092623.0','1044441.0','1', '1','1','977.87', '1','0','0.0', '1','1','977.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004360.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092624.0','1044441.0','3', '3','3','8473.53', '3','1','1275.0', '3','3','7198.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004361.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092625.0','1044441.0','10', '9','2','3263.27', '9','2','2763.27', '4','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004362.0','1018874.0','1', '1','1','2237.21', '1','1','87.85', '1','1','2149.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092626.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004363.0','1018874.0','3', '3','3','7195.74', '3','3','5047.3', '2','2','2148.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092627.0','1044441.0','1', '1','1','714.87', '1','0','0.0', '1','1','714.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004364.0','1018874.0','14', '10','4','1559.37', '9','1','449.0', '6','3','1110.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092628.0','1044441.0','1', '1','1','90.06', '1','1','90.06', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004365.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092629.0','1044441.0','1', '1','1','792.72', '1','1','792.72', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004366.0','1018874.0','1', '1','1','1544.1', '1','0','0.0', '1','1','1544.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092630.0','1044441.0','133', '128','111','248926.24', '124','77','99049.19', '96','80','149877.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002718.0','1018874.0','1', '1','1','201.27', '0','0','0.0', '1','1','201.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090982.0','1044441.0','1', '1','1','1309.15', '1','1','323.76', '1','1','985.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004367.0','1018874.0','2', '2','2','1123.86', '2','0','0.0', '2','2','1123.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092631.0','1044441.0','1', '1','1','1478.09', '1','0','0.0', '1','1','1478.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002831.0','1018874.0','1', '1','1','850.14', '1','0','0.0', '1','1','850.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091095.0','1044441.0','1', '1','1','997.69', '1','0','0.0', '1','1','997.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004368.0','1018874.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092632.0','1044441.0','1', '1','1','3055.49', '1','1','1275.0', '1','1','1780.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004369.0','1018874.0','1', '1','1','14979.52', '1','1','5027.21', '1','1','9952.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092633.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002617.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090881.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002796.0','1018874.0','1', '1','1','463.11', '1','0','0.0', '1','1','463.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091060.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004370.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092634.0','1044441.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004371.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092635.0','1044441.0','1', '1','1','3710.56', '0','0','0.0', '1','1','3710.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002373.0','1018874.0','1', '1','1','4142.55', '1','1','440.0', '1','1','3702.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090637.0','1044441.0','1', '1','1','5847.53', '1','0','0.0', '1','1','5847.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004372.0','1018874.0','1', '1','1','2213.06', '1','1','750.06', '1','1','1463.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092636.0','1044441.0','2427', '2360','1979','5141271.1', '2213','1368','1496638.99', '1961','1579','3644632.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002861.0','1018874.0','1', '1','1','1575.43', '1','0','0.0', '1','1','1575.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091125.0','1044441.0','1', '1','1','860.76', '1','1','860.76', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004373.0','1018874.0','1', '1','1','2446.21', '1','0','0.0', '1','1','2446.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092637.0','1044441.0','1', '1','1','3937.92', '1','1','2550.0', '1','1','1387.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004374.0','1018874.0','1', '1','1','5116.27', '1','1','2550.0', '1','1','2566.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092638.0','1044441.0','1', '1','1','4010.64', '1','1','974.76', '1','1','3035.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004375.0','1018874.0','1', '1','1','1979.45', '1','1','1056.82', '1','1','922.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092639.0','1044441.0','1', '1','1','4609.71', '1','1','413.04', '1','1','4196.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004376.0','1018874.0','1', '1','1','856.38', '1','1','856.38', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092640.0','1044441.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004377.0','1018874.0','1', '1','1','2147.71', '1','1','1162.32', '1','1','985.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092641.0','1044441.0','1', '1','1','595.49', '0','0','0.0', '1','1','595.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002371.0','1018874.0','1', '1','1','1398.68', '1','0','0.0', '1','1','1398.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090635.0','1044441.0','1', '1','1','4412.81', '1','1','744.0', '1','1','3668.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004378.0','1018874.0','1', '1','1','2192.96', '1','0','0.0', '1','1','2192.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092642.0','1044441.0','1', '1','1','4731.37', '1','1','1275.0', '1','1','3456.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004379.0','1018874.0','5', '5','5','6660.9', '5','3','1723.02', '4','4','4937.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092643.0','1044441.0','224', '213','165','514658.15', '195','94','147126.22', '162','135','367531.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002430.0','1018874.0','2', '2','2','6872.25', '2','2','1190.3', '2','2','5681.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090694.0','1044441.0','1', '1','1','6493.68', '1','1','1275.0', '1','1','5218.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002575.0','1018874.0','1', '1','1','1739.59', '1','1','1275.0', '1','1','464.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090839.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004380.0','1018874.0','1', '1','1','11274.82', '1','1','2813.0', '1','1','8461.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092644.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004381.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092645.0','1044441.0','1', '1','1','6832.47', '1','1','1275.0', '1','1','5557.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002457.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090721.0','1044441.0','1', '1','1','4375.2', '1','0','0.0', '1','1','4375.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004382.0','1018874.0','3', '3','2','1988.7', '3','1','140.59', '1','1','1848.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092646.0','1044441.0','2', '2','2','2286.93', '1','0','0.0', '2','2','2286.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004383.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092647.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002856.0','1018874.0','2', '2','2','2055.01', '2','1','1496.3', '1','1','558.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091120.0','1044441.0','1', '1','1','2314.52', '1','0','0.0', '1','1','2314.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002671.0','1018874.0','1', '1','1','2381.66', '1','1','1275.0', '1','1','1106.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090935.0','1044441.0','1555', '1511','1084','2117689.15', '1414','653','574553.01', '1143','837','1543136.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004384.0','1018874.0','3361', '3250','2677','7156233.71', '3008','1793','2748089.31', '2440','1991','4408144.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092648.0','1044441.0','4', '4','3','3773.45', '4','2','3058.58', '1','1','714.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004385.0','1018874.0','1', '1','1','1234.9', '1','1','877.46', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092649.0','1044441.0','3', '2','2','9229.0', '2','2','6891.0', '1','1','2338.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004386.0','1018874.0','1', '1','1','142.9', '1','1','142.9', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092650.0','1044441.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004387.0','1018874.0','1', '1','1','1408.0', '1','1','1408.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092651.0','1044441.0','2', '2','2','5709.13', '2','1','1275.0', '2','1','4434.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004388.0','1018874.0','6', '6','0','0.0', '4','0','0.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092652.0','1044441.0','1', '1','1','1656.26', '1','1','1656.26', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004389.0','1018874.0','1', '1','1','1695.94', '1','1','65.15', '1','1','1630.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092653.0','1044441.0','1', '1','1','521.81', '1','1','29.11', '1','1','492.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004390.0','1018874.0','1', '1','1','187.73', '1','1','187.73', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092654.0','1044441.0','4661', '4530','3728','8836148.62', '4207','2370','3206569.49', '3600','2949','5629579.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002713.0','1018874.0','1', '1','1','495.05', '1','0','0.0', '1','1','495.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090977.0','1044441.0','1', '1','1','6880.49', '1','1','5100.0', '1','1','1780.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004391.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092655.0','1044441.0','5', '4','3','7312.25', '3','1','1766.0', '2','2','5546.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002626.0','1018874.0','1', '1','1','3862.22', '1','1','3862.22', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090890.0','1044441.0','1', '1','1','3756.0', '1','1','3756.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004392.0','1018874.0','2879', '2762','2250','5248110.51', '2496','1270','1502508.73', '2131','1799','3745601.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092656.0','1044441.0','1', '1','1','3865.75', '1','1','1275.0', '1','1','2590.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004393.0','1018874.0','1', '1','1','1637.87', '1','1','660.0', '1','1','977.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092657.0','1044441.0','12', '12','12','29779.36', '10','3','8373.05', '12','11','21406.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002397.0','1018874.0','1', '1','1','1861.62', '1','1','1156.72', '1','1','704.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090661.0','1044441.0','1', '1','1','2655.4', '1','1','1275.0', '1','1','1380.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002915.0','1018874.0','3', '3','3','10172.07', '3','2','7281.0', '3','3','2891.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091179.0','1044441.0','1', '1','1','2260.39', '1','1','1275.0', '1','1','985.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002895.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091159.0','1044441.0','1', '1','1','895.05', '1','1','895.05', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002761.0','1018874.0','1', '1','1','1897.14', '1','0','0.0', '1','1','1897.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091025.0','1044441.0','1', '1','1','2033.93', '1','1','198.4', '1','1','1835.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002720.0','1018874.0','1', '1','1','9521.89', '1','1','1194.0', '1','1','8327.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090984.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004394.0','1018874.0','1', '1','1','4107.67', '1','1','1496.0', '1','1','2611.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092658.0','1044441.0','1', '1','1','1116.89', '1','0','0.0', '1','1','1116.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002406.0','1018874.0','1', '1','1','2705.51', '1','1','1275.0', '1','1','1430.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090670.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004395.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092659.0','1044441.0','2', '2','2','5818.55', '1','0','0.0', '2','2','5818.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004396.0','1018874.0','1', '1','1','1445.27', '1','1','459.88', '1','1','985.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092660.0','1044441.0','1', '1','1','1722.3', '1','1','197.0', '1','1','1525.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004397.0','1018874.0','1', '1','1','273.72', '1','0','0.0', '1','1','273.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092661.0','1044441.0','1', '1','1','2281.59', '1','1','1275.0', '1','1','1006.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004398.0','1018874.0','1', '1','1','558.71', '1','0','0.0', '1','1','558.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092662.0','1044441.0','1', '1','1','2248.95', '1','0','0.0', '1','1','2248.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004399.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092663.0','1044441.0','1794', '1725','1424','3349192.73', '1494','660','1083423.58', '1384','1197','2265769.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004400.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092664.0','1044441.0','4184', '4050','3466','9911947.46', '3686','2366','3077397.07', '3362','2878','6834550.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004401.0','1018874.0','1', '1','1','357.44', '1','0','0.0', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092665.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004402.0','1018874.0','1', '1','1','66.0', '1','1','66.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092666.0','1044441.0','1', '1','1','1725.6', '1','1','119.0', '1','1','1606.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002673.0','1018874.0','1', '1','1','5127.67', '1','1','3066.0', '1','1','2061.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090937.0','1044441.0','2', '2','1','1544.4', '2','1','1544.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004403.0','1018874.0','4543', '4436','3936','11758263.21', '4104','2557','3668524.6', '3548','3118','8089738.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092667.0','1044441.0','1933', '1880','1447','3591763.49', '1787','958','1034173.36', '1500','1136','2557590.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004404.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092668.0','1044441.0','2', '2','2','2854.42', '2','1','1275.0', '2','2','1579.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004405.0','1018874.0','1', '1','1','2170.56', '1','0','0.0', '1','1','2170.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092669.0','1044441.0','1', '1','1','4263.57', '1','1','2793.0', '1','1','1470.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002596.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090860.0','1044441.0','1', '1','1','5649.03', '1','1','2164.38', '1','1','3484.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004406.0','1018874.0','6', '4','3','4857.26', '4','2','1729.4', '3','2','3127.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092670.0','1044441.0','1', '1','1','2124.48', '0','0','0.0', '1','1','2124.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004407.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092671.0','1044441.0','1', '1','1','193.2', '1','1','193.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004408.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092672.0','1044441.0','1', '1','1','4400.5', '1','1','1271.05', '1','1','3129.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002632.0','1018874.0','2', '2','1','627.44', '2','1','270.0', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090896.0','1044441.0','4', '4','3','2550.33', '4','2','273.44', '4','3','2276.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002599.0','1018874.0','1', '1','1','3043.12', '1','0','0.0', '1','1','3043.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090863.0','1044441.0','1', '1','1','2728.83', '0','0','0.0', '1','1','2728.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002826.0','1018874.0','5', '5','4','5471.56', '4','2','2771.0', '3','3','2700.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091090.0','1044441.0','1', '1','1','6766.36', '1','0','0.0', '1','1','6766.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002376.0','1018874.0','1', '1','1','3980.51', '1','1','2992.76', '1','1','987.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090640.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002375.0','1018874.0','1', '1','1','2013.18', '1','0','0.0', '1','1','2013.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090639.0','1044441.0','3835', '3704','3113','7911553.35', '3327','1870','2475381.07', '2953','2473','5436172.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002726.0','1018874.0','1', '1','1','5596.86', '1','1','1275.0', '1','1','4321.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090990.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002595.0','1018874.0','1', '1','1','7940.52', '1','1','2550.0', '1','1','5390.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090859.0','1044441.0','84', '80','68','193465.98', '73','40','69059.46', '70','57','124406.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002479.0','1018874.0','2', '1','1','6878.49', '1','0','0.0', '1','1','6878.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090743.0','1044441.0','1', '1','1','1751.81', '1','0','0.0', '1','1','1751.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004409.0','1018874.0','400', '394','305','789958.03', '351','146','231167.01', '348','269','558791.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092673.0','1044441.0','1', '1','1','657.53', '1','1','657.53', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004410.0','1018874.0','1', '1','1','1970.78', '1','0','0.0', '1','1','1970.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092674.0','1044441.0','1', '1','1','7668.96', '1','1','2550.0', '1','1','5118.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004411.0','1018874.0','1', '1','1','2398.5', '1','1','596.06', '1','1','1802.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092675.0','1044441.0','1', '1','1','6618.0', '1','1','6618.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004412.0','1018874.0','1', '1','1','934.32', '1','1','934.32', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092676.0','1044441.0','1', '1','1','89.16', '1','1','89.16', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004413.0','1018874.0','1', '1','1','2285.8', '1','1','410.16', '1','1','1875.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092677.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004414.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092678.0','1044441.0','1', '1','1','6963.18', '1','1','1496.0', '1','1','5467.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004415.0','1018874.0','1', '1','1','410.73', '1','1','22.72', '1','1','388.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092679.0','1044441.0','2', '2','2','4611.99', '2','1','210.62', '2','2','4401.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002858.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091122.0','1044441.0','3', '3','3','13681.47', '3','3','3508.65', '2','2','10172.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004416.0','1018874.0','1', '1','1','201.27', '0','0','0.0', '1','1','201.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092680.0','1044441.0','1', '1','1','158.4', '1','1','158.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004417.0','1018874.0','1', '1','1','1767.7', '1','1','1275.0', '1','1','492.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092681.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004418.0','1018874.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092682.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004419.0','1018874.0','1', '1','1','3284.32', '1','1','1903.92', '1','1','1380.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092683.0','1044441.0','1', '1','1','1069.32', '0','0','0.0', '1','1','1069.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004420.0','1018874.0','3', '3','3','3108.12', '2','1','1275.0', '3','3','1833.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092684.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002548.0','1018874.0','1', '1','1','2025.39', '1','0','0.0', '1','1','2025.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090812.0','1044441.0','1', '1','1','4384.42', '1','1','1356.85', '1','1','3027.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002569.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090833.0','1044441.0','1', '1','1','4017.52', '1','0','0.0', '1','1','4017.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004421.0','1018874.0','1', '1','1','1686.87', '1','0','0.0', '1','1','1686.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092685.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002528.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090792.0','1044441.0','2', '2','1','10595.39', '2','1','2550.0', '1','1','8045.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004422.0','1018874.0','2', '1','1','3344.16', '1','0','0.0', '1','1','3344.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092686.0','1044441.0','1', '1','1','1973.85', '1','1','593.45', '1','1','1380.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002364.0','1018874.0','1', '1','1','4500.59', '1','1','1302.19', '1','1','3198.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090628.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002393.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090657.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004423.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092687.0','1044441.0','1', '1','1','1989.87', '1','1','1275.0', '1','1','714.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004424.0','1018874.0','1', '1','1','3675.0', '1','1','1275.0', '1','1','2400.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092688.0','1044441.0','1', '1','1','15301.94', '1','1','3750.88', '1','1','11551.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004425.0','1018874.0','1', '1','1','3090.13', '1','1','27.83', '1','1','3062.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092689.0','1044441.0','1', '1','1','759.02', '0','0','0.0', '1','1','759.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004426.0','1018874.0','2', '2','2','3194.5', '2','2','3194.5', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092690.0','1044441.0','3', '3','3','4391.87', '2','1','275.98', '3','2','4115.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004427.0','1018874.0','1', '1','1','1781.1', '1','1','237.0', '1','1','1544.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092691.0','1044441.0','1', '1','1','2041.14', '1','1','443.76', '1','1','1597.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004428.0','1018874.0','1', '1','1','1483.43', '1','0','0.0', '1','1','1483.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092692.0','1044441.0','1', '1','1','2867.27', '1','0','0.0', '1','1','2867.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004429.0','1018874.0','1', '1','1','3871.16', '1','1','1626.22', '1','1','2244.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092693.0','1044441.0','3', '3','3','21668.07', '3','3','4727.81', '2','2','16940.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004430.0','1018874.0','1', '1','1','2723.39', '0','0','0.0', '1','1','2723.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092694.0','1044441.0','1', '1','1','1478.09', '1','0','0.0', '1','1','1478.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002863.0','1018874.0','2', '2','2','7555.06', '2','2','1949.33', '2','2','5605.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091127.0','1044441.0','1', '1','1','558.71', '0','0','0.0', '1','1','558.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002597.0','1018874.0','3', '3','2','8605.48', '3','2','4341.0', '3','2','4264.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090861.0','1044441.0','3', '2','2','6138.92', '1','1','3519.0', '1','1','2619.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004431.0','1018874.0','1', '1','1','723.92', '1','1','234.98', '1','1','488.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092695.0','1044441.0','1', '1','1','1759.76', '0','0','0.0', '1','1','1759.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004432.0','1018874.0','1', '1','1','3609.92', '1','1','1275.0', '1','1','2334.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092696.0','1044441.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002716.0','1018874.0','3726', '3624','3157','6741831.56', '3267','2118','2588709.26', '2890','2308','4153122.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090980.0','1044441.0','1', '1','1','1174.83', '1','1','90.06', '1','1','1084.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002691.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090955.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002576.0','1018874.0','1', '1','1','1489.77', '0','0','0.0', '1','1','1489.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090840.0','1044441.0','1', '1','1','5385.96', '1','0','0.0', '1','1','5385.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002725.0','1018874.0','5', '5','5','10799.17', '4','4','888.35', '5','5','9910.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090989.0','1044441.0','1', '1','1','131.9', '1','1','131.9', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002568.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090832.0','1044441.0','2', '2','2','7202.48', '2','2','2550.0', '2','2','4652.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002549.0','1018874.0','1', '1','1','7645.39', '1','1','173.88', '1','1','7471.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090813.0','1044441.0','2', '2','2','3305.81', '2','1','530.0', '2','2','2775.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004433.0','1018874.0','1', '1','1','1935.24', '1','1','37.2', '1','1','1898.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092697.0','1044441.0','1', '1','1','394.06', '1','0','0.0', '1','1','394.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002456.0','1018874.0','1', '1','1','3351.91', '1','1','1275.0', '1','1','2076.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090720.0','1044441.0','1', '1','1','2053.14', '1','1','252.9', '1','1','1800.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004434.0','1018874.0','1', '1','1','778.6', '1','1','577.33', '1','1','201.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092698.0','1044441.0','2', '2','2','1863.06', '2','1','170.36', '1','1','1692.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004435.0','1018874.0','1', '1','1','3969.32', '1','0','0.0', '1','1','3969.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092699.0','1044441.0','1', '1','1','3102.12', '0','0','0.0', '1','1','3102.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004436.0','1018874.0','2', '2','1','2192.96', '2','0','0.0', '1','1','2192.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092700.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002854.0','1018874.0','2457', '2386','2199','5141025.49', '2188','1453','1664210.78', '1962','1823','3476814.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091118.0','1044441.0','3', '3','3','6065.02', '3','3','2994.2', '3','2','3070.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004437.0','1018874.0','1', '1','1','11994.76', '1','1','295.46', '1','1','11699.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092701.0','1044441.0','1', '1','1','847.99', '1','0','0.0', '1','1','847.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004438.0','1018874.0','1', '1','1','4161.5', '1','0','0.0', '1','1','4161.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092702.0','1044441.0','1', '1','1','3735.24', '1','1','1316.16', '1','1','2419.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002368.0','1018874.0','2', '2','2','9789.1', '2','2','5190.06', '2','2','4599.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090632.0','1044441.0','1', '1','1','1991.98', '1','0','0.0', '1','1','1991.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004439.0','1018874.0','2', '2','2','2732.52', '1','1','90.98', '2','2','2641.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092703.0','1044441.0','1', '1','1','289.98', '1','1','289.98', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004440.0','1018874.0','5', '5','5','6301.94', '5','3','2197.14', '4','3','4104.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092704.0','1044441.0','1', '1','1','2361.86', '1','1','1275.0', '1','1','1086.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004441.0','1018874.0','1', '1','1','7068.91', '1','1','2720.41', '1','1','4348.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092705.0','1044441.0','1', '1','1','852.48', '1','0','0.0', '1','1','852.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004442.0','1018874.0','1', '1','1','1963.26', '1','0','0.0', '1','1','1963.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092706.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004443.0','1018874.0','1', '1','1','1598.24', '1','1','336.13', '1','1','1262.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092707.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004444.0','1018874.0','1', '1','1','9266.54', '1','1','744.0', '1','1','8522.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092708.0','1044441.0','1', '1','1','70.2', '1','1','70.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002795.0','1018874.0','1', '1','1','3895.91', '0','0','0.0', '1','1','3895.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091059.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004445.0','1018874.0','1', '1','1','2622.1', '1','1','1012.0', '1','1','1610.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092709.0','1044441.0','1', '1','1','1923.21', '1','0','0.0', '1','1','1923.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002372.0','1018874.0','1', '1','1','5382.53', '1','1','3519.0', '1','1','1863.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090636.0','1044441.0','2', '2','2','7359.95', '2','2','3825.0', '2','2','3534.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004446.0','1018874.0','2', '2','2','12169.22', '2','1','604.0', '2','2','11565.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092710.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004447.0','1018874.0','1', '1','1','2722.33', '1','1','886.8', '1','1','1835.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092711.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004448.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092712.0','1044441.0','1', '1','1','2723.17', '1','1','1275.0', '1','1','1448.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004449.0','1018874.0','1', '1','1','2297.0', '1','1','2297.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092713.0','1044441.0','1', '1','1','2080.97', '1','0','0.0', '1','1','2080.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004450.0','1018874.0','499', '475','399','954471.88', '412','232','238691.19', '398','343','715780.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092714.0','1044441.0','1', '1','1','405.22', '1','0','0.0', '1','1','405.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004451.0','1018874.0','734', '699','594','1412018.44', '666','396','432139.28', '518','435','979879.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092715.0','1044441.0','1', '1','1','763.0', '1','1','763.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002370.0','1018874.0','1', '1','1','824.19', '1','1','380.76', '1','1','443.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090634.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002760.0','1018874.0','9', '9','6','7417.08', '6','3','1991.64', '7','4','5425.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091024.0','1044441.0','1', '1','1','1086.37', '1','1','437.65', '1','1','648.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002746.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091010.0','1044441.0','1', '1','1','2906.16', '0','0','0.0', '1','1','2906.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002823.0','1018874.0','1', '1','1','5392.18', '1','1','1922.0', '1','1','3470.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091087.0','1044441.0','9267', '9042','7720','20640228.25', '8395','4490','5364454.47', '7181','6311','15275773.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004452.0','1018874.0','4', '4','4','9659.51', '4','2','6069.0', '3','3','3590.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092716.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004453.0','1018874.0','1', '1','1','2212.82', '1','1','1275.0', '1','1','937.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092717.0','1044441.0','1', '1','1','231.0', '1','1','231.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004454.0','1018874.0','2', '1','1','1211.54', '1','0','0.0', '1','1','1211.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092718.0','1044441.0','1', '1','1','2922.22', '1','1','873.74', '1','1','2048.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004455.0','1018874.0','1', '1','1','1803.39', '0','0','0.0', '1','1','1803.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092719.0','1044441.0','1', '1','1','693.12', '1','1','693.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002424.0','1018874.0','1', '1','1','1706.95', '1','1','324.0', '1','1','1382.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090688.0','1044441.0','1', '1','1','263.0', '1','0','0.0', '1','1','263.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004456.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092720.0','1044441.0','1', '1','1','2445.77', '1','0','0.0', '1','1','2445.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002715.0','1018874.0','1', '1','1','856.11', '1','1','593.11', '1','1','263.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090979.0','1044441.0','1', '1','1','4374.5', '1','1','1275.0', '1','1','3099.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002396.0','1018874.0','7', '7','4','17418.55', '7','3','4296.9', '5','4','13121.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090660.0','1044441.0','2919', '2849','2562','10189134.75', '2681','1819','2369836.69', '2420','2188','7819298.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004457.0','1018874.0','1', '1','1','1037.16', '1','1','348.75', '1','1','688.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092721.0','1044441.0','1', '1','1','1915.69', '1','0','0.0', '1','1','1915.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004458.0','1018874.0','1', '1','1','2294.53', '1','1','609.53', '1','1','1685.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092722.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002628.0','1018874.0','1', '1','1','330.0', '1','1','330.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090892.0','1044441.0','1', '1','1','1430.51', '1','0','0.0', '1','1','1430.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004459.0','1018874.0','1', '1','1','980.01', '1','1','237.0', '1','1','743.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092723.0','1044441.0','1', '1','1','37.44', '1','1','37.44', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002446.0','1018874.0','1', '1','1','1844.4', '1','1','309.01', '1','1','1535.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090710.0','1044441.0','1', '1','1','890.25', '1','0','0.0', '1','1','890.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002477.0','1018874.0','1', '1','1','949.96', '1','0','0.0', '1','1','949.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090741.0','1044441.0','1', '1','1','1086.51', '1','1','45.9', '1','1','1040.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002506.0','1018874.0','1', '1','1','1069.32', '1','0','0.0', '1','1','1069.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090770.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004460.0','1018874.0','1', '1','1','690.21', '1','0','0.0', '1','1','690.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092724.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004461.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092725.0','1044441.0','1', '1','1','3457.05', '1','1','461.24', '1','1','2995.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004462.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092726.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004463.0','1018874.0','1', '1','1','4966.09', '1','1','1275.0', '1','1','3691.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092727.0','1044441.0','1', '1','1','1248.39', '1','0','0.0', '1','1','1248.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004464.0','1018874.0','1', '1','1','395.67', '1','1','173.2', '1','1','222.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092728.0','1044441.0','1', '1','1','5521.11', '1','1','3507.0', '1','1','2014.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004465.0','1018874.0','3', '3','3','5456.65', '3','1','37.32', '3','3','5419.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092729.0','1044441.0','1', '1','1','2986.6', '1','0','0.0', '1','1','2986.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004466.0','1018874.0','1', '1','1','1187.4', '1','1','249.58', '1','1','937.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092730.0','1044441.0','1', '1','1','2763.35', '1','0','0.0', '1','1','2763.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004467.0','1018874.0','10', '9','8','27003.94', '8','5','8819.63', '8','8','18184.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092731.0','1044441.0','1', '1','1','854.06', '1','1','854.06', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002743.0','1018874.0','1', '1','1','1746.35', '0','0','0.0', '1','1','1746.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091007.0','1044441.0','1', '1','1','503.03', '1','1','503.03', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004468.0','1018874.0','1', '1','1','2035.68', '1','0','0.0', '1','1','2035.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092732.0','1044441.0','1', '1','1','7936.08', '1','1','2648.99', '1','1','5287.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004469.0','1018874.0','2', '2','2','3543.3', '2','2','1630.02', '2','1','1913.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092733.0','1044441.0','1', '1','1','6360.95', '1','1','998.79', '1','1','5362.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004470.0','1018874.0','1', '1','1','714.87', '0','0','0.0', '1','1','714.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092734.0','1044441.0','1', '1','1','3000.41', '1','1','1442.15', '1','1','1558.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004471.0','1018874.0','2', '2','2','4119.25', '2','2','2550.0', '1','1','1569.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092735.0','1044441.0','2', '2','2','2515.64', '2','1','29.11', '2','2','2486.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002827.0','1018874.0','1', '1','1','357.44', '1','0','0.0', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091091.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004472.0','1018874.0','2', '2','2','4766.95', '2','2','1829.17', '2','2','2937.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092736.0','1044441.0','2', '2','2','2420.31', '2','1','632.36', '2','1','1787.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002608.0','1018874.0','1', '1','1','2871.08', '1','1','1275.0', '1','1','1596.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090872.0','1044441.0','2', '2','2','9516.97', '2','1','2550.0', '2','2','6966.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002643.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090907.0','1044441.0','5607', '5437','4627','11581376.9', '5070','3106','3755293.52', '4137','3541','7826083.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004473.0','1018874.0','1', '1','1','1404.1', '1','1','911.4', '1','1','492.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092737.0','1044441.0','1', '1','1','1396.93', '1','0','0.0', '1','1','1396.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002520.0','1018874.0','1', '1','1','1248.39', '1','0','0.0', '1','1','1248.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090784.0','1044441.0','4', '4','4','20344.15', '4','4','7279.39', '4','4','13064.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002730.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090994.0','1044441.0','1', '1','1','1020.87', '1','1','186.0', '1','1','834.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002697.0','1018874.0','1', '1','1','2771.44', '1','1','260.52', '1','1','2510.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090961.0','1044441.0','1', '1','1','4808.37', '1','1','2550.0', '1','1','2258.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004474.0','1018874.0','1', '1','1','3466.39', '1','1','2481.0', '1','1','985.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092738.0','1044441.0','1', '1','1','2965.49', '1','1','2965.49', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002771.0','1018874.0','1', '1','1','17851.91', '1','1','7344.0', '1','1','10507.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091035.0','1044441.0','4', '4','0','0.0', '4','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004475.0','1018874.0','1', '1','1','201.27', '1','0','0.0', '1','1','201.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092739.0','1044441.0','1', '1','1','1883.39', '1','1','898.0', '1','1','985.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004476.0','1018874.0','2', '2','2','7825.6', '2','2','4640.05', '1','1','3185.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092740.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004477.0','1018874.0','1', '1','1','8946.42', '1','1','5100.0', '1','1','3846.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092741.0','1044441.0','1', '1','1','3181.16', '1','1','2550.0', '1','1','631.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004478.0','1018874.0','1', '1','1','9775.89', '1','1','925.11', '1','1','8850.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092742.0','1044441.0','2', '2','1','3150.0', '2','1','1275.0', '1','1','1875.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004479.0','1018874.0','1', '1','1','201.27', '1','0','0.0', '1','1','201.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092743.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004480.0','1018874.0','121', '68','9','10311.71', '59','1','604.0', '40','8','9707.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092744.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004481.0','1018874.0','18', '18','11','23489.55', '17','5','2349.05', '16','11','21140.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092745.0','1044441.0','2', '2','2','4104.27', '2','1','1275.0', '2','2','2829.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004482.0','1018874.0','1', '1','1','1544.1', '1','0','0.0', '1','1','1544.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092746.0','1044441.0','2', '2','2','1437.67', '2','2','1437.67', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004483.0','1018874.0','1', '1','1','264.0', '1','1','264.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092747.0','1044441.0','2878', '2835','2369','6196102.07', '2579','1351','1284879.72', '2510','2091','4911222.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004484.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092748.0','1044441.0','1', '1','1','156.2', '1','1','156.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004485.0','1018874.0','1', '1','1','8956.88', '1','1','3176.31', '1','1','5780.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092749.0','1044441.0','1', '1','1','2008.27', '1','1','1449.56', '1','1','558.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004486.0','1018874.0','1', '1','1','492.7', '1','0','0.0', '1','1','492.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092750.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004487.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092751.0','1044441.0','1', '1','1','2415.9', '1','0','0.0', '1','1','2415.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004488.0','1018874.0','2', '2','2','3282.92', '2','0','0.0', '2','2','3282.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092752.0','1044441.0','1', '1','1','273.72', '1','0','0.0', '1','1','273.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002402.0','1018874.0','405', '383','293','465477.58', '338','175','151564.85', '315','241','313912.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090666.0','1044441.0','1', '1','1','2081.52', '1','0','0.0', '1','1','2081.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002600.0','1018874.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090864.0','1044441.0','2', '2','2','2612.05', '2','2','2119.35', '1','1','492.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002612.0','1018874.0','3740', '3614','3005','7963024.57', '3346','1793','2280792.75', '2829','2403','5682231.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090876.0','1044441.0','1', '1','1','342.17', '1','0','0.0', '1','1','342.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002403.0','1018874.0','1', '1','1','445.12', '1','0','0.0', '1','1','445.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090667.0','1044441.0','334', '318','267','643230.76', '275','131','181077.16', '270','224','462153.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002521.0','1018874.0','52', '47','30','81650.46', '42','18','26281.08', '30','24','55369.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090785.0','1044441.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002409.0','1018874.0','1', '1','1','5794.92', '1','1','2550.0', '1','1','3244.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090673.0','1044441.0','1758', '1687','1574','6803141.67', '1596','1195','1941745.96', '1358','1249','4861395.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002875.0','1018874.0','1', '1','1','1964.78', '1','1','1964.78', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091139.0','1044441.0','1', '1','1','2526.78', '1','1','288.72', '1','1','2238.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002927.0','1018874.0','1', '1','1','829.06', '1','1','829.06', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091191.0','1044441.0','1', '1','1','3002.73', '1','1','360.8', '1','1','2641.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004489.0','1018874.0','12', '12','12','33974.64', '11','8','12636.68', '10','10','21337.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092753.0','1044441.0','1', '1','1','1090.18', '1','1','732.74', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004490.0','1018874.0','1', '1','1','2808.66', '1','1','201.62', '1','1','2607.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092754.0','1044441.0','1', '1','1','5132.7', '1','1','324.0', '1','1','4808.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004491.0','1018874.0','2154', '2108','1709','2690925.27', '1963','1041','586537.06', '1837','1476','2104388.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092755.0','1044441.0','1', '1','1','2744.1', '1','0','0.0', '1','1','2744.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004492.0','1018874.0','1', '1','1','243.0', '1','1','243.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092756.0','1044441.0','1', '1','1','3666.91', '1','1','1755.9', '1','1','1911.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004493.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092757.0','1044441.0','2', '2','2','1624.74', '2','1','235.53', '2','2','1389.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004494.0','1018874.0','2', '2','2','6110.83', '2','1','877.07', '2','2','5233.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092758.0','1044441.0','2', '2','1','2302.83', '2','1','1275.0', '1','1','1027.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004495.0','1018874.0','1', '1','1','8685.46', '1','1','2080.11', '1','1','6605.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092759.0','1044441.0','1', '1','1','3261.62', '1','1','1275.0', '1','1','1986.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004496.0','1018874.0','1', '1','1','4114.25', '1','1','2072.4', '1','1','2041.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092760.0','1044441.0','937', '902','785','2031383.31', '767','430','539006.19', '784','690','1492377.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004497.0','1018874.0','2', '2','2','12300.73', '2','2','2940.79', '2','2','9359.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092761.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004498.0','1018874.0','1', '1','1','631.16', '1','0','0.0', '1','1','631.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092762.0','1044441.0','1', '1','1','4526.28', '1','1','1275.0', '1','1','3251.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004499.0','1018874.0','1', '1','1','1970.78', '1','0','0.0', '1','1','1970.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092763.0','1044441.0','1', '1','1','2565.62', '1','1','1275.0', '1','1','1290.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004500.0','1018874.0','1', '1','1','908.24', '1','1','575.47', '1','1','332.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092764.0','1044441.0','1', '1','1','201.27', '1','0','0.0', '1','1','201.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004501.0','1018874.0','6', '4','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092765.0','1044441.0','1', '1','1','632.49', '1','1','358.77', '1','1','273.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002872.0','1018874.0','1', '1','1','2266.24', '1','1','1012.0', '1','1','1254.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091136.0','1044441.0','4', '4','3','5300.68', '3','0','0.0', '4','3','5300.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002601.0','1018874.0','3', '3','3','3045.0', '3','1','519.06', '3','3','2525.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090865.0','1044441.0','1', '1','1','3519.59', '1','0','0.0', '1','1','3519.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002522.0','1018874.0','5153', '5044','4421','10378732.98', '4672','2705','3375474.97', '4423','3860','7003258.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090786.0','1044441.0','1', '1','1','440.0', '1','1','440.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002749.0','1018874.0','1', '1','1','1480.71', '1','1','1480.71', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091013.0','1044441.0','1', '1','1','137.61', '1','0','0.0', '1','1','137.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004502.0','1018874.0','1', '1','1','2573.28', '1','1','157.38', '1','1','2415.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092766.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002637.0','1018874.0','1', '1','1','4927.27', '1','1','1275.0', '1','1','3652.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090901.0','1044441.0','3', '3','3','15912.46', '3','3','3798.0', '3','3','12114.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004503.0','1018874.0','1726', '1641','1261','4348850.17', '1519','821','1311667.63', '1275','1003','3037182.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092767.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004504.0','1018874.0','1', '1','1','2463.26', '1','1','880.0', '1','1','1583.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092768.0','1044441.0','4', '4','4','9347.9', '3','1','2236.42', '4','4','7111.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002808.0','1018874.0','2', '2','2','4024.12', '2','2','2787.0', '1','1','1237.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091072.0','1044441.0','1', '1','1','839.16', '1','1','839.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004505.0','1018874.0','1', '1','1','357.44', '0','0','0.0', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092769.0','1044441.0','1', '1','1','66.0', '1','1','66.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004506.0','1018874.0','2', '2','1','9422.18', '1','0','0.0', '1','1','9422.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092770.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004507.0','1018874.0','4', '4','4','9791.3', '3','3','6544.72', '4','3','3246.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092771.0','1044441.0','1', '1','1','1392.7', '1','1','1392.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004508.0','1018874.0','5162', '5036','4019','9874928.54', '4632','2393','3344012.45', '3935','3183','6530916.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092772.0','1044441.0','4', '4','3','3941.73', '4','3','823.06', '1','1','3118.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004509.0','1018874.0','2', '2','2','1865.88', '2','1','213.83', '2','2','1652.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092773.0','1044441.0','2', '2','1','1718.12', '2','0','0.0', '1','1','1718.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004510.0','1018874.0','1', '1','1','201.27', '1','0','0.0', '1','1','201.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092774.0','1044441.0','1', '1','1','1632.44', '1','1','1275.0', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004511.0','1018874.0','1268', '1225','1022','2607445.61', '1129','648','831359.96', '984','824','1776085.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092775.0','1044441.0','1', '1','1','967.76', '1','1','565.23', '1','1','402.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004512.0','1018874.0','1', '1','1','6867.6', '1','0','0.0', '1','1','6867.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092776.0','1044441.0','3', '3','1','1478.09', '3','0','0.0', '2','1','1478.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004513.0','1018874.0','3', '3','2','7057.7', '3','2','3287.0', '3','2','3770.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092777.0','1044441.0','1', '1','1','2011.42', '1','1','580.91', '1','1','1430.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004514.0','1018874.0','3', '3','3','5157.27', '3','3','3679.18', '1','1','1478.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092778.0','1044441.0','1', '1','1','1033.9', '1','1','541.2', '1','1','492.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004515.0','1018874.0','1', '1','1','558.71', '1','0','0.0', '1','1','558.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092779.0','1044441.0','1', '1','1','11727.86', '1','1','3681.0', '1','1','8046.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004516.0','1018874.0','1', '1','1','1009.88', '1','1','667.71', '1','1','342.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092780.0','1044441.0','1', '1','1','402.53', '1','0','0.0', '1','1','402.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002813.0','1018874.0','1', '1','1','671.7', '1','1','179.0', '1','1','492.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091077.0','1044441.0','1', '1','1','357.44', '1','0','0.0', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004517.0','1018874.0','1', '1','1','2201.19', '1','1','420.7', '1','1','1780.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092781.0','1044441.0','1', '1','1','2162.42', '0','0','0.0', '1','1','2162.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004518.0','1018874.0','1', '1','1','8506.05', '1','0','0.0', '1','1','8506.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092782.0','1044441.0','1', '1','1','1628.03', '0','0','0.0', '1','1','1628.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004519.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092783.0','1044441.0','1', '1','1','11188.96', '1','1','5540.0', '1','1','5648.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002685.0','1018874.0','1', '1','1','2061.67', '1','0','0.0', '1','1','2061.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090949.0','1044441.0','2', '2','1','794.88', '1','1','794.88', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002918.0','1018874.0','2', '2','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091182.0','1044441.0','134', '130','117','284566.91', '122','70','67271.58', '118','101','217295.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004520.0','1018874.0','1', '1','1','2520.13', '0','0','0.0', '1','1','2520.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092784.0','1044441.0','1', '1','1','4493.39', '1','1','693.84', '1','1','3799.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002689.0','1018874.0','1', '1','1','985.39', '1','0','0.0', '1','1','985.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090953.0','1044441.0','1', '1','1','630.31', '1','0','0.0', '1','1','630.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004521.0','1018874.0','3', '3','2','1126.02', '3','1','92.4', '1','1','1033.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092785.0','1044441.0','27', '26','22','48737.53', '24','14','16501.96', '19','17','32235.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004522.0','1018874.0','632', '605','527','1645419.48', '524','248','341922.19', '534','466','1303497.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092786.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002806.0','1018874.0','1', '1','1','2324.94', '1','0','0.0', '1','1','2324.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091070.0','1044441.0','17', '7','3','8086.15', '6','2','3870.0', '4','3','4216.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004523.0','1018874.0','1900', '1840','1636','4827933.39', '1654','1008','1446284.83', '1452','1312','3381648.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092787.0','1044441.0','1', '1','1','492.7', '1','0','0.0', '1','1','492.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002650.0','1018874.0','2654', '2567','2234','4877054.44', '2212','1036','1234892.67', '2225','2003','3642161.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090914.0','1044441.0','3710', '3593','2788','7743413.09', '3232','1439','1628830.43', '2979','2419','6114582.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004524.0','1018874.0','1', '1','1','1810.13', '1','1','1275.0', '1','1','535.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092788.0','1044441.0','1', '1','1','495.05', '1','0','0.0', '1','1','495.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004525.0','1018874.0','1', '1','1','3392.26', '1','1','2356.12', '1','1','1036.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092789.0','1044441.0','1', '1','1','659.46', '1','1','659.46', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004526.0','1018874.0','2', '2','1','1840.57', '2','0','0.0', '1','1','1840.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092790.0','1044441.0','1', '1','1','5256.39', '1','1','1194.0', '1','1','4062.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004527.0','1018874.0','1', '1','1','7448.4', '1','1','1589.38', '1','1','5859.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092791.0','1044441.0','4459', '4335','3627','9465233.04', '3931','1885','1939172.93', '3595','3134','7526060.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004528.0','1018874.0','5898', '5738','4763','13770090.75', '5281','2803','3584190.38', '4648','3944','10185900.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092792.0','1044441.0','1', '1','1','4952.88', '1','1','3321.1', '1','1','1631.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004529.0','1018874.0','1', '1','1','3301.39', '1','0','0.0', '1','1','3301.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092793.0','1044441.0','1', '1','1','4408.48', '1','1','1396.16', '1','1','3012.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004530.0','1018874.0','2', '2','2','6621.7', '2','1','689.7', '2','1','5932.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092794.0','1044441.0','1', '1','1','988.69', '1','1','65.15', '1','1','923.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004531.0','1018874.0','1', '1','1','1006.63', '1','0','0.0', '1','1','1006.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092795.0','1044441.0','38', '35','28','59636.42', '30','13','11582.98', '28','22','48053.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004532.0','1018874.0','1', '1','1','511.47', '1','1','310.2', '1','1','201.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092796.0','1044441.0','1', '1','1','730.75', '1','0','0.0', '1','1','730.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004533.0','1018874.0','3', '3','3','16612.16', '3','2','2287.0', '3','3','14325.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092797.0','1044441.0','2', '2','2','4270.37', '2','0','0.0', '2','2','4270.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004534.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092798.0','1044441.0','1', '1','1','550.0', '0','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004535.0','1018874.0','2', '2','2','7247.77', '2','1','5093.76', '1','1','2154.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092799.0','1044441.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004536.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092800.0','1044441.0','1', '1','1','2114.33', '1','1','1038.9', '1','1','1075.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004537.0','1018874.0','1', '1','1','2676.97', '1','1','552.49', '1','1','2124.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092801.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004538.0','1018874.0','1', '1','1','3765.81', '1','0','0.0', '1','1','3765.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092802.0','1044441.0','892', '868','786','2124215.57', '770','461','541792.48', '774','705','1582423.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004539.0','1018874.0','1', '1','1','1430.51', '1','0','0.0', '1','1','1430.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092803.0','1044441.0','1', '1','1','992.02', '1','1','57.96', '1','1','934.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002410.0','1018874.0','2', '2','2','9558.47', '2','2','4470.6', '1','1','5087.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090674.0','1044441.0','2', '2','2','9924.01', '2','1','3456.0', '2','2','6468.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002647.0','1018874.0','1', '1','1','263.0', '1','0','0.0', '1','1','263.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090911.0','1044441.0','1', '1','1','1882.16', '1','1','219.02', '1','1','1663.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002731.0','1018874.0','7', '7','5','1566.24', '7','5','1566.24', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090995.0','1044441.0','3', '3','3','7429.25', '3','2','3622.94', '3','2','3806.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004540.0','1018874.0','1', '1','1','2930.89', '1','1','1194.0', '1','1','1736.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092804.0','1044441.0','1', '1','1','1690.96', '1','0','0.0', '1','1','1690.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004541.0','1018874.0','1', '1','1','1735.77', '1','1','21.84', '1','1','1713.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092805.0','1044441.0','1', '1','1','3045.0', '1','1','3045.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002754.0','1018874.0','1', '1','1','4933.52', '1','1','396.43', '1','1','4537.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091018.0','1044441.0','316', '307','227','573849.02', '279','145','212890.5', '228','175','360958.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004542.0','1018874.0','5548', '5406','4533','10820483.6', '5044','3231','4063283.6', '4323','3528','6757200.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092806.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004543.0','1018874.0','3', '3','2','2324.97', '3','1','66.64', '2','2','2258.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092807.0','1044441.0','10', '10','0','0.0', '10','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004544.0','1018874.0','1', '1','1','4537.45', '1','1','710.0', '1','1','3827.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092808.0','1044441.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004545.0','1018874.0','3', '3','2','4598.56', '3','1','586.52', '3','2','4012.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092809.0','1044441.0','262', '247','189','386576.87', '228','107','137326.09', '192','162','249250.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004546.0','1018874.0','1', '1','1','449.16', '1','1','449.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092810.0','1044441.0','1', '1','1','4485.34', '1','0','0.0', '1','1','4485.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004547.0','1018874.0','1', '1','1','10530.68', '1','1','5100.0', '1','1','5430.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092811.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002676.0','1018874.0','1', '1','1','2231.62', '1','1','90.06', '1','1','2141.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090940.0','1044441.0','295', '286','231','571700.05', '261','161','214794.39', '226','180','356905.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004548.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092812.0','1044441.0','1', '1','1','357.44', '1','0','0.0', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004549.0','1018874.0','1', '1','1','1295.26', '1','0','0.0', '1','1','1295.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092813.0','1044441.0','2', '2','1','2767.54', '2','1','1412.42', '2','1','1355.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004550.0','1018874.0','1', '1','1','3463.92', '1','1','1626.04', '1','1','1837.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092814.0','1044441.0','1', '1','1','2862.8', '1','1','2862.8', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004551.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092815.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004552.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092816.0','1044441.0','1', '1','1','110.94', '1','1','110.94', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004553.0','1018874.0','1', '1','1','1943.88', '1','1','750.06', '1','1','1193.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092817.0','1044441.0','2', '2','1','2145.97', '2','0','0.0', '1','1','2145.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004554.0','1018874.0','1', '1','1','818.46', '1','1','176.82', '1','1','641.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092818.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004555.0','1018874.0','1', '1','1','492.7', '1','0','0.0', '1','1','492.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092819.0','1044441.0','1', '1','1','520.53', '1','1','27.83', '1','1','492.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004556.0','1018874.0','1', '1','1','13873.84', '1','1','1275.0', '1','1','12598.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092820.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004557.0','1018874.0','2', '2','2','4118.81', '2','1','502.53', '2','2','3616.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092821.0','1044441.0','772', '758','687','1499467.07', '694','382','419475.89', '653','595','1079991.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004558.0','1018874.0','1', '1','1','954.21', '1','1','264.0', '1','1','690.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092822.0','1044441.0','1', '1','1','747.16', '1','1','747.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004559.0','1018874.0','1', '1','1','3855.4', '1','1','1275.0', '1','1','2580.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092823.0','1044441.0','1', '1','1','1295.26', '1','0','0.0', '1','1','1295.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002606.0','1018874.0','4', '4','2','558.71', '4','0','0.0', '3','2','558.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090870.0','1044441.0','1', '1','1','2478.51', '1','1','1437.9', '1','1','1040.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004560.0','1018874.0','1', '1','1','2788.05', '1','1','2550.0', '1','1','238.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092824.0','1044441.0','3', '3','3','2950.07', '3','1','157.38', '3','3','2792.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002728.0','1018874.0','1', '1','1','3536.0', '1','1','3536.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090992.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004561.0','1018874.0','1', '1','1','730.75', '1','0','0.0', '1','1','730.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092825.0','1044441.0','1', '1','1','357.44', '1','0','0.0', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002687.0','1018874.0','1', '1','1','4217.07', '1','1','2550.0', '1','1','1667.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090951.0','1044441.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002679.0','1018874.0','1', '1','1','3580.27', '1','0','0.0', '1','1','3580.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090943.0','1044441.0','1', '1','1','2212.82', '1','1','1275.0', '1','1','937.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004562.0','1018874.0','2', '2','1','5222.64', '2','1','578.12', '1','1','4644.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092826.0','1044441.0','1', '1','1','7122.53', '1','1','2550.0', '1','1','4572.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002770.0','1018874.0','1', '1','1','11970.32', '1','0','0.0', '1','1','11970.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091034.0','1044441.0','2', '2','2','4960.47', '2','1','11.88', '2','2','4948.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004563.0','1018874.0','2', '2','1','2651.39', '2','0','0.0', '2','1','2651.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092827.0','1044441.0','1', '1','1','5131.88', '1','1','1275.0', '1','1','3856.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002920.0','1018874.0','1', '1','1','4170.91', '1','1','1275.0', '1','1','2895.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091184.0','1044441.0','1', '1','1','4357.9', '1','0','0.0', '1','1','4357.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004564.0','1018874.0','1164', '1134','975','2832971.46', '1078','596','648347.73', '921','809','2184623.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092828.0','1044441.0','10', '10','8','24248.58', '9','4','4639.89', '8','7','19608.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004565.0','1018874.0','1', '1','1','937.82', '1','0','0.0', '1','1','937.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092829.0','1044441.0','1', '1','1','2498.77', '1','1','378.05', '1','1','2120.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004566.0','1018874.0','1', '1','1','2540.2', '1','1','846.38', '1','1','1693.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092830.0','1044441.0','1', '1','1','2419.4', '1','0','0.0', '1','1','2419.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004567.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092831.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004568.0','1018874.0','2', '2','2','2328.23', '2','0','0.0', '2','2','2328.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092832.0','1044441.0','1', '1','1','1382.95', '1','0','0.0', '1','1','1382.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004569.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092833.0','1044441.0','1', '1','1','1526.07', '1','1','429.94', '1','1','1096.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004570.0','1018874.0','1', '1','1','3588.68', '1','1','2494.1', '1','1','1094.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092834.0','1044441.0','3', '3','2','4016.08', '3','2','2397.96', '2','1','1618.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004571.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092835.0','1044441.0','1', '1','1','677.6', '1','1','446.72', '1','1','230.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004572.0','1018874.0','1', '1','1','4062.21', '1','1','2406.0', '1','1','1656.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092836.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004573.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092837.0','1044441.0','1', '1','1','6490.69', '1','0','0.0', '1','1','6490.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004574.0','1018874.0','1', '1','1','4379.37', '1','1','4379.37', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092838.0','1044441.0','1', '1','1','1380.4', '0','0','0.0', '1','1','1380.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004575.0','1018874.0','1', '1','1','885.97', '1','0','0.0', '1','1','885.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092839.0','1044441.0','1', '1','1','576.56', '1','1','66.21', '1','1','510.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004576.0','1018874.0','2', '2','2','811.76', '2','1','225.6', '1','1','586.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092840.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004577.0','1018874.0','1', '1','1','662.2', '1','1','169.5', '1','1','492.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092841.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004578.0','1018874.0','1', '1','1','357.44', '1','0','0.0', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092842.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004579.0','1018874.0','2', '2','2','1018.49', '2','2','946.0', '2','1','72.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092843.0','1044441.0','1', '1','1','357.44', '1','0','0.0', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004580.0','1018874.0','1', '1','1','7910.71', '1','1','604.0', '1','1','7306.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092844.0','1044441.0','5', '5','0','0.0', '4','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002722.0','1018874.0','1', '1','1','2608.49', '1','0','0.0', '1','1','2608.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090986.0','1044441.0','213', '205','150','388804.69', '194','69','73877.05', '167','137','314927.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002407.0','1018874.0','1', '1','1','1632.44', '1','1','1275.0', '1','1','357.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090671.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002729.0','1018874.0','2', '2','1','2332.6', '2','0','0.0', '2','1','2332.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090993.0','1044441.0','1', '1','1','1321.11', '1','1','62.0', '1','1','1259.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002837.0','1018874.0','6048', '5872','5233','15272557.08', '5441','3377','4203717.65', '4961','4329','11068839.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091101.0','1044441.0','2', '2','2','2450.87', '2','1','1275.0', '2','2','1175.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002651.0','1018874.0','1', '1','1','2968.51', '1','1','1275.0', '1','1','1693.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090915.0','1044441.0','1', '1','1','297.6', '1','1','297.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002699.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090963.0','1044441.0','1', '1','1','1837.59', '1','0','0.0', '1','1','1837.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004581.0','1018874.0','14', '14','11','24235.36', '12','7','8042.2', '11','10','16193.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092845.0','1044441.0','2435', '2385','2068','4435845.77', '2222','1327','1239325.77', '2045','1668','3196520.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004582.0','1018874.0','1', '1','1','2414.0', '1','1','1330.45', '1','1','1083.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092846.0','1044441.0','1', '1','1','4250.21', '0','0','0.0', '1','1','4250.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004583.0','1018874.0','3227', '3157','2606','4641669.74', '2994','1779','1715332.21', '2388','1936','2926337.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092847.0','1044441.0','1', '1','1','2040.64', '1','1','120.87', '1','1','1919.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004584.0','1018874.0','827', '801','692','1058852.67', '718','404','292006.4', '656','559','766846.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092848.0','1044441.0','2', '2','2','3505.7', '2','2','3505.7', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004585.0','1018874.0','1', '1','1','2013.71', '1','0','0.0', '1','1','2013.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092849.0','1044441.0','401', '389','281','645220.03', '367','158','136638.26', '303','231','508581.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004586.0','1018874.0','1', '1','1','6653.94', '1','1','682.95', '1','1','5970.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092850.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004587.0','1018874.0','8', '8','6','15261.96', '8','4','5814.4', '8','4','9447.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092851.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004588.0','1018874.0','1', '1','1','1497.52', '1','1','1497.52', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092852.0','1044441.0','1', '1','1','1833.69', '1','1','446.4', '1','1','1387.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004589.0','1018874.0','1', '1','1','5523.09', '1','1','1733.8', '1','1','3789.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092853.0','1044441.0','1', '1','1','5403.9', '1','0','0.0', '1','1','5403.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004590.0','1018874.0','1', '1','1','4133.49', '1','1','1275.0', '1','1','2858.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092854.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004591.0','1018874.0','1', '1','1','5543.91', '1','1','1012.0', '1','1','4531.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092855.0','1044441.0','1', '1','1','2486.42', '1','1','2486.42', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004592.0','1018874.0','517', '501','414','750933.09', '476','295','307750.66', '367','299','443182.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092856.0','1044441.0','2', '2','2','4541.22', '2','1','1012.0', '2','2','3529.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004593.0','1018874.0','3', '3','2','2286.96', '3','0','0.0', '3','2','2286.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092857.0','1044441.0','1', '1','1','2876.08', '1','1','540.96', '1','1','2335.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004594.0','1018874.0','1', '1','1','4352.42', '1','1','2098.14', '1','1','2254.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092858.0','1044441.0','1', '1','1','333.09', '1','0','0.0', '1','1','333.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004595.0','1018874.0','1', '1','1','1430.51', '1','0','0.0', '1','1','1430.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092859.0','1044441.0','1', '1','1','4510.8', '1','0','0.0', '1','1','4510.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004596.0','1018874.0','1', '1','1','7040.24', '1','1','549.08', '1','1','6491.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092860.0','1044441.0','1', '1','1','237.0', '1','1','237.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004597.0','1018874.0','2', '2','2','5218.3', '2','2','2550.0', '1','1','2668.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092861.0','1044441.0','3', '3','2','1244.89', '3','1','37.32', '2','1','1207.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004598.0','1018874.0','1', '1','1','3355.09', '1','0','0.0', '1','1','3355.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092862.0','1044441.0','11', '11','9','45511.54', '10','5','9428.62', '7','7','36082.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004599.0','1018874.0','1', '1','1','4803.75', '1','1','2447.44', '1','1','2356.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092863.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004600.0','1018874.0','1923', '1860','1476','3874765.16', '1725','966','1396657.96', '1456','1195','2478107.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092864.0','1044441.0','909', '882','683','2550301.01', '839','428','721843.56', '753','595','1828457.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004601.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092865.0','1044441.0','1', '1','1','1825.82', '1','1','888.0', '1','1','937.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002824.0','1018874.0','1', '1','1','2610.15', '1','1','89.28', '1','1','2520.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091088.0','1044441.0','1', '1','1','31.79', '1','1','31.79', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004602.0','1018874.0','3604', '3523','3057','7829357.52', '3224','2117','2703857.16', '2871','2474','5125500.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092866.0','1044441.0','3', '3','3','2212.56', '3','3','679.25', '3','1','1533.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002838.0','1018874.0','5', '5','0','0.0', '5','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091102.0','1044441.0','176', '116','71','219004.4', '111','70','180820.73', '42','13','38183.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004603.0','1018874.0','79', '55','31','64506.88', '51','26','52639.14', '27','13','11867.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092867.0','1044441.0','6', '6','2','2097.25', '6','2','2097.25', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002634.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090898.0','1044441.0','8200', '7993','6832','22318326.17', '7536','4425','6137265.99', '6490','5651','16181060.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002434.0','1018874.0','1', '1','1','515.94', '1','1','515.94', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090698.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002805.0','1018874.0','2', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091069.0','1044441.0','3', '3','1','225.9', '3','0','0.0', '2','1','225.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004604.0','1018874.0','5', '4','2','2553.69', '4','2','2327.79', '2','1','225.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092868.0','1044441.0','121', '84','43','123154.13', '79','41','93357.3', '41','15','29796.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004605.0','1018874.0','4', '3','3','4826.92', '3','3','4826.92', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092869.0','1044441.0','2', '2','2','1868.5', '2','2','1868.5', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002412.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090676.0','1044441.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004606.0','1018874.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092870.0','1044441.0','4', '4','2','8790.41', '4','2','7650.0', '2','1','1140.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004607.0','1018874.0','35', '19','16','88913.67', '18','16','55074.86', '14','6','33838.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092871.0','1044441.0','1', '1','1','1901.6', '1','1','1901.6', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004608.0','1018874.0','53', '43','37','104917.56', '43','33','88643.6', '21','10','16273.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092872.0','1044441.0','5', '5','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004609.0','1018874.0','36', '25','19','49790.67', '25','17','31249.33', '8','5','18541.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092873.0','1044441.0','457', '363','279','1010615.84', '354','267','814523.37', '158','100','196092.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004610.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092874.0','1044441.0','3', '3','1','6873.69', '3','1','2492.0', '2','1','4381.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004611.0','1018874.0','2', '2','2','7786.87', '2','2','2454.37', '2','2','5332.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092875.0','1044441.0','7', '5','2','9360.9', '5','2','9135.0', '2','1','225.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002400.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090664.0','1044441.0','29', '20','14','41037.22', '19','14','26617.82', '12','5','14419.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004612.0','1018874.0','9', '8','4','8352.38', '7','4','7443.75', '5','1','908.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092876.0','1044441.0','304', '205','128','388916.56', '177','112','244634.09', '129','53','144282.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002807.0','1018874.0','2', '2','2','11500.0', '2','2','11500.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091071.0','1044441.0','1', '1','1','503.88', '1','1','503.88', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004613.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092877.0','1044441.0','85', '75','43','108742.58', '72','42','80568.43', '27','10','28174.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002753.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091017.0','1044441.0','1', '1','1','3751.82', '1','1','2694.0', '1','1','1057.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004614.0','1018874.0','96', '75','57','225001.95', '75','55','169966.17', '34','18','55035.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092878.0','1044441.0','1', '1','1','2863.82', '1','1','2863.82', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002616.0','1018874.0','5', '5','1','815.12', '5','1','815.12', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090880.0','1044441.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004615.0','1018874.0','1', '1','1','2021.2', '1','0','0.0', '1','1','2021.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092879.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004616.0','1018874.0','1', '1','1','1887.48', '1','1','1275.0', '1','1','612.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092880.0','1044441.0','2', '2','1','3451.14', '2','1','3451.14', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002864.0','1018874.0','15', '14','6','26423.87', '14','5','12889.51', '5','3','13534.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091128.0','1044441.0','17', '14','13','30990.69', '13','11','29014.72', '8','4','1975.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004617.0','1018874.0','6', '6','2','1236.15', '5','1','446.0', '3','1','790.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092881.0','1044441.0','2', '2','1','624.0', '2','1','624.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004618.0','1018874.0','9', '7','6','17424.84', '7','6','17071.11', '5','1','353.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092882.0','1044441.0','4', '4','4','16593.46', '4','4','16070.18', '2','1','523.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002692.0','1018874.0','13', '10','6','9385.13', '8','4','8602.51', '7','3','782.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090956.0','1044441.0','1', '1','1','492.7', '1','0','0.0', '1','1','492.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004619.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092883.0','1044441.0','1', '1','1','344.69', '1','1','344.69', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004620.0','1018874.0','7', '6','2','9628.94', '6','2','9628.94', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092884.0','1044441.0','15', '14','9','25271.16', '13','8','23558.36', '6','3','1712.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004621.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092885.0','1044441.0','1', '1','1','3629.92', '1','1','495.44', '1','1','3134.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004622.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092886.0','1044441.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002868.0','1018874.0','2', '2','1','1825.0', '2','1','1275.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091132.0','1044441.0','7', '5','4','7251.12', '5','4','7235.02', '2','1','16.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004623.0','1018874.0','2', '2','1','1275.0', '2','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092887.0','1044441.0','13', '5','2','3288.0', '5','2','3288.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004624.0','1018874.0','373', '304','222','765359.46', '292','216','562591.92', '139','49','202767.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092888.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004625.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092889.0','1044441.0','3', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004626.0','1018874.0','3', '3','2','7670.57', '3','1','3425.63', '2','2','4244.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092890.0','1044441.0','4', '3','2','3031.21', '3','2','2241.06', '2','1','790.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004627.0','1018874.0','1', '1','1','652.8', '1','1','652.8', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092891.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004628.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092892.0','1044441.0','2', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004629.0','1018874.0','1', '1','1','392.0', '1','1','392.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092893.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004630.0','1018874.0','1', '1','1','64.56', '1','1','64.56', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092894.0','1044441.0','80', '50','30','91937.75', '49','29','89870.21', '18','3','2067.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004631.0','1018874.0','99', '73','40','61018.95', '66','35','49412.6', '42','12','11606.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092895.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004632.0','1018874.0','1', '1','1','345.89', '1','1','345.89', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092896.0','1044441.0','1', '1','1','1116.89', '0','0','0.0', '1','1','1116.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004633.0','1018874.0','4', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092897.0','1044441.0','3', '2','2','6281.22', '2','2','3963.63', '2','2','2317.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002793.0','1018874.0','76', '65','39','90359.31', '61','33','63827.54', '34','13','26531.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091057.0','1044441.0','27', '22','16','59199.61', '22','16','42228.71', '6','4','16970.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004634.0','1018874.0','1', '1','1','1396.72', '1','0','0.0', '1','1','1396.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092898.0','1044441.0','8', '6','3','2739.42', '6','3','2739.42', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002755.0','1018874.0','2', '1','1','9128.78', '1','1','2435.0', '1','1','6693.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091019.0','1044441.0','52', '41','28','107307.85', '38','26','85510.16', '17','9','21797.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004635.0','1018874.0','1', '1','1','315.9', '1','1','315.9', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092899.0','1044441.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002677.0','1018874.0','2', '2','2','3703.56', '2','1','440.0', '2','2','3263.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090941.0','1044441.0','1', '1','1','2125.12', '1','1','330.0', '1','1','1795.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002797.0','1018874.0','182', '149','113','387077.44', '144','110','341227.64', '53','19','45849.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091061.0','1044441.0','3', '3','1','416.13', '3','1','416.13', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004636.0','1018874.0','5', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092900.0','1044441.0','175', '151','96','254901.56', '145','90','195006.01', '71','25','59895.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002693.0','1018874.0','2', '2','1','5100.0', '2','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090957.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004637.0','1018874.0','3', '3','0','0.0', '3','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092901.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002905.0','1018874.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091169.0','1044441.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004638.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092902.0','1044441.0','50', '34','13','31373.26', '32','12','26350.85', '11','2','5022.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002476.0','1018874.0','3', '3','1','1275.0', '3','1','1275.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090740.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004639.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092903.0','1044441.0','101', '82','59','226226.58', '79','53','121425.88', '41','29','104800.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004640.0','1018874.0','24', '22','4','3048.0', '21','4','3048.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092904.0','1044441.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004641.0','1018874.0','5', '4','2','2768.26', '3','2','1752.21', '4','1','1016.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092905.0','1044441.0','33', '27','18','69535.9', '27','18','68429.12', '7','2','1106.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004642.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092906.0','1044441.0','1', '1','1','360.35', '1','1','360.35', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004643.0','1018874.0','1', '1','1','1610.02', '1','1','1610.02', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092907.0','1044441.0','7', '4','4','11581.37', '4','4','10449.01', '2','2','1132.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004644.0','1018874.0','4', '3','3','7368.53', '3','2','5990.98', '3','1','1377.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092908.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004645.0','1018874.0','9', '6','3','4251.84', '6','3','4251.84', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092909.0','1044441.0','1', '1','1','1514.0', '1','1','1514.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004646.0','1018874.0','62', '44','29','89717.97', '41','27','47383.24', '24','13','42334.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092910.0','1044441.0','1', '1','1','1220.37', '1','1','43.99', '1','1','1176.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004647.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092911.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004648.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092912.0','1044441.0','25', '24','17','55795.29', '22','16','43927.78', '10','4','11867.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004649.0','1018874.0','5', '3','3','4387.65', '3','3','4387.65', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092913.0','1044441.0','95', '83','56','186902.73', '81','51','178480.83', '30','10','8421.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004650.0','1018874.0','1', '1','1','615.47', '1','0','0.0', '1','1','615.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092914.0','1044441.0','21', '16','13','27004.88', '16','13','25105.86', '6','3','1899.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004651.0','1018874.0','7', '6','1','1275.0', '6','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092915.0','1044441.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004652.0','1018874.0','4', '2','1','7500.0', '0','0','0.0', '2','1','7500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092916.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004653.0','1018874.0','16', '13','11','59554.54', '13','9','38401.02', '9','6','21153.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092917.0','1044441.0','26', '20','15','26824.63', '18','14','23301.5', '13','7','3523.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004654.0','1018874.0','39', '31','18','47236.07', '29','15','35335.26', '15','6','11900.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092918.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004655.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092919.0','1044441.0','106', '75','57','200941.45', '70','52','161738.39', '42','24','39203.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004656.0','1018874.0','2', '1','1','19769.73', '1','1','11134.0', '1','1','8635.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092920.0','1044441.0','2', '2','2','2811.71', '2','2','2811.71', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004657.0','1018874.0','1', '1','1','620.24', '1','1','620.24', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092921.0','1044441.0','90', '66','48','139301.4', '62','48','138152.69', '17','3','1148.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004658.0','1018874.0','2', '2','1','470.34', '2','1','470.34', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092922.0','1044441.0','9', '7','2','7153.0', '6','2','7153.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004659.0','1018874.0','17', '17','15','15133.6', '17','11','13263.88', '9','5','1869.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092923.0','1044441.0','11', '10','7','20083.0', '10','7','20083.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004660.0','1018874.0','5', '5','4','12545.0', '5','4','9883.0', '3','1','2662.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092924.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004661.0','1018874.0','20', '20','9','14222.0', '20','9','13722.0', '8','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092925.0','1044441.0','9', '8','5','16493.36', '8','5','16493.36', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004662.0','1018874.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092926.0','1044441.0','39', '29','12','58802.03', '28','11','32699.92', '14','7','26102.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004663.0','1018874.0','11', '7','5','17562.1', '7','5','17401.1', '2','1','161.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092927.0','1044441.0','2', '2','2','1168.0', '0','0','0.0', '2','2','1168.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002769.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091033.0','1044441.0','1', '1','1','639.76', '1','1','639.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004664.0','1018874.0','58', '33','20','59003.13', '28','20','57998.61', '12','1','1004.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092928.0','1044441.0','5', '5','5','3772.71', '5','5','3772.71', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004665.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092929.0','1044441.0','8', '4','1','5100.0', '3','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004666.0','1018874.0','2', '1','1','17191.82', '1','1','7732.0', '1','1','9459.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092930.0','1044441.0','13', '11','8','30794.74', '11','8','30336.22', '6','2','458.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002401.0','1018874.0','9', '8','4','9743.91', '8','3','9295.09', '5','2','448.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090665.0','1044441.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004667.0','1018874.0','2', '2','1','1620.0', '2','1','1620.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092931.0','1044441.0','1', '1','1','4906.01', '1','1','4906.01', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002768.0','1018874.0','1', '1','1','881.99', '1','1','881.99', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091032.0','1044441.0','4', '4','4','12812.14', '4','4','9022.33', '3','1','3789.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004668.0','1018874.0','3', '3','2','1434.32', '3','2','1434.32', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092932.0','1044441.0','4', '4','2','3038.44', '4','2','3038.44', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004669.0','1018874.0','124', '108','69','158531.64', '106','58','123169.76', '49','31','35361.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092933.0','1044441.0','1', '1','1','5100.0', '1','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004483.0','1018874.0','1', '1','1','618.0', '1','0','0.0', '1','1','618.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092747.0','1044441.0','10', '8','4','11963.2', '7','2','1206.22', '2','2','10756.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002907.0','1018874.0','9', '8','7','22076.68', '8','7','20335.76', '6','3','1740.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091171.0','1044441.0','5', '4','3','1405.37', '4','1','468.16', '2','2','937.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004670.0','1018874.0','139', '107','74','203496.98', '103','70','194885.82', '34','12','8611.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092934.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004671.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092935.0','1044441.0','15', '13','11','24708.63', '13','10','24470.47', '6','2','238.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004672.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092936.0','1044441.0','4', '3','1','5890.15', '3','1','5100.0', '1','1','790.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004673.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092937.0','1044441.0','127', '94','67','174711.56', '93','62','129183.13', '38','20','45528.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004674.0','1018874.0','2', '1','1','908.44', '1','1','908.44', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092938.0','1044441.0','69', '47','28','78831.13', '44','27','64457.77', '8','2','14373.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004675.0','1018874.0','1', '1','1','563.29', '1','0','0.0', '1','1','563.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092939.0','1044441.0','6', '6','2','8091.21', '6','2','5564.59', '3','2','2526.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004676.0','1018874.0','5', '5','4','4115.39', '5','3','3547.49', '4','2','567.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092940.0','1044441.0','19', '15','6','17855.43', '15','6','16999.38', '4','1','856.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004677.0','1018874.0','5', '5','3','1674.28', '5','3','1674.28', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092941.0','1044441.0','13', '13','10','19346.79', '13','9','15365.75', '6','4','3981.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004678.0','1018874.0','8', '7','3','7514.3', '7','3','7395.22', '2','1','119.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092942.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004679.0','1018874.0','3', '1','1','3688.0', '1','1','3688.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092943.0','1044441.0','140', '105','79','282553.91', '101','77','256115.26', '39','12','26438.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004680.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092944.0','1044441.0','2', '2','2','7300.12', '2','2','7300.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004681.0','1018874.0','13', '9','5','9104.51', '9','5','8890.14', '3','1','214.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092945.0','1044441.0','7', '7','5','15099.74', '7','5','14596.3', '3','2','503.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002744.0','1018874.0','1', '1','1','559.68', '1','1','559.68', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091008.0','1044441.0','22', '17','15','52441.86', '16','15','51577.03', '7','4','864.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004682.0','1018874.0','24', '19','13','31279.04', '18','12','28700.1', '11','4','2578.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092946.0','1044441.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004683.0','1018874.0','11', '9','4','4337.8', '9','4','4113.39', '2','1','224.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092947.0','1044441.0','18', '18','12','51240.32', '16','12','36016.81', '16','11','15223.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002897.0','1018874.0','24', '20','14','37031.53', '19','13','36120.14', '9','3','911.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091161.0','1044441.0','3', '3','2','7713.3', '3','2','7713.3', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002405.0','1018874.0','11', '7','4','16976.88', '7','4','8096.6', '4','2','8880.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090669.0','1044441.0','1', '1','1','1400.85', '1','1','1400.85', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002845.0','1018874.0','10', '4','2','15356.89', '3','1','1396.0', '3','2','13960.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091109.0','1044441.0','24', '16','13','59657.3', '14','13','44458.52', '9','3','15198.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002411.0','1018874.0','14', '11','7','32430.33', '11','6','14699.37', '8','5','17730.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090675.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004684.0','1018874.0','20', '16','12','30475.71', '16','11','22334.68', '8','5','8141.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092948.0','1044441.0','22', '17','13','26651.71', '15','13','26651.71', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004685.0','1018874.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092949.0','1044441.0','3', '3','3','7874.41', '3','3','7650.0', '2','1','224.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004686.0','1018874.0','1', '1','1','955.66', '1','1','955.66', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092950.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004687.0','1018874.0','27', '25','15','74634.87', '25','13','40892.16', '9','6','33742.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092951.0','1044441.0','2', '2','1','2550.0', '2','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004688.0','1018874.0','33', '25','15','42166.76', '23','14','26025.55', '11','3','16141.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092952.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004689.0','1018874.0','6', '5','0','0.0', '5','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092953.0','1044441.0','1', '1','1','588.68', '1','1','374.31', '1','1','214.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004690.0','1018874.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092954.0','1044441.0','40', '32','20','49712.65', '32','16','36673.36', '14','6','13039.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004691.0','1018874.0','23', '21','13','55419.43', '18','13','35787.16', '11','4','19632.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092955.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004692.0','1018874.0','1', '1','1','4746.44', '1','1','4746.44', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092956.0','1044441.0','4', '4','4','33684.98', '4','4','16572.36', '4','3','17112.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004693.0','1018874.0','6', '4','3','15474.45', '4','3','15474.45', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092957.0','1044441.0','4', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004694.0','1018874.0','12', '10','6','21466.14', '10','6','18216.41', '6','4','3249.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092958.0','1044441.0','8', '5','2','4417.33', '4','2','4417.33', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004695.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092959.0','1044441.0','17', '12','6','13601.36', '12','6','13056.38', '7','2','544.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004696.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092960.0','1044441.0','15', '12','7','7644.96', '12','7','7644.96', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004697.0','1018874.0','5', '3','3','11279.38', '3','3','11231.08', '1','1','48.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092961.0','1044441.0','1', '1','1','2129.52', '1','1','2129.52', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004698.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092962.0','1044441.0','50', '48','19','33178.55', '46','15','26911.5', '20','5','6267.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004699.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092963.0','1044441.0','8', '8','5','10444.1', '8','3','10205.94', '5','2','238.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004700.0','1018874.0','4', '4','1','1512.0', '4','1','1512.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092964.0','1044441.0','15', '15','7','32112.5', '15','5','8876.0', '6','4','23236.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004701.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092965.0','1044441.0','14', '13','9','31377.78', '13','7','29166.12', '7','3','2211.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004702.0','1018874.0','27', '25','11','23073.94', '23','11','20397.01', '9','2','2676.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092966.0','1044441.0','25', '21','9','30619.65', '20','7','22828.48', '11','4','7791.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004703.0','1018874.0','2', '2','1','5100.0', '2','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092967.0','1044441.0','27', '26','18','42147.18', '26','17','40756.8', '12','3','1390.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004704.0','1018874.0','83', '60','42','145555.51', '58','38','70876.12', '39','17','74679.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092968.0','1044441.0','700', '574','439','1960370.15', '561','420','1312599.93', '281','161','647770.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004705.0','1018874.0','1', '1','1','1978.0', '1','1','1978.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092969.0','1044441.0','2', '2','1','6180.0', '2','1','6180.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004706.0','1018874.0','3', '3','1','864.6', '3','1','864.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092970.0','1044441.0','392', '293','207','812731.1', '271','193','527958.35', '153','66','284772.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004707.0','1018874.0','4', '2','1','1424.28', '1','1','1424.28', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092971.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004708.0','1018874.0','1', '1','1','526.56', '1','1','526.56', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092972.0','1044441.0','5', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004709.0','1018874.0','11', '8','5','17087.72', '8','5','16129.65', '4','3','958.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092973.0','1044441.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004710.0','1018874.0','73', '57','43','114515.34', '56','42','113173.19', '21','8','1342.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092974.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004711.0','1018874.0','3', '3','3','3703.49', '3','2','3360.0', '2','1','343.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092975.0','1044441.0','9', '8','4','3464.99', '8','4','3464.99', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004712.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092976.0','1044441.0','9', '6','3','6553.59', '6','3','6211.38', '2','1','342.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004713.0','1018874.0','1', '1','1','2430.0', '1','1','2430.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092977.0','1044441.0','23', '18','7','17512.26', '18','7','15921.89', '5','2','1590.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004714.0','1018874.0','3', '2','1','301.6', '2','1','301.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092978.0','1044441.0','9', '8','4','5091.43', '7','2','3874.78', '3','2','1216.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004715.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092979.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004716.0','1018874.0','20', '20','13','55986.26', '20','13','55537.44', '7','2','448.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092980.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004717.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092981.0','1044441.0','3', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004718.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092982.0','1044441.0','13', '12','7','17766.55', '11','7','9910.34', '6','3','7856.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004719.0','1018874.0','2', '2','1','2895.52', '1','1','2895.52', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092983.0','1044441.0','3', '2','1','1115.68', '2','1','1115.68', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004720.0','1018874.0','45', '37','25','65686.51', '36','23','59768.78', '15','6','5917.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092984.0','1044441.0','1', '1','1','2911.39', '1','1','2550.0', '1','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004721.0','1018874.0','3', '3','3','10608.82', '3','3','10384.41', '1','1','224.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092985.0','1044441.0','8', '6','2','2673.33', '6','1','859.53', '1','1','1813.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004722.0','1018874.0','14', '10','6','39204.6', '10','6','23726.27', '7','4','15478.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092986.0','1044441.0','331', '247','198','531599.32', '244','194','482064.51', '84','40','49534.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004723.0','1018874.0','3', '2','2','5319.24', '2','2','5176.79', '2','1','142.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092987.0','1044441.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004724.0','1018874.0','143', '132','106','533313.04', '128','99','255622.36', '75','38','277690.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092988.0','1044441.0','15', '14','3','3166.75', '13','1','143.0', '6','2','3023.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004725.0','1018874.0','9', '6','5','17255.82', '6','5','17255.82', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092989.0','1044441.0','2', '2','1','2536.56', '2','1','2536.56', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004726.0','1018874.0','3', '3','2','593.28', '3','1','367.38', '1','1','225.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092990.0','1044441.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004727.0','1018874.0','8', '5','2','5914.28', '5','2','5914.28', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092991.0','1044441.0','54', '49','30','138758.75', '42','27','68181.92', '23','14','70576.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004728.0','1018874.0','31', '18','10','35056.5', '17','9','23045.2', '6','2','12011.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092992.0','1044441.0','4', '3','1','3823.24', '2','1','3823.24', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004729.0','1018874.0','1', '1','1','6122.0', '1','1','6122.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092993.0','1044441.0','9', '8','6','23109.87', '7','6','20652.58', '5','1','2457.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004730.0','1018874.0','3', '3','3','9140.54', '3','3','7876.41', '2','2','1264.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092994.0','1044441.0','4', '3','3','10273.13', '3','2','4335.95', '3','2','5937.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004731.0','1018874.0','3', '2','1','4452.39', '1','0','0.0', '2','1','4452.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092995.0','1044441.0','6', '5','4','30091.13', '4','4','8216.1', '4','2','21875.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004732.0','1018874.0','5', '5','4','14809.09', '5','4','9655.0', '3','2','5154.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092996.0','1044441.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004733.0','1018874.0','63', '55','42','188167.34', '53','41','110435.27', '30','10','77732.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092997.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004734.0','1018874.0','11', '9','3','26426.45', '8','3','9865.8', '2','1','16560.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092998.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004735.0','1018874.0','3', '1','1','1779.64', '1','1','1779.64', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2092999.0','1044441.0','10', '10','3','5000.4', '10','3','5000.4', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004736.0','1018874.0','22', '21','14','39220.42', '19','12','24793.85', '8','3','14426.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093000.0','1044441.0','29', '18','9','35021.27', '17','8','32852.09', '4','2','2169.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004737.0','1018874.0','1', '1','1','8518.65', '1','1','7618.0', '1','1','900.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093001.0','1044441.0','8', '7','2','7360.69', '7','2','7360.69', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004738.0','1018874.0','6', '6','3','12180.1', '6','3','10348.46', '1','1','1831.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093002.0','1044441.0','1', '1','1','1494.34', '1','1','1275.0', '1','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004739.0','1018874.0','9', '8','3','16910.86', '8','3','5396.0', '2','1','11514.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093003.0','1044441.0','7', '6','5','12103.34', '5','5','12103.34', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004740.0','1018874.0','2', '2','1','2153.0', '2','1','2153.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093004.0','1044441.0','6', '4','4','10832.43', '4','4','9902.97', '2','1','929.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004741.0','1018874.0','4', '3','1','1548.0', '2','1','1548.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093005.0','1044441.0','6', '6','6','19629.51', '6','6','18895.48', '6','3','734.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004742.0','1018874.0','46', '39','25','77841.51', '37','24','55017.3', '23','11','22824.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093006.0','1044441.0','6', '6','4','24929.29', '5','4','11201.25', '4','2','13728.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004743.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093007.0','1044441.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004744.0','1018874.0','25', '17','11','33617.94', '17','10','32399.05', '6','3','1218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093008.0','1044441.0','1', '1','1','2675.89', '1','1','2522.01', '1','1','153.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004745.0','1018874.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093009.0','1044441.0','225', '194','156','405557.33', '188','150','369189.5', '95','39','36367.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004746.0','1018874.0','7', '6','4','9903.26', '5','4','9903.26', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093010.0','1044441.0','2', '2','1','7500.0', '1','0','0.0', '1','1','7500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004747.0','1018874.0','4', '4','1','1230.0', '4','1','1230.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093011.0','1044441.0','280', '252','205','1220741.51', '240','195','743167.27', '157','90','477574.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004748.0','1018874.0','6', '4','4','3196.42', '4','4','2970.52', '1','1','225.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093012.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004749.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093013.0','1044441.0','4', '4','3','9436.1', '4','3','9436.1', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004750.0','1018874.0','2', '1','1','5100.0', '1','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093014.0','1044441.0','1', '1','1','2823.0', '1','1','2823.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004751.0','1018874.0','1', '1','1','1022.0', '1','1','1022.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093015.0','1044441.0','6', '6','1','5100.0', '6','1','5100.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004752.0','1018874.0','20', '16','14','88819.66', '16','14','58108.43', '8','6','30711.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093016.0','1044441.0','36', '22','17','53810.44', '22','17','46835.04', '6','3','6975.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004753.0','1018874.0','25', '22','17','74643.6', '22','17','61493.07', '11','3','13150.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093017.0','1044441.0','3', '3','2','3825.0', '3','2','3825.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004754.0','1018874.0','15', '15','9','21329.51', '15','9','20761.61', '5','3','567.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093018.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004755.0','1018874.0','38', '36','34','111884.73', '36','34','102212.56', '10','3','9672.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093019.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004756.0','1018874.0','32', '32','17','29762.86', '30','14','27704.98', '16','7','2057.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093020.0','1044441.0','1', '1','1','17.92', '1','1','17.92', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004757.0','1018874.0','65', '58','43','143171.26', '58','41','106881.43', '28','17','36289.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093021.0','1044441.0','214', '167','91','202375.6', '162','71','132489.1', '72','38','69886.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004758.0','1018874.0','13', '12','10','20169.59', '12','10','20053.28', '3','1','116.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093022.0','1044441.0','59', '42','31','104935.92', '41','26','73757.5', '21','11','31178.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004759.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093023.0','1044441.0','159', '125','91','164910.67', '123','89','157216.11', '47','14','7694.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004760.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093024.0','1044441.0','4', '4','1','359.0', '4','1','359.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004761.0','1018874.0','4', '4','4','6834.89', '4','4','6834.89', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093025.0','1044441.0','9', '8','7','26507.42', '8','7','26366.47', '2','1','140.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004762.0','1018874.0','9', '6','3','3995.08', '6','3','3995.08', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093026.0','1044441.0','132', '97','42','124716.26', '97','38','99639.04', '17','10','25077.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004763.0','1018874.0','6', '6','6','13775.43', '6','6','13281.1', '2','1','494.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093027.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002559.0','1018874.0','18', '17','14','69047.77', '17','13','42426.51', '11','6','26621.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090823.0','1044441.0','68', '38','21','40914.77', '33','20','39469.98', '9','4','1444.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004764.0','1018874.0','16', '13','3','13053.16', '12','3','7422.65', '5','1','5630.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093028.0','1044441.0','11', '6','1','116.31', '6','0','0.0', '3','1','116.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004765.0','1018874.0','5', '5','2','2673.28', '5','2','1293.0', '4','1','1380.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093029.0','1044441.0','6', '6','3','4023.98', '6','3','3196.59', '2','1','827.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004766.0','1018874.0','5', '3','3','200.03', '3','3','200.03', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093030.0','1044441.0','45', '44','28','158399.16', '43','27','93193.53', '24','8','65205.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004767.0','1018874.0','6', '5','2','16313.54', '5','2','7614.66', '2','1','8698.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093031.0','1044441.0','5', '5','3','25852.95', '5','3','12591.75', '2','1','13261.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004768.0','1018874.0','10', '9','4','17093.89', '8','2','6988.0', '6','3','10105.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093032.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004769.0','1018874.0','14', '14','9','34497.18', '14','9','23775.23', '7','2','10721.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093033.0','1044441.0','16', '15','10','18911.17', '15','10','18491.95', '4','1','419.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004770.0','1018874.0','9', '8','6','11009.26', '8','6','11009.26', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093034.0','1044441.0','8', '7','3','9462.02', '7','3','7691.57', '4','1','1770.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004771.0','1018874.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093035.0','1044441.0','39', '32','23','93507.14', '31','22','71790.46', '20','8','21716.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004772.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093036.0','1044441.0','20', '10','3','9626.21', '9','3','8101.96', '4','1','1524.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004773.0','1018874.0','2', '2','1','3607.67', '2','1','3488.59', '2','1','119.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093037.0','1044441.0','15', '10','7','20266.16', '10','7','19911.94', '4','1','354.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004774.0','1018874.0','8', '6','4','18222.55', '5','3','5664.0', '5','3','12558.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093038.0','1044441.0','16', '15','7','26297.27', '14','7','19605.08', '7','3','6692.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004775.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093039.0','1044441.0','228', '173','108','301169.55', '164','90','204083.05', '96','55','97086.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004776.0','1018874.0','1', '1','1','2675.13', '1','1','2675.13', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093040.0','1044441.0','26', '21','12','20158.01', '20','12','18015.04', '7','2','2142.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004777.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093041.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004778.0','1018874.0','95', '70','34','48313.02', '68','29','43380.31', '27','14','4932.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093042.0','1044441.0','5', '3','2','5461.09', '3','2','5461.09', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004779.0','1018874.0','1', '1','1','389.84', '1','1','389.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093043.0','1044441.0','11', '8','6','22595.22', '8','6','22595.22', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004780.0','1018874.0','2', '2','1','2597.86', '2','1','2597.86', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093044.0','1044441.0','13', '13','10','47091.69', '13','8','21108.0', '8','5','25983.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004781.0','1018874.0','12', '11','5','6026.41', '11','3','5444.76', '7','4','581.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093045.0','1044441.0','1', '1','1','2022.5', '1','1','2022.5', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004782.0','1018874.0','8', '7','2','7530.0', '7','2','7530.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093046.0','1044441.0','71', '64','33','85943.79', '64','29','68903.68', '31','8','17040.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004783.0','1018874.0','20', '18','3','4386.27', '18','2','4170.0', '6','1','216.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093047.0','1044441.0','6', '5','5','9217.31', '4','3','5681.0', '5','3','3536.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004784.0','1018874.0','7', '6','4','20689.31', '5','3','5670.0', '5','3','15019.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093048.0','1044441.0','27', '24','17','57288.12', '24','17','41931.2', '13','4','15356.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004785.0','1018874.0','7', '7','6','13498.9', '7','6','9393.2', '4','1','4105.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093049.0','1044441.0','1', '1','1','5100.0', '1','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004786.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093050.0','1044441.0','5', '5','2','5229.52', '5','2','5229.52', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002680.0','1018874.0','7', '4','2','2040.77', '4','2','2040.77', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090944.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002737.0','1018874.0','1', '1','1','5496.22', '1','1','4949.76', '1','1','546.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091001.0','1044441.0','26', '20','17','46606.12', '19','16','37980.78', '9','4','8625.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004787.0','1018874.0','2', '1','1','5100.0', '1','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093051.0','1044441.0','1', '1','1','244.0', '1','1','244.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004788.0','1018874.0','3', '3','3','3667.0', '3','3','3667.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093052.0','1044441.0','1', '1','1','208.14', '1','0','0.0', '1','1','208.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004789.0','1018874.0','92', '81','66','176498.58', '78','61','123261.59', '61','41','53236.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093053.0','1044441.0','8', '6','6','31616.15', '6','6','22493.21', '3','2','9122.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004790.0','1018874.0','2', '2','1','3006.44', '2','1','1419.43', '1','1','1587.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093054.0','1044441.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004791.0','1018874.0','7', '5','5','74478.52', '5','5','20291.0', '4','4','54187.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093055.0','1044441.0','20', '14','8','24139.54', '12','5','13046.26', '9','5','11093.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004792.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093056.0','1044441.0','12', '10','9','50419.13', '10','9','33710.32', '6','4','16708.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004793.0','1018874.0','8', '8','6','9929.55', '8','5','9705.14', '3','1','224.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093057.0','1044441.0','58', '50','46','218970.69', '49','46','168137.38', '24','16','50833.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004794.0','1018874.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093058.0','1044441.0','1', '1','1','5042.3', '1','1','1888.0', '1','1','3154.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004795.0','1018874.0','5', '4','2','3240.0', '4','2','3240.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093059.0','1044441.0','26', '24','13','44152.58', '23','13','43479.35', '9','3','673.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004796.0','1018874.0','10', '9','2','649.93', '9','1','432.0', '2','1','217.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093060.0','1044441.0','10', '5','3','17113.1', '5','3','10672.34', '3','1','6440.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004797.0','1018874.0','29', '21','14','40185.23', '19','14','28408.1', '10','1','11777.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093061.0','1044441.0','8', '8','7','37202.25', '8','7','33554.88', '5','3','3647.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004798.0','1018874.0','6', '4','3','20011.41', '4','3','11181.98', '2','1','8829.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093062.0','1044441.0','86', '81','60','215096.94', '78','56','171706.58', '45','20','43390.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004799.0','1018874.0','4', '3','2','13351.34', '3','2','13351.34', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093063.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002810.0','1018874.0','15', '14','10','9172.42', '13','9','8811.03', '8','2','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091074.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004800.0','1018874.0','5', '5','4','4807.58', '5','4','4506.48', '3','1','301.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093064.0','1044441.0','4', '2','1','4492.03', '2','1','2082.81', '1','1','2409.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004801.0','1018874.0','4', '4','2','2437.45', '4','2','2216.39', '2','1','221.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093065.0','1044441.0','1', '1','1','1919.37', '1','1','1919.37', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004802.0','1018874.0','7', '6','4','22688.65', '5','3','16709.67', '5','4','5978.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093066.0','1044441.0','7', '6','3','1970.26', '6','3','1970.26', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004803.0','1018874.0','1', '1','1','6026.0', '1','1','6026.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093067.0','1044441.0','7', '6','5','9727.98', '6','5','9585.53', '2','1','142.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004804.0','1018874.0','4', '4','2','425.9', '4','0','0.0', '2','2','425.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093068.0','1044441.0','15', '13','5','21512.8', '12','5','11475.28', '5','1','10037.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004805.0','1018874.0','18', '12','8','26651.15', '12','8','16010.28', '6','3','10640.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093069.0','1044441.0','14', '12','11','25177.44', '12','9','19334.54', '9','8','5842.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004806.0','1018874.0','15', '12','5','12270.58', '11','5','12270.58', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093070.0','1044441.0','15', '11','3','4050.0', '10','3','4050.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004807.0','1018874.0','1', '1','1','5100.0', '1','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093071.0','1044441.0','21', '19','8','11025.73', '19','7','10812.78', '4','1','212.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004808.0','1018874.0','61', '53','41','104665.47', '48','37','90547.69', '25','13','14117.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093072.0','1044441.0','7', '7','5','11463.22', '5','4','7868.06', '5','3','3595.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004809.0','1018874.0','2', '2','1','860.39', '1','1','860.39', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093073.0','1044441.0','7', '5','2','2755.09', '5','2','2755.09', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004810.0','1018874.0','1', '1','1','3224.44', '1','1','2863.05', '1','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093074.0','1044441.0','21', '19','8','20909.81', '18','6','17315.31', '6','3','3594.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004811.0','1018874.0','8', '2','1','1275.0', '1','1','1275.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093075.0','1044441.0','2', '1','1','2818.74', '1','1','2818.74', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004812.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093076.0','1044441.0','2', '2','2','3890.09', '2','2','3890.09', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004813.0','1018874.0','5', '5','4','14565.76', '5','4','14423.71', '3','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093077.0','1044441.0','79', '72','53','175248.08', '71','52','127995.98', '44','17','47252.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004814.0','1018874.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093078.0','1044441.0','13', '13','12','64935.48', '13','12','53967.72', '7','4','10967.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004815.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093079.0','1044441.0','10', '8','6','15568.78', '8','6','14978.28', '5','2','590.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004816.0','1018874.0','65', '60','52','313705.96', '60','51','182073.89', '38','19','131632.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093080.0','1044441.0','4', '4','2','10419.34', '4','2','10200.0', '2','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004817.0','1018874.0','69', '60','45','135223.24', '58','44','112492.85', '29','15','22730.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093081.0','1044441.0','5', '5','4','33463.14', '5','4','15209.38', '4','2','18253.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004818.0','1018874.0','1', '1','1','142.45', '1','0','0.0', '1','1','142.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093082.0','1044441.0','12', '10','7','30606.52', '9','6','22038.83', '4','2','8567.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002603.0','1018874.0','36', '33','15','42994.24', '30','12','37400.24', '15','7','5594.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090867.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004819.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093083.0','1044441.0','12', '11','5','14236.16', '11','5','13901.76', '3','1','334.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004820.0','1018874.0','25', '17','10','21555.86', '17','9','20078.81', '5','4','1477.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093084.0','1044441.0','31', '29','15','36444.84', '28','13','26786.24', '14','6','9658.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004821.0','1018874.0','4', '3','2','2586.76', '2','2','2586.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093085.0','1044441.0','2', '2','2','2831.0', '2','2','2831.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004822.0','1018874.0','18', '18','14','49987.77', '17','14','38422.26', '9','7','11565.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093086.0','1044441.0','41', '38','13','45177.13', '37','12','25221.84', '23','5','19955.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004823.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093087.0','1044441.0','6', '6','5','4130.04', '6','5','3283.2', '2','1','846.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002577.0','1018874.0','1', '1','1','5100.0', '1','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090841.0','1044441.0','5', '3','3','4631.22', '3','3','4631.22', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004824.0','1018874.0','4', '3','3','5276.03', '3','3','5276.03', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093088.0','1044441.0','3', '3','3','11067.55', '3','3','10034.01', '2','2','1033.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004825.0','1018874.0','1', '1','1','5500.0', '0','0','0.0', '1','1','5500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093089.0','1044441.0','5', '4','2','16759.69', '4','2','3846.12', '3','1','12913.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004826.0','1018874.0','36', '35','26','54082.43', '35','23','49018.3', '14','6','5064.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093090.0','1044441.0','1', '1','1','2430.42', '1','1','2430.42', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004827.0','1018874.0','2', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093091.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002696.0','1018874.0','10', '8','8','22981.39', '8','8','17264.22', '6','5','5717.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090960.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004828.0','1018874.0','1', '1','1','4643.56', '1','1','4424.22', '1','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093092.0','1044441.0','4', '3','2','6031.0', '3','2','4233.69', '1','1','1797.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004829.0','1018874.0','7', '5','3','12185.51', '4','3','8867.5', '5','3','3318.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093093.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004830.0','1018874.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093094.0','1044441.0','25', '23','13','19315.96', '22','12','18822.44', '16','3','493.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004831.0','1018874.0','100', '84','57','233384.58', '67','55','152884.37', '51','23','80500.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093095.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004832.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093096.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004833.0','1018874.0','10', '9','6','5626.74', '8','6','5434.57', '3','1','192.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093097.0','1044441.0','1', '1','1','5100.0', '1','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004834.0','1018874.0','1', '1','1','1620.0', '1','1','1620.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093098.0','1044441.0','15', '13','7','33692.14', '13','7','33249.8', '7','2','442.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002911.0','1018874.0','53', '49','18','53193.93', '48','18','34355.04', '19','3','18838.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091175.0','1044441.0','63', '57','39','188955.21', '56','38','114323.8', '35','14','74631.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002657.0','1018874.0','63', '36','16','46663.95', '35','15','43375.53', '13','2','3288.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090921.0','1044441.0','31', '27','20','95202.26', '27','17','58167.12', '14','9','37035.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002580.0','1018874.0','12', '11','9','28389.59', '11','9','27436.55', '5','3','953.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090844.0','1044441.0','7', '6','4','8795.24', '6','4','8795.24', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004835.0','1018874.0','102', '94','82','373234.41', '92','77','231749.88', '61','43','141484.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093099.0','1044441.0','39', '36','31','130419.55', '35','28','74715.2', '22','15','55704.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002739.0','1018874.0','15', '12','4','22306.39', '11','4','17597.0', '8','1','4709.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091003.0','1044441.0','3', '3','3','10788.8', '3','3','10285.36', '3','2','503.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004836.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093100.0','1044441.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002792.0','1018874.0','1', '1','1','3625.36', '1','1','3259.2', '1','1','366.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091056.0','1044441.0','3', '3','3','10554.69', '3','3','6689.45', '3','2','3865.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002930.0','1018874.0','10', '10','9','45086.25', '9','8','21118.0', '8','5','23968.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091194.0','1044441.0','5', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002610.0','1018874.0','13', '13','7','20839.59', '13','7','20720.51', '5','1','119.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090874.0','1044441.0','1', '1','1','2722.53', '1','1','914.0', '1','1','1808.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002688.0','1018874.0','28', '25','18','67567.75', '25','16','47506.54', '9','5','20061.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090952.0','1044441.0','5', '5','5','22863.54', '5','5','8377.78', '5','3','14485.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003021.0','1018874.0','17', '13','8','18525.22', '13','7','16516.29', '8','2','2008.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091285.0','1044441.0','17', '13','9','7633.34', '12','9','6807.49', '4','1','825.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004837.0','1018874.0','43', '25','5','7169.69', '20','3','5550.03', '10','2','1619.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093101.0','1044441.0','15', '14','7','15319.3', '14','7','15319.3', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004838.0','1018874.0','10', '10','7','66966.62', '10','7','36018.23', '7','5','30948.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093102.0','1044441.0','1', '1','1','12903.8', '1','1','5100.0', '1','1','7803.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004839.0','1018874.0','39', '34','29','89976.09', '34','26','87140.41', '14','8','2835.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093103.0','1044441.0','8', '4','1','1993.0', '3','1','1993.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004840.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093104.0','1044441.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002934.0','1018874.0','9', '8','7','18069.91', '7','7','16043.62', '7','6','2026.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091198.0','1044441.0','6', '6','4','20368.21', '6','4','15576.27', '4','3','4791.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004841.0','1018874.0','3', '3','3','4463.58', '3','3','3953.09', '2','1','510.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093105.0','1044441.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002661.0','1018874.0','4', '2','1','2550.0', '2','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090925.0','1044441.0','83', '73','59','159234.99', '72','54','128006.83', '44','22','31228.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002702.0','1018874.0','7', '5','2','6343.15', '5','2','6343.15', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090966.0','1044441.0','3', '2','2','4338.13', '2','2','4338.13', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004842.0','1018874.0','1', '1','1','2139.76', '1','1','2139.76', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093106.0','1044441.0','2', '2','2','10056.38', '2','2','9617.7', '2','2','438.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002664.0','1018874.0','4', '3','1','812.52', '3','1','812.52', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090928.0','1044441.0','23', '21','18','74471.14', '21','17','53513.06', '10','8','20958.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004843.0','1018874.0','7', '7','7','16298.6', '7','7','13465.76', '5','5','2832.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093107.0','1044441.0','29', '20','8','15367.68', '20','8','13710.16', '8','3','1657.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004844.0','1018874.0','15', '14','11','36563.22', '13','10','24785.76', '10','5','11777.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093108.0','1044441.0','170', '147','120','686287.57', '142','111','352362.29', '91','57','333925.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004845.0','1018874.0','2', '2','2','962.92', '2','2','962.92', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093109.0','1044441.0','19', '14','12','35471.66', '13','11','30335.35', '7','3','5136.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004846.0','1018874.0','1', '1','1','2063.36', '1','1','2063.36', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093110.0','1044441.0','3', '2','1','810.0', '2','1','810.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004847.0','1018874.0','24', '23','18','154756.08', '22','18','68609.28', '11','10','86146.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093111.0','1044441.0','27', '22','10','40579.72', '20','10','24280.58', '14','4','16299.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004848.0','1018874.0','157', '125','111','615451.81', '121','110','283950.28', '82','51','331501.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093112.0','1044441.0','4', '4','3','4061.08', '4','2','3848.13', '2','1','212.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002877.0','1018874.0','4', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091141.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004849.0','1018874.0','4', '2','2','26914.89', '2','2','8540.44', '1','1','18374.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093113.0','1044441.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004850.0','1018874.0','4', '3','2','14694.77', '2','2','6375.0', '3','2','8319.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093114.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004851.0','1018874.0','37', '29','24','71124.73', '27','23','56059.83', '17','10','15064.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093115.0','1044441.0','40', '35','28','162085.49', '35','27','93598.25', '19','10','68487.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002707.0','1018874.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090971.0','1044441.0','9', '8','8','28760.36', '8','6','12566.57', '4','3','16193.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004852.0','1018874.0','2', '2','1','1861.84', '2','1','1861.84', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093116.0','1044441.0','2', '1','1','2158.78', '1','1','2158.78', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004853.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093117.0','1044441.0','8', '8','4','5620.49', '8','3','2272.81', '2','1','3347.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004854.0','1018874.0','35', '32','27','82849.0', '32','26','62848.88', '21','9','20000.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093118.0','1044441.0','41', '34','19','62498.53', '33','17','31916.58', '17','5','30581.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004855.0','1018874.0','1', '1','1','614.3', '1','1','614.3', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093119.0','1044441.0','6', '5','4','4580.87', '5','4','4580.87', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004856.0','1018874.0','77', '66','54','133960.66', '64','53','110404.22', '38','20','23556.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093120.0','1044441.0','5', '3','2','7212.41', '2','2','6988.0', '2','1','224.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003033.0','1018874.0','19', '16','4','6981.0', '15','4','6981.0', '12','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091297.0','1044441.0','1', '1','1','7846.3', '1','1','5100.0', '1','1','2746.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004857.0','1018874.0','24', '19','12','36027.62', '19','12','35158.1', '7','3','869.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093121.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004858.0','1018874.0','18', '18','10','8481.44', '18','9','7367.12', '7','2','1114.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093122.0','1044441.0','138', '96','78','352765.41', '92','74','185280.24', '57','34','167485.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002775.0','1018874.0','10', '8','5','43127.75', '7','4','7508.56', '5','4','35619.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091039.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004859.0','1018874.0','7', '5','3','5426.87', '5','3','5426.87', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093123.0','1044441.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002582.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090846.0','1044441.0','2', '2','2','1494.34', '2','1','1275.0', '1','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004860.0','1018874.0','2', '1','1','2452.11', '1','1','1428.0', '1','1','1024.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093124.0','1044441.0','5', '5','0','0.0', '5','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002790.0','1018874.0','8', '7','5','15048.26', '7','5','10267.19', '2','1','4781.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091054.0','1044441.0','3', '3','2','35475.39', '3','2','9884.36', '3','2','25591.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004861.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093125.0','1044441.0','2', '2','2','7997.98', '2','2','7997.98', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004862.0','1018874.0','3', '3','2','10501.24', '3','2','9919.41', '2','1','581.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093126.0','1044441.0','80', '72','52','179402.07', '70','51','130902.93', '43','19','48499.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002981.0','1018874.0','59', '52','48','483434.6', '51','48','234830.62', '35','28','248603.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091245.0','1044441.0','78', '68','55','198639.82', '68','51','139365.46', '40','19','59274.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004863.0','1018874.0','5', '3','1','5621.46', '2','1','5100.0', '2','1','521.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093127.0','1044441.0','1', '1','1','370.43', '1','1','370.43', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004864.0','1018874.0','4', '4','4','15600.42', '4','4','13997.4', '2','1','1603.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093128.0','1044441.0','72', '66','54','200604.89', '65','54','174062.4', '33','12','26542.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004865.0','1018874.0','6', '5','2','4807.76', '5','2','4807.76', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093129.0','1044441.0','5', '3','3','13034.94', '3','3','2547.65', '2','2','10487.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004866.0','1018874.0','2', '2','1','2550.0', '2','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093130.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004867.0','1018874.0','22', '20','14','29190.43', '20','14','27324.83', '5','2','1865.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093131.0','1044441.0','2', '1','1','2525.75', '1','1','2525.75', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004868.0','1018874.0','3', '3','2','1192.47', '3','2','1192.47', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093132.0','1044441.0','6', '5','4','5881.32', '5','4','4938.13', '3','2','943.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002620.0','1018874.0','19', '18','13','39817.4', '16','12','37138.88', '11','5','2678.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090884.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004869.0','1018874.0','7', '6','5','36860.24', '5','5','18484.24', '6','5','18376.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093133.0','1044441.0','3', '3','2','3403.89', '3','2','3403.89', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002703.0','1018874.0','151', '138','123','1095901.32', '135','120','471823.02', '98','64','624078.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090967.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004870.0','1018874.0','6', '5','5','10274.35', '5','5','10047.23', '3','1','227.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093134.0','1044441.0','32', '16','9','21193.96', '15','8','19261.82', '3','1','1932.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004871.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093135.0','1044441.0','6', '6','4','15120.0', '6','4','15120.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002738.0','1018874.0','4', '4','2','11774.13', '4','2','10535.85', '1','1','1238.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091002.0','1044441.0','1', '1','1','5242.45', '1','1','5100.0', '1','1','142.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004872.0','1018874.0','3', '3','2','1895.98', '3','2','1895.98', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093136.0','1044441.0','13', '10','6','10084.48', '10','6','8926.57', '7','1','1157.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002625.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090889.0','1044441.0','15', '14','11','106962.62', '13','11','49584.87', '6','4','57377.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004873.0','1018874.0','2', '1','1','456.0', '1','1','456.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093137.0','1044441.0','28', '27','9','16987.49', '25','7','14860.7', '11','3','2126.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004874.0','1018874.0','12', '8','7','44314.0', '8','4','9269.78', '7','6','35044.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093138.0','1044441.0','30', '28','24','124605.53', '26','23','42912.0', '14','10','81693.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003214.0','1018874.0','1', '1','1','5135.26', '1','1','4935.26', '1','1','200.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091478.0','1044441.0','10', '6','5','9291.04', '6','5','7581.74', '5','3','1709.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004875.0','1018874.0','5', '5','5','17638.07', '5','4','13843.91', '3','3','3794.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093139.0','1044441.0','14', '12','10','42807.4', '12','10','40936.73', '5','1','1870.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004876.0','1018874.0','1', '1','1','6026.0', '1','1','6026.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093140.0','1044441.0','324', '266','212','647265.86', '253','196','514658.84', '157','76','132607.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004877.0','1018874.0','3', '3','3','8422.33', '3','3','3947.11', '1','1','4475.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093141.0','1044441.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002951.0','1018874.0','66', '61','48','174329.72', '59','44','129625.65', '34','20','44704.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091215.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004878.0','1018874.0','6', '5','5','10642.33', '5','5','9175.97', '3','2','1466.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093142.0','1044441.0','13', '12','6','18266.28', '10','6','18266.28', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004879.0','1018874.0','1', '1','1','2930.69', '1','1','2870.09', '1','1','60.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093143.0','1044441.0','3', '3','1','5100.0', '3','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004880.0','1018874.0','5', '5','3','7973.63', '5','3','7973.63', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093144.0','1044441.0','8', '6','3','8199.14', '6','3','7874.78', '2','1','324.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004881.0','1018874.0','8', '8','7','38543.76', '8','7','32565.42', '6','2','5978.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093145.0','1044441.0','10', '9','3','4609.84', '9','3','4609.84', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002786.0','1018874.0','10', '8','8','35172.8', '8','8','24626.46', '6','4','10546.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091050.0','1044441.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004882.0','1018874.0','1', '1','1','2692.05', '1','1','2550.0', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093146.0','1044441.0','2', '2','1','3267.58', '2','1','3267.58', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002740.0','1018874.0','4', '4','4','4649.58', '4','3','3695.74', '2','2','953.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091004.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004883.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093147.0','1044441.0','2', '1','1','1070.9', '1','1','1070.9', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004884.0','1018874.0','4', '4','3','13383.91', '4','3','7650.0', '2','1','5733.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093148.0','1044441.0','2', '2','1','12874.23', '2','1','5100.0', '2','1','7774.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002752.0','1018874.0','5', '4','4','23284.21', '4','4','13915.88', '3','3','9368.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091016.0','1044441.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003049.0','1018874.0','283', '248','188','823776.82', '239','179','468502.95', '127','66','355273.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091313.0','1044441.0','14', '13','12','39458.59', '13','12','36848.98', '6','3','2609.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004885.0','1018874.0','35', '30','28','79535.3', '29','28','64643.14', '20','16','14892.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093149.0','1044441.0','16', '16','13','31691.47', '16','13','30985.46', '11','2','706.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004886.0','1018874.0','2', '2','1','960.73', '2','1','960.73', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093150.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002782.0','1018874.0','16', '16','11','39563.22', '13','11','35058.46', '10','5','4504.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091046.0','1044441.0','103', '84','69','164090.16', '80','64','141810.37', '48','27','22279.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002787.0','1018874.0','23', '20','17','59880.19', '19','16','34948.6', '16','5','24931.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091051.0','1044441.0','1', '1','1','1210.16', '1','1','1210.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004887.0','1018874.0','44', '36','28','111479.86', '34','25','74660.52', '21','13','36819.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093151.0','1044441.0','35', '33','27','175545.56', '32','26','87768.18', '20','13','87777.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002819.0','1018874.0','2', '2','2','8484.74', '2','2','8484.74', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091083.0','1044441.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004888.0','1018874.0','9', '8','7','24043.95', '8','7','13452.78', '4','2','10591.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093152.0','1044441.0','9', '7','4','42871.37', '7','4','9177.0', '5','3','33694.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004889.0','1018874.0','10', '8','7','42680.39', '8','7','32111.88', '4','1','10568.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093153.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004890.0','1018874.0','4', '2','2','15306.31', '2','2','9503.02', '2','1','5803.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093154.0','1044441.0','3', '2','1','1339.7', '1','0','0.0', '2','1','1339.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003029.0','1018874.0','16', '14','13','31404.46', '14','12','25618.47', '9','5','5785.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091293.0','1044441.0','10', '6','5','15085.44', '6','5','14843.76', '3','1','241.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002817.0','1018874.0','18', '16','13','33414.54', '15','12','21119.56', '10','9','12294.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091081.0','1044441.0','26', '22','19','49983.16', '22','15','18518.88', '14','10','31464.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004891.0','1018874.0','6', '6','6','13616.63', '6','6','12058.91', '3','2','1557.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093155.0','1044441.0','4', '3','3','9483.8', '3','3','4967.02', '2','1','4516.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004892.0','1018874.0','3', '2','1','6556.83', '2','1','2550.0', '1','1','4006.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093156.0','1044441.0','1', '1','1','7431.99', '1','1','3072.52', '1','1','4359.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004893.0','1018874.0','36', '35','31','91360.0', '33','27','45658.58', '19','16','45701.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093157.0','1044441.0','8', '8','7','14279.18', '8','7','12464.78', '6','3','1814.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004894.0','1018874.0','3', '3','3','17959.74', '3','3','8536.09', '2','1','9423.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093158.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002567.0','1018874.0','4', '3','3','7310.5', '3','3','7083.38', '1','1','227.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090831.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004895.0','1018874.0','17', '16','11','31932.89', '16','10','30354.15', '6','2','1578.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093159.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002997.0','1018874.0','39', '38','33','51873.16', '37','28','34387.96', '31','19','17485.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091261.0','1044441.0','2', '1','1','1361.84', '1','1','1361.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004896.0','1018874.0','142', '140','89','105757.95', '137','71','79614.36', '116','42','26143.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093160.0','1044441.0','3', '2','2','8454.3', '2','2','8454.3', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004897.0','1018874.0','4', '3','1','3371.76', '3','1','3371.76', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093161.0','1044441.0','3', '2','1','357.76', '2','1','357.76', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004898.0','1018874.0','2', '2','2','9100.24', '2','2','9100.24', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093162.0','1044441.0','176', '162','142','523889.72', '157','136','411407.91', '81','47','112481.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004899.0','1018874.0','18', '13','10','17247.48', '13','6','12043.36', '9','7','5204.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093163.0','1044441.0','1', '1','1','2811.17', '1','1','2811.17', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004900.0','1018874.0','5', '3','3','12594.39', '3','3','12002.32', '2','2','592.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093164.0','1044441.0','8', '7','6','11360.15', '7','6','11267.47', '4','1','92.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004901.0','1018874.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093165.0','1044441.0','1', '1','1','1724.44', '1','1','1724.44', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004902.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093166.0','1044441.0','29', '20','13','136314.87', '20','13','71301.74', '13','5','65013.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004903.0','1018874.0','21', '16','13','35391.04', '15','10','27717.39', '10','7','7673.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093167.0','1044441.0','6', '4','2','1085.9', '3','2','1085.9', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004904.0','1018874.0','6', '4','3','8924.46', '4','3','4182.63', '1','1','4741.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093168.0','1044441.0','4', '4','2','3606.48', '4','2','2054.71', '1','1','1551.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004905.0','1018874.0','10', '9','5','9087.54', '8','4','7939.93', '3','1','1147.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093169.0','1044441.0','340', '312','276','1013061.88', '310','264','730427.1', '209','114','282634.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004906.0','1018874.0','30', '28','26','155965.49', '27','25','97307.81', '19','14','58657.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093170.0','1044441.0','124', '117','97','431039.06', '113','94','194088.88', '75','41','236950.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004907.0','1018874.0','2', '2','1','5978.0', '2','1','5978.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093171.0','1044441.0','9', '5','5','13554.76', '5','5','12689.4', '2','1','865.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004908.0','1018874.0','261', '227','177','546190.33', '204','150','292520.02', '145','83','253670.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093172.0','1044441.0','14', '11','10','12574.74', '11','10','8908.35', '4','2','3666.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004909.0','1018874.0','60', '48','39','95240.21', '48','38','82183.01', '18','9','13057.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093173.0','1044441.0','17', '16','12','32032.76', '16','11','29186.74', '8','3','2846.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004910.0','1018874.0','2', '2','2','2986.62', '2','2','2986.62', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093174.0','1044441.0','60', '41','30','74869.88', '38','28','49259.75', '17','7','25610.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004911.0','1018874.0','27', '21','14','37928.42', '20','14','28875.84', '10','3','9052.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093175.0','1044441.0','3', '2','2','2388.0', '2','2','2388.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004912.0','1018874.0','2', '2','2','5262.49', '2','2','5035.37', '2','1','227.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093176.0','1044441.0','7', '6','5','20503.23', '6','5','15043.79', '5','3','5459.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002967.0','1018874.0','9', '8','6','6592.09', '8','6','6307.19', '4','2','284.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091231.0','1044441.0','38', '38','27','44109.07', '38','23','28178.6', '29','13','15930.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004913.0','1018874.0','3', '1','1','4879.2', '1','1','4879.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093177.0','1044441.0','6', '5','5','23550.55', '5','5','17189.41', '2','1','6361.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002945.0','1018874.0','4', '4','4','1100.58', '4','3','672.42', '2','1','428.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091209.0','1044441.0','67', '58','52','177499.62', '56','52','128281.44', '29','19','49218.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002581.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090845.0','1044441.0','28', '24','19','35837.42', '23','18','33353.42', '15','6','2484.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004914.0','1018874.0','8', '7','7','35063.21', '7','7','28061.4', '4','2','7001.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093178.0','1044441.0','39', '29','24','103120.76', '29','24','69878.45', '15','8','33242.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002660.0','1018874.0','2', '2','2','25470.44', '2','2','11390.64', '2','1','14079.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090924.0','1044441.0','15', '14','12','41226.01', '14','11','24506.93', '10','6','16719.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004915.0','1018874.0','60', '45','41','147448.17', '42','34','89138.39', '22','14','58309.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093179.0','1044441.0','3', '3','3','9710.78', '3','3','9483.66', '1','1','227.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004916.0','1018874.0','46', '45','29','53303.87', '45','26','49710.86', '31','10','3593.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093180.0','1044441.0','20', '18','14','39625.6', '18','12','35072.3', '12','8','4553.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004917.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093181.0','1044441.0','4', '4','4','7989.07', '4','4','7044.61', '3','1','944.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004918.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093182.0','1044441.0','1', '1','1','1719.79', '1','1','852.52', '1','1','867.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004919.0','1018874.0','2', '2','2','4822.97', '2','2','4250.9', '1','1','572.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093183.0','1044441.0','17', '15','12','42955.33', '14','10','22537.49', '11','7','20417.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002966.0','1018874.0','48', '39','25','58850.18', '38','25','55161.44', '14','4','3688.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091230.0','1044441.0','98', '95','67','95235.37', '94','57','70615.18', '75','32','24620.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004920.0','1018874.0','2', '2','2','4893.08', '2','1','2779.21', '1','1','2113.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093184.0','1044441.0','17', '14','13','24360.06', '14','10','20633.04', '10','8','3727.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004921.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093185.0','1044441.0','1', '1','1','256.11', '1','1','256.11', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004922.0','1018874.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093186.0','1044441.0','7', '5','5','8063.32', '4','4','6148.95', '4','3','1914.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002906.0','1018874.0','3', '3','2','1018.17', '3','2','1018.17', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091170.0','1044441.0','2', '2','2','13675.14', '2','2','7096.0', '1','1','6579.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004923.0','1018874.0','5', '4','3','3083.46', '4','3','2737.79', '1','1','345.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093187.0','1044441.0','3', '3','2','3524.66', '3','1','359.9', '2','2','3164.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004924.0','1018874.0','190', '185','138','213647.61', '178','113','165585.33', '152','70','48062.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093188.0','1044441.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004925.0','1018874.0','41', '34','29','170541.52', '34','27','66170.78', '24','14','104370.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093189.0','1044441.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002941.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091205.0','1044441.0','9', '5','5','10173.21', '5','5','7858.41', '4','2','2314.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004926.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093190.0','1044441.0','2', '2','2','6405.97', '2','2','4731.11', '1','1','1674.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002962.0','1018874.0','75', '69','48','109996.47', '69','45','92301.88', '32','16','17694.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091226.0','1044441.0','4', '2','2','1892.65', '2','2','1892.65', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004927.0','1018874.0','5', '5','5','21293.41', '5','5','20609.91', '2','2','683.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093191.0','1044441.0','1', '1','1','647.63', '1','1','647.63', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004928.0','1018874.0','49', '47','29','37529.37', '45','25','33455.43', '33','8','4073.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093192.0','1044441.0','9', '9','8','20780.41', '9','8','20780.41', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004929.0','1018874.0','55', '42','35','139670.43', '41','31','94938.42', '19','11','44732.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093193.0','1044441.0','2', '1','1','5826.0', '1','1','5826.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004930.0','1018874.0','4', '3','2','5076.96', '3','2','5076.96', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093194.0','1044441.0','7', '6','5','10799.15', '6','5','10799.15', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004931.0','1018874.0','18', '18','11','18719.65', '18','9','14117.08', '11','6','4602.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093195.0','1044441.0','2', '2','1','1275.0', '2','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004932.0','1018874.0','46', '39','31','137085.5', '39','29','61231.17', '25','16','75854.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093196.0','1044441.0','21', '20','13','13093.24', '19','11','10690.29', '12','6','2402.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004933.0','1018874.0','14', '13','11','26518.73', '13','11','24940.89', '6','3','1577.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093197.0','1044441.0','22', '20','19','64771.8', '20','19','57706.26', '10','5','7065.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004934.0','1018874.0','5', '5','5','13184.79', '5','5','12329.0', '3','1','855.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093198.0','1044441.0','1', '1','1','1192.49', '1','1','1192.49', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004935.0','1018874.0','3', '3','2','7031.78', '3','2','7031.78', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093199.0','1044441.0','2', '2','2','15986.54', '2','2','5662.21', '1','1','10324.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004936.0','1018874.0','50', '42','36','141396.22', '41','32','98605.99', '22','11','42790.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093200.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002659.0','1018874.0','51', '43','32','149924.27', '43','31','67134.79', '22','13','82789.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090923.0','1044441.0','10', '9','7','12880.74', '9','5','11330.86', '6','4','1549.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004937.0','1018874.0','101', '90','78','252584.4', '87','66','203897.74', '58','35','48686.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093201.0','1044441.0','2', '2','1','1640.76', '2','1','1640.76', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002700.0','1018874.0','32', '28','24','74252.36', '28','23','51479.97', '11','8','22772.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090964.0','1044441.0','6', '5','3','8743.42', '5','3','8743.42', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004938.0','1018874.0','4', '2','2','2488.36', '2','2','1947.23', '1','1','541.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093202.0','1044441.0','31', '28','23','32248.21', '28','16','19706.84', '24','12','12541.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004939.0','1018874.0','1', '1','1','6678.11', '1','1','4311.51', '1','1','2366.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093203.0','1044441.0','4', '4','3','2543.76', '3','3','2543.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002704.0','1018874.0','6', '5','5','11236.32', '5','5','11236.32', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090968.0','1044441.0','31', '29','24','119097.62', '28','23','57540.59', '13','6','61557.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004940.0','1018874.0','2', '2','2','1050.55', '2','2','1050.55', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093204.0','1044441.0','2', '2','2','8878.15', '2','2','8106.2', '1','1','771.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004941.0','1018874.0','158', '151','104','221777.95', '149','78','143047.32', '119','58','78730.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093205.0','1044441.0','19', '18','13','24372.23', '18','12','20624.69', '13','9','3747.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004942.0','1018874.0','17', '16','12','24374.36', '16','12','21635.66', '7','4','2738.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093206.0','1044441.0','1', '1','1','3609.55', '1','1','2642.7', '1','1','966.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004943.0','1018874.0','7', '2','2','8573.3', '2','2','8430.85', '1','1','142.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093207.0','1044441.0','272', '268','169','230400.67', '266','136','173825.48', '197','77','56575.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003027.0','1018874.0','9', '8','7','41630.3', '8','7','17532.78', '5','2','24097.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091291.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004944.0','1018874.0','139', '125','111','906795.7', '124','107','177664.5', '102','83','729131.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093208.0','1044441.0','53', '51','36','94356.21', '49','32','73679.44', '29','15','20676.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004945.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093209.0','1044441.0','1', '1','1','506.1', '1','1','506.1', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004946.0','1018874.0','11', '10','8','22359.83', '10','7','15227.05', '6','5','7132.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093210.0','1044441.0','1', '1','1','814.4', '1','0','0.0', '1','1','814.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004947.0','1018874.0','15', '14','7','17481.66', '14','6','15478.08', '11','4','2003.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093211.0','1044441.0','1', '1','1','11978.89', '1','1','3499.32', '1','1','8479.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004948.0','1018874.0','8', '8','7','8752.76', '8','6','8035.65', '2','1','717.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093212.0','1044441.0','12', '10','8','12811.71', '9','6','11401.96', '7','4','1409.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004949.0','1018874.0','3', '3','3','6867.05', '3','3','6867.05', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093213.0','1044441.0','8', '7','6','18423.89', '7','6','14267.08', '3','1','4156.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004950.0','1018874.0','4', '4','2','1581.47', '4','2','1581.47', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093214.0','1044441.0','70', '65','51','128256.65', '63','45','100209.9', '49','22','28046.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004951.0','1018874.0','1', '1','1','316.8', '1','1','316.8', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093215.0','1044441.0','5', '4','2','1825.0', '3','1','1275.0', '2','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004952.0','1018874.0','80', '78','48','126539.4', '76','43','69101.55', '54','27','57437.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093216.0','1044441.0','6', '3','2','10487.44', '2','1','4987.44', '2','1','5500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004953.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093217.0','1044441.0','123', '111','93','273384.14', '108','86','201868.95', '62','42','71515.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004954.0','1018874.0','14', '12','9','5550.85', '12','7','3507.78', '9','4','2043.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093218.0','1044441.0','4', '3','3','12400.8', '3','3','10475.6', '3','1','1925.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004955.0','1018874.0','1', '1','1','1604.13', '1','1','1604.13', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093219.0','1044441.0','24', '21','20','63325.24', '21','20','61225.84', '9','3','2099.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002579.0','1018874.0','1', '1','1','2303.3', '1','1','2303.3', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090843.0','1044441.0','9', '7','6','19687.98', '7','6','17995.93', '3','1','1692.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004956.0','1018874.0','3', '2','2','14908.92', '2','2','7279.0', '1','1','7629.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093220.0','1044441.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002952.0','1018874.0','3', '3','1','224.0', '3','1','224.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091216.0','1044441.0','8', '8','6','8726.07', '7','4','5357.36', '6','4','3368.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002783.0','1018874.0','1', '1','1','9564.13', '1','1','6122.0', '1','1','3442.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091047.0','1044441.0','1', '1','1','3508.79', '1','1','2496.77', '1','1','1012.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002955.0','1018874.0','2', '1','1','3462.93', '1','1','3462.93', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091219.0','1044441.0','3', '3','1','550.0', '3','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004957.0','1018874.0','52', '30','26','158569.72', '28','24','56466.77', '22','18','102102.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093221.0','1044441.0','16', '13','10','55580.42', '13','8','26798.79', '6','5','28781.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004958.0','1018874.0','10', '10','6','54646.05', '8','5','30930.85', '8','5','23715.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093222.0','1044441.0','11', '11','9','27761.85', '11','9','24055.38', '7','4','3706.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004959.0','1018874.0','53', '51','42','107480.39', '50','40','74321.21', '28','16','33159.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093223.0','1044441.0','1', '1','1','389.76', '1','1','389.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004960.0','1018874.0','5', '4','4','8392.24', '4','4','6865.07', '2','2','1527.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093224.0','1044441.0','13', '13','10','9297.33', '13','10','9297.33', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002781.0','1018874.0','21', '21','12','24174.68', '21','11','20043.18', '13','6','4131.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091045.0','1044441.0','7', '6','4','5742.41', '6','4','4729.36', '4','2','1013.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002969.0','1018874.0','10', '10','9','24729.06', '10','9','14742.89', '6','5','9986.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091233.0','1044441.0','1', '1','1','1603.63', '1','1','988.21', '1','1','615.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002879.0','1018874.0','47', '44','32','73597.19', '44','26','41881.75', '35','23','31715.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091143.0','1044441.0','2', '2','2','1797.78', '2','2','1570.66', '2','1','227.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002963.0','1018874.0','10', '7','6','60123.15', '7','6','25888.14', '7','5','34235.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091227.0','1044441.0','5', '5','5','18271.01', '5','5','17933.89', '4','2','337.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002563.0','1018874.0','6', '6','4','22047.06', '5','4','12395.92', '3','1','9651.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090827.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004961.0','1018874.0','5', '5','3','3317.11', '5','3','2322.0', '4','2','995.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093225.0','1044441.0','5', '5','3','3114.19', '5','3','2669.08', '2','1','445.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004962.0','1018874.0','1', '1','1','925.42', '1','0','0.0', '1','1','925.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093226.0','1044441.0','30', '28','21','37346.36', '26','16','27761.27', '15','9','9585.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002785.0','1018874.0','102', '94','78','215053.35', '89','69','143706.91', '61','29','71346.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091049.0','1044441.0','1', '1','1','5978.0', '1','1','5978.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004963.0','1018874.0','3', '2','1','5100.0', '2','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093227.0','1044441.0','3', '3','1','8950.14', '3','1','6218.0', '1','1','2732.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002943.0','1018874.0','8', '7','7','11950.55', '7','6','10685.28', '3','1','1265.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091207.0','1044441.0','3', '1','1','161.57', '1','1','161.57', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004964.0','1018874.0','23', '20','15','43562.24', '20','12','26650.33', '14','10','16911.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093228.0','1044441.0','4', '1','1','2024.67', '1','1','2024.67', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004965.0','1018874.0','30', '22','17','51317.35', '21','17','32470.53', '13','7','18846.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093229.0','1044441.0','1', '1','1','2945.0', '1','1','2945.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004966.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093230.0','1044441.0','1', '1','1','1314.03', '1','1','1314.03', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004967.0','1018874.0','50', '42','39','302433.75', '40','37','108229.53', '27','19','194204.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093231.0','1044441.0','5', '4','3','18013.49', '4','2','8478.26', '4','3','9535.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004968.0','1018874.0','49', '37','31','129070.15', '34','29','87119.36', '19','12','41950.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093232.0','1044441.0','5', '5','4','5051.31', '5','4','2383.8', '5','2','2667.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004969.0','1018874.0','1', '1','1','1757.4', '1','1','1505.78', '1','1','251.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093233.0','1044441.0','1', '1','1','87.35', '1','1','87.35', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004970.0','1018874.0','2', '2','1','15666.1', '2','1','5806.0', '1','1','9860.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093234.0','1044441.0','8', '6','6','19308.31', '6','6','19165.86', '2','1','142.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002902.0','1018874.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091166.0','1044441.0','2', '2','1','1102.25', '2','1','1102.25', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004971.0','1018874.0','3', '3','2','2047.16', '3','2','2047.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093235.0','1044441.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002904.0','1018874.0','3', '3','2','2413.01', '3','2','2413.01', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091168.0','1044441.0','1', '1','1','3422.55', '1','1','2578.15', '1','1','844.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004972.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093236.0','1044441.0','13', '11','9','22177.99', '10','9','19570.68', '5','2','2607.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002928.0','1018874.0','133', '92','72','289505.34', '90','70','209588.61', '48','25','79916.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091192.0','1044441.0','9', '5','4','11028.76', '5','4','7865.0', '2','1','3163.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004973.0','1018874.0','21', '18','15','43110.86', '17','12','24966.1', '9','7','18144.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093237.0','1044441.0','5', '4','3','26992.73', '4','3','3271.0', '1','1','23721.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004974.0','1018874.0','2', '2','2','8255.55', '2','2','7493.0', '2','2','762.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093238.0','1044441.0','2', '2','1','1323.42', '2','1','328.31', '2','1','995.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004975.0','1018874.0','1', '1','1','1664.25', '1','1','1664.25', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093239.0','1044441.0','1', '1','1','98.01', '1','1','98.01', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004976.0','1018874.0','2', '2','1','431.05', '2','1','238.88', '1','1','192.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093240.0','1044441.0','2', '2','1','1070.0', '2','1','1070.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004977.0','1018874.0','3', '3','3','10160.25', '3','3','7017.68', '3','3','3142.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093241.0','1044441.0','17', '16','15','132051.12', '16','15','51570.49', '9','7','80480.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004978.0','1018874.0','2', '2','2','6368.95', '2','2','5523.08', '1','1','845.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093242.0','1044441.0','2', '2','1','3780.0', '2','1','3780.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004979.0','1018874.0','192', '163','145','490605.98', '160','133','349597.97', '85','69','141008.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093243.0','1044441.0','9', '6','4','22255.66', '6','4','8830.73', '2','1','13424.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004980.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093244.0','1044441.0','62', '56','47','140865.7', '55','37','93389.84', '38','25','47475.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004981.0','1018874.0','1', '1','1','1822.88', '1','1','1822.88', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093245.0','1044441.0','2', '2','1','396.4', '2','1','396.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002999.0','1018874.0','33', '31','26','155908.49', '31','26','71397.18', '16','9','84511.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091263.0','1044441.0','6', '5','4','4475.96', '5','3','3736.15', '4','2','739.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004982.0','1018874.0','1', '1','1','713.26', '1','1','492.39', '1','1','220.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093246.0','1044441.0','37', '30','28','373059.3', '29','27','116939.46', '25','19','256119.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003013.0','1018874.0','34', '28','21','65797.71', '27','19','34752.84', '15','6','31044.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091277.0','1044441.0','2', '1','1','2296.23', '1','1','2296.23', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004983.0','1018874.0','2', '2','2','3031.91', '2','1','171.45', '1','1','2860.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093247.0','1044441.0','11', '9','8','24939.16', '9','7','18596.98', '4','3','6342.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004984.0','1018874.0','3', '3','3','6490.11', '3','3','6490.11', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093248.0','1044441.0','32', '28','25','110106.03', '28','23','68008.89', '13','10','42097.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004985.0','1018874.0','6', '5','4','15435.82', '4','3','8514.69', '2','2','6921.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093249.0','1044441.0','2', '2','1','5100.0', '2','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004986.0','1018874.0','1', '1','1','2914.0', '1','1','2914.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093250.0','1044441.0','3', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004987.0','1018874.0','14', '13','8','25428.57', '11','8','25144.47', '8','2','284.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093251.0','1044441.0','128', '104','89','299729.6', '100','76','226994.39', '64','48','72735.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004988.0','1018874.0','24', '21','15','62753.35', '20','13','30066.84', '11','8','32686.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093252.0','1044441.0','21', '20','19','58493.42', '19','15','35011.02', '17','14','23482.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004989.0','1018874.0','4', '4','4','33115.32', '4','4','21238.0', '3','2','11877.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093253.0','1044441.0','145', '123','102','458224.0', '123','98','215614.8', '59','38','242609.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004990.0','1018874.0','1', '1','1','921.39', '1','1','560.0', '1','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093254.0','1044441.0','7', '5','5','26636.81', '5','5','16107.48', '3','2','10529.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002684.0','1018874.0','2', '2','2','10331.58', '2','2','7457.82', '2','2','2873.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090948.0','1044441.0','3', '3','1','5242.05', '3','1','5100.0', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004991.0','1018874.0','1', '1','1','832.48', '1','1','832.48', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093255.0','1044441.0','194', '154','117','440447.47', '144','109','282166.09', '86','47','158281.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002686.0','1018874.0','30', '19','17','106230.35', '18','17','62886.51', '11','8','43343.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090950.0','1044441.0','7', '7','7','14674.59', '7','7','14532.54', '2','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002939.0','1018874.0','125', '106','88','298881.9', '102','83','189150.01', '72','48','109731.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091203.0','1044441.0','69', '61','46','153507.78', '60','40','98996.97', '41','28','54510.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004992.0','1018874.0','92', '81','69','226005.62', '79','69','168737.74', '34','18','57267.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093256.0','1044441.0','34', '27','24','97015.53', '27','24','86253.33', '10','5','10762.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002741.0','1018874.0','3', '3','3','13820.41', '3','3','11475.0', '2','2','2345.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091005.0','1044441.0','1', '1','1','6122.0', '1','1','6122.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004993.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093257.0','1044441.0','6', '4','2','2550.0', '4','2','2550.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004994.0','1018874.0','5', '4','4','16068.91', '4','4','13635.44', '3','2','2433.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093258.0','1044441.0','229', '169','130','672937.15', '157','119','330972.53', '102','68','341964.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004995.0','1018874.0','20', '15','13','43483.32', '13','13','41120.15', '9','4','2363.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093259.0','1044441.0','51', '47','40','196427.94', '46','40','136090.36', '25','14','60337.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004996.0','1018874.0','10', '8','8','78293.65', '8','8','48654.98', '3','3','29638.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093260.0','1044441.0','1', '1','1','1680.29', '1','1','1538.24', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002980.0','1018874.0','60', '46','36','140440.17', '44','32','110573.77', '22','15','29866.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091244.0','1044441.0','47', '40','38','92980.9', '39','36','83356.6', '20','13','9624.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004997.0','1018874.0','12', '10','10','25666.34', '10','10','24979.31', '4','2','687.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093261.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004998.0','1018874.0','4', '3','2','8537.05', '3','2','8537.05', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093262.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004999.0','1018874.0','9', '8','8','27514.72', '8','8','26053.6', '5','4','1461.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093263.0','1044441.0','113', '96','75','350125.39', '95','69','205295.12', '48','25','144830.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005000.0','1018874.0','103', '89','74','241404.31', '87','65','175876.18', '56','46','65528.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093264.0','1044441.0','213', '179','158','896012.16', '173','152','550906.11', '124','88','345106.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005001.0','1018874.0','6', '5','4','11682.65', '4','4','10019.19', '4','1','1663.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093265.0','1044441.0','1', '1','1','25600.0', '1','1','5611.0', '1','1','19989.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005002.0','1018874.0','8', '7','7','30888.37', '7','7','23999.03', '5','3','6889.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093266.0','1044441.0','102', '95','76','212437.64', '90','73','183332.49', '42','23','29105.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005003.0','1018874.0','10', '8','8','41698.94', '8','8','41698.94', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093267.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005004.0','1018874.0','1', '1','1','2738.48', '1','1','2075.99', '1','1','662.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093268.0','1044441.0','2', '2','2','8487.65', '2','2','8345.6', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005005.0','1018874.0','2', '2','1','1275.0', '2','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093269.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005006.0','1018874.0','1', '1','1','1903.7', '1','1','1903.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093270.0','1044441.0','1010', '746','578','3007617.73', '671','521','1308104.27', '493','281','1699513.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005007.0','1018874.0','62', '56','51','103909.06', '56','49','84680.96', '26','13','19228.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093271.0','1044441.0','13', '13','10','37062.79', '13','6','16060.12', '10','7','21002.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005008.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093272.0','1044441.0','10', '9','6','27764.95', '9','6','11504.29', '3','1','16260.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004868.0','1018874.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093132.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005009.0','1018874.0','12', '10','7','35841.51', '10','7','21006.41', '5','5','14835.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093273.0','1044441.0','3', '3','3','10762.65', '3','3','10519.6', '1','1','243.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005010.0','1018874.0','59', '50','42','183625.47', '50','41','126928.46', '30','20','56697.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093274.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002623.0','1018874.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090887.0','1044441.0','3', '1','1','1494.34', '1','1','1275.0', '1','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005011.0','1018874.0','37', '28','21','69495.97', '25','20','51360.9', '11','6','18135.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093275.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002850.0','1018874.0','4', '2','2','7999.46', '2','2','7999.46', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091114.0','1044441.0','4', '3','3','23729.94', '3','3','9201.92', '2','2','14528.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005012.0','1018874.0','17', '17','11','9851.75', '17','8','6050.25', '13','6','3801.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093276.0','1044441.0','1', '1','1','3666.8', '1','1','3524.75', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002662.0','1018874.0','2', '2','1','4053.1', '1','1','1172.0', '2','1','2881.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090926.0','1044441.0','20', '16','13','28925.55', '15','10','25796.62', '6','4','3128.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005013.0','1018874.0','2', '2','2','1762.95', '2','2','1762.95', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093277.0','1044441.0','1', '1','1','950.24', '1','1','950.24', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005014.0','1018874.0','65', '55','45','144509.62', '53','42','119520.42', '30','19','24989.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093278.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002958.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091222.0','1044441.0','986', '728','560','3765087.49', '643','509','1582716.43', '499','355','2182371.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005015.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093279.0','1044441.0','1', '1','1','3405.62', '1','1','1605.26', '1','1','1800.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005016.0','1018874.0','1', '1','1','1713.14', '1','1','1540.0', '1','1','173.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093280.0','1044441.0','13', '11','6','18052.72', '11','6','17773.88', '8','1','278.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005017.0','1018874.0','50', '43','37','134192.71', '37','31','88281.09', '25','19','45911.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093281.0','1044441.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005018.0','1018874.0','19', '18','17','56617.55', '18','17','52594.19', '10','9','4023.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093282.0','1044441.0','92', '83','65','137072.81', '83','58','106126.76', '48','28','30946.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005019.0','1018874.0','3', '3','1','1722.49', '3','1','1275.0', '1','1','447.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093283.0','1044441.0','103', '80','63','189836.69', '72','58','142667.76', '46','28','47168.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005020.0','1018874.0','1', '1','1','2237.66', '1','1','2237.66', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093284.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005021.0','1018874.0','17', '15','10','40346.19', '14','8','24462.34', '8','4','15883.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093285.0','1044441.0','164', '142','126','639693.2', '138','118','301560.52', '90','64','338132.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005022.0','1018874.0','60', '52','45','107166.73', '49','41','71105.96', '32','20','36060.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093286.0','1044441.0','7', '6','4','6434.12', '5','1','817.79', '5','4','5616.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002881.0','1018874.0','5', '5','4','8316.43', '5','4','8316.43', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091145.0','1044441.0','9', '7','6','27979.29', '7','6','14196.78', '6','5','13782.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005023.0','1018874.0','65', '57','44','176409.22', '56','40','109331.08', '33','18','67078.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093287.0','1044441.0','27', '21','19','72049.1', '20','18','39346.36', '11','7','32702.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002709.0','1018874.0','2', '2','2','1786.0', '2','2','1786.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090973.0','1044441.0','18', '11','9','17575.89', '10','9','17521.65', '4','1','54.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005024.0','1018874.0','1', '1','1','1842.84', '1','1','1842.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093288.0','1044441.0','21', '17','13','42481.55', '17','13','26392.56', '8','5','16088.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005025.0','1018874.0','12', '10','8','19409.42', '10','8','16292.35', '4','2','3117.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093289.0','1044441.0','38', '34','27','44425.47', '33','26','40544.6', '13','5','3880.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005026.0','1018874.0','34', '30','25','80519.65', '29','22','46721.84', '19','11','33797.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093290.0','1044441.0','71', '64','57','152711.02', '64','57','134304.3', '32','22','18406.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003024.0','1018874.0','1', '1','1','4780.71', '1','1','4780.71', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091288.0','1044441.0','52', '45','38','117236.01', '45','34','85542.89', '25','22','31693.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005027.0','1018874.0','1', '1','1','2153.48', '1','1','1407.05', '1','1','746.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093291.0','1044441.0','19', '18','14','56670.72', '18','14','48830.63', '9','5','7840.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005028.0','1018874.0','1', '1','1','214.38', '1','1','214.38', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093292.0','1044441.0','1', '1','1','3097.76', '1','1','3097.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005029.0','1018874.0','8', '8','7','40247.26', '8','7','24256.0', '7','5','15991.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093293.0','1044441.0','30', '25','20','54226.56', '24','17','46601.14', '11','8','7625.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005030.0','1018874.0','3', '3','3','9652.48', '3','3','9652.48', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093294.0','1044441.0','145', '129','100','327829.54', '126','93','220025.55', '60','38','107803.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005031.0','1018874.0','37', '33','25','57789.07', '31','21','52787.74', '13','9','5001.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093295.0','1044441.0','5', '5','3','3427.57', '5','3','3427.57', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002658.0','1018874.0','110', '80','68','242303.17', '77','66','222541.23', '44','26','19761.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090922.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005032.0','1018874.0','69', '62','53','169356.77', '59','51','128471.78', '29','15','40884.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093296.0','1044441.0','6', '6','4','11139.24', '6','4','10558.51', '4','2','580.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002935.0','1018874.0','38', '28','23','208708.99', '28','22','106249.6', '22','15','102459.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091199.0','1044441.0','3', '2','1','6640.0', '2','1','6640.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005033.0','1018874.0','3', '3','3','3651.13', '3','3','2542.44', '2','2','1108.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093297.0','1044441.0','32', '29','21','77485.13', '27','20','34964.38', '17','10','42520.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002663.0','1018874.0','1', '1','1','2249.59', '1','1','1442.0', '1','1','807.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090927.0','1044441.0','31', '29','26','69771.4', '27','24','59619.83', '15','12','10151.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002937.0','1018874.0','2', '1','1','1801.4', '1','1','1801.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091201.0','1044441.0','1', '1','1','2859.24', '1','1','2859.24', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002990.0','1018874.0','1', '1','1','10834.28', '1','1','5100.0', '1','1','5734.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091254.0','1044441.0','8', '8','8','25164.23', '8','7','21813.51', '6','5','3350.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005034.0','1018874.0','4', '4','4','21163.06', '4','4','20743.96', '1','1','419.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093298.0','1044441.0','6', '6','5','40674.77', '6','5','24733.54', '3','3','15941.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005035.0','1018874.0','25', '23','19','58846.16', '21','19','46255.09', '12','4','12591.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093299.0','1044441.0','1', '1','1','4911.04', '1','1','4911.04', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005036.0','1018874.0','4', '4','4','11436.34', '4','4','11217.0', '2','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093300.0','1044441.0','13', '11','7','27704.08', '11','6','25121.97', '6','2','2582.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005037.0','1018874.0','4', '4','3','5430.85', '4','3','5288.8', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093301.0','1044441.0','12', '10','7','11237.98', '10','6','8245.97', '7','3','2992.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005038.0','1018874.0','2', '2','1','4688.73', '2','1','4486.73', '2','1','202.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093302.0','1044441.0','12', '11','6','19807.23', '10','6','18135.33', '5','2','1671.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005039.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093303.0','1044441.0','200', '150','109','520653.18', '135','92','232214.63', '83','61','288438.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005040.0','1018874.0','196', '133','120','935210.45', '130','113','526642.36', '73','51','408568.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093304.0','1044441.0','2', '2','2','4279.34', '2','2','4060.0', '1','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005041.0','1018874.0','28', '23','20','62190.85', '22','19','57918.39', '13','5','4272.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093305.0','1044441.0','4', '4','4','8349.98', '4','4','8349.98', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005042.0','1018874.0','117', '86','68','331492.84', '75','57','158151.74', '65','42','173341.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093306.0','1044441.0','4', '3','3','6452.28', '2','2','4347.8', '2','1','2104.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002844.0','1018874.0','8', '8','7','48040.23', '8','7','20910.64', '6','5','27129.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091108.0','1044441.0','17', '14','10','26137.98', '11','10','24317.4', '7','3','1820.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005043.0','1018874.0','12', '10','9','32072.79', '10','8','31130.67', '5','3','942.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093307.0','1044441.0','8', '8','7','15751.97', '8','7','13043.86', '4','2','2708.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005044.0','1018874.0','2', '2','2','4393.53', '2','1','1976.67', '1','1','2416.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093308.0','1044441.0','6', '4','4','9520.45', '3','3','8095.5', '3','3','1424.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005045.0','1018874.0','1', '1','1','1775.0', '1','1','1275.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093309.0','1044441.0','25', '19','17','58139.11', '19','14','44392.07', '11','6','13747.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002848.0','1018874.0','2', '2','2','9662.18', '2','1','4537.26', '2','2','5124.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091112.0','1044441.0','5', '4','4','10745.46', '4','4','10236.88', '2','1','508.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005046.0','1018874.0','2', '2','2','3840.54', '2','2','3840.54', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093310.0','1044441.0','54', '51','36','132117.96', '49','35','106583.71', '28','18','25534.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002583.0','1018874.0','29', '24','16','15346.59', '24','16','14985.2', '8','2','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090847.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005047.0','1018874.0','15', '12','10','23141.99', '12','9','22492.89', '5','3','649.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093311.0','1044441.0','4', '4','4','16204.25', '4','4','14510.28', '3','2','1693.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002936.0','1018874.0','1', '1','1','254.88', '1','1','254.88', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091200.0','1044441.0','1', '1','1','5164.13', '1','1','1230.0', '1','1','3934.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002948.0','1018874.0','114', '102','87','307340.4', '97','76','199527.26', '81','63','107813.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091212.0','1044441.0','17', '12','8','16360.5', '11','7','12671.6', '9','4','3688.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005048.0','1018874.0','2', '2','2','5697.07', '2','2','5697.07', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093312.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005049.0','1018874.0','7', '6','5','20732.05', '6','4','10037.42', '5','4','10694.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093313.0','1044441.0','1', '1','1','511.0', '1','1','511.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005050.0','1018874.0','119', '91','83','402897.68', '87','81','283418.16', '52','26','119479.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093314.0','1044441.0','481', '395','324','1416127.42', '378','286','706160.17', '236','167','709967.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005051.0','1018874.0','110', '95','77','191581.02', '94','66','114925.32', '60','37','76655.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093315.0','1044441.0','105', '97','89','232079.84', '95','86','186954.76', '42','23','45125.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005052.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093316.0','1044441.0','164', '141','105','395558.27', '137','92','248987.25', '81','46','146571.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005053.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093317.0','1044441.0','12', '11','9','29208.45', '11','8','22620.24', '7','4','6588.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005054.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093318.0','1044441.0','30', '23','21','104681.22', '22','21','88732.44', '17','12','15948.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005055.0','1018874.0','21', '17','14','34592.91', '16','14','34592.91', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093319.0','1044441.0','4', '3','3','3932.11', '3','2','3764.06', '2','2','168.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005056.0','1018874.0','4', '3','2','2449.05', '2','2','1617.84', '3','1','831.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093320.0','1044441.0','1', '1','1','476.4', '1','1','476.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005057.0','1018874.0','149', '139','127','1069985.11', '136','122','407340.57', '104','76','662644.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093321.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002986.0','1018874.0','207', '162','141','1062613.12', '151','133','541626.48', '96','65','520986.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091250.0','1044441.0','78', '64','55','107793.61', '61','53','85067.05', '33','18','22726.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005058.0','1018874.0','53', '42','35','135276.26', '41','35','112996.63', '20','7','22279.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093322.0','1044441.0','20', '17','13','35960.76', '16','11','28912.29', '8','2','7048.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005059.0','1018874.0','6', '6','5','14995.6', '6','5','14135.85', '3','1','859.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093323.0','1044441.0','5', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005060.0','1018874.0','8', '7','7','29810.83', '7','7','22169.47', '5','5','7641.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093324.0','1044441.0','3', '2','2','5921.85', '2','2','5921.85', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005061.0','1018874.0','1', '1','1','853.56', '1','1','853.56', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093325.0','1044441.0','3', '3','2','934.78', '3','2','573.39', '2','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002714.0','1018874.0','8', '7','7','35915.36', '7','6','20839.61', '5','5','15075.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090978.0','1044441.0','1', '1','1','5500.0', '1','0','0.0', '1','1','5500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002874.0','1018874.0','41', '36','26','68329.4', '35','25','51160.06', '21','11','17169.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091138.0','1044441.0','16', '10','8','64053.55', '8','8','24043.11', '7','4','40010.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005062.0','1018874.0','1', '1','1','1494.34', '1','1','1275.0', '1','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093326.0','1044441.0','2', '2','1','778.75', '2','1','778.75', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005063.0','1018874.0','13', '11','6','17400.98', '10','5','12636.02', '8','3','4764.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093327.0','1044441.0','5', '5','3','7044.98', '5','3','3272.01', '3','2','3772.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005064.0','1018874.0','17', '16','12','33110.55', '14','12','31772.44', '6','3','1338.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093328.0','1044441.0','6', '6','5','23016.75', '6','5','20029.2', '4','4','2987.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002885.0','1018874.0','11', '10','9','16266.86', '10','9','13137.0', '5','3','3129.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091149.0','1044441.0','14', '11','10','31021.59', '11','10','27476.02', '5','2','3545.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005065.0','1018874.0','390', '330','297','1362562.74', '316','273','623668.12', '228','155','738894.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093329.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005066.0','1018874.0','1', '1','1','1775.78', '1','1','1775.78', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093330.0','1044441.0','5', '4','3','14901.62', '4','3','12295.08', '3','1','2606.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005067.0','1018874.0','5', '5','4','17807.67', '4','3','12762.99', '4','3','5044.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093331.0','1044441.0','1', '1','1','19906.56', '1','1','5890.0', '1','1','14016.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005068.0','1018874.0','2', '2','2','7921.97', '2','2','7006.6', '1','1','915.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093332.0','1044441.0','23', '22','19','64795.71', '21','18','47675.0', '11','8','17120.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005069.0','1018874.0','79', '65','58','396776.54', '61','55','214004.92', '41','26','182771.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093333.0','1044441.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005070.0','1018874.0','6', '3','2','7900.98', '3','2','6102.0', '3','2','1798.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093334.0','1044441.0','1', '1','1','1022.0', '1','1','1022.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002987.0','1018874.0','5', '3','2','2758.14', '3','1','2550.0', '2','1','208.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091251.0','1044441.0','37', '32','28','74869.41', '32','28','58049.59', '22','11','16819.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005071.0','1018874.0','14', '9','9','26672.75', '9','9','20919.54', '5','3','5753.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093335.0','1044441.0','81', '69','55','180965.76', '66','52','105000.65', '43','25','75965.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003041.0','1018874.0','1', '1','1','6542.0', '1','1','6542.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091305.0','1044441.0','145', '114','92','201125.37', '107','92','181325.89', '54','24','19799.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005072.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093336.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005073.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093337.0','1044441.0','19', '17','14','39536.07', '16','13','29001.36', '8','5','10534.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005074.0','1018874.0','5', '5','4','9686.82', '5','4','9686.82', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093338.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005075.0','1018874.0','4', '2','2','2755.83', '2','2','1910.16', '1','1','845.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093339.0','1044441.0','19', '19','17','74312.28', '19','17','58799.3', '7','5','15512.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005076.0','1018874.0','4', '4','3','26198.66', '4','3','5281.52', '1','1','20917.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093340.0','1044441.0','31', '23','20','61184.11', '23','19','47835.36', '8','4','13348.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005077.0','1018874.0','1', '1','1','511.0', '1','1','511.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093341.0','1044441.0','22', '19','17','42834.63', '18','16','40968.98', '11','9','1865.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005078.0','1018874.0','88', '81','70','324438.68', '81','67','231801.11', '38','23','92637.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093342.0','1044441.0','1', '1','1','1399.82', '1','1','1399.82', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005079.0','1018874.0','149', '121','102','515100.18', '109','98','207932.44', '79','53','307167.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093343.0','1044441.0','38', '30','29','121231.72', '30','29','86104.84', '11','8','35126.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002558.0','1018874.0','3', '3','3','3767.75', '3','3','3731.23', '2','1','36.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090822.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002816.0','1018874.0','217', '190','166','1114537.05', '182','156','598116.37', '126','86','516420.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091080.0','1044441.0','2', '2','1','924.0', '2','1','924.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005080.0','1018874.0','11', '9','9','56314.85', '9','8','30367.15', '6','6','25947.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093344.0','1044441.0','5', '4','4','9836.11', '4','4','9836.11', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005081.0','1018874.0','1', '1','1','1208.0', '1','1','1208.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093345.0','1044441.0','3', '3','2','7371.39', '3','2','7010.0', '3','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005082.0','1018874.0','20', '18','15','61602.89', '18','14','39353.72', '9','8','22249.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093346.0','1044441.0','33', '30','20','52004.34', '28','20','51602.55', '13','1','401.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005083.0','1018874.0','4', '4','1','1251.08', '4','1','1251.08', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093347.0','1044441.0','3', '3','3','10003.64', '3','3','6921.06', '1','1','3082.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003045.0','1018874.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091309.0','1044441.0','87', '78','70','201060.81', '75','67','170371.72', '29','20','30689.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002989.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091253.0','1044441.0','43', '36','27','43262.49', '33','23','37082.47', '17','8','6180.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005084.0','1018874.0','13', '11','10','16769.8', '11','10','14852.26', '5','3','1917.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093348.0','1044441.0','3', '3','3','3963.23', '3','3','3963.23', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005085.0','1018874.0','2', '1','1','10584.58', '1','1','1230.0', '1','1','9354.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093349.0','1044441.0','27', '22','19','53234.18', '22','19','50492.14', '11','3','2742.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005086.0','1018874.0','3', '3','1','921.26', '3','0','0.0', '3','1','921.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093350.0','1044441.0','1', '1','1','5100.0', '1','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005087.0','1018874.0','1', '1','1','3519.42', '1','1','3300.08', '1','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093351.0','1044441.0','24', '23','20','66479.42', '22','20','57510.41', '16','10','8969.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005088.0','1018874.0','7', '7','7','21213.94', '7','7','20469.5', '3','1','744.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093352.0','1044441.0','3', '3','3','51715.75', '3','3','23966.65', '3','3','27749.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002584.0','1018874.0','1', '1','1','6419.88', '1','1','5508.0', '1','1','911.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090848.0','1044441.0','92', '84','65','230175.98', '82','61','188716.62', '39','22','41459.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005089.0','1018874.0','3', '3','3','11743.84', '3','3','11743.84', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093353.0','1044441.0','1', '1','1','1441.56', '1','1','416.0', '1','1','1025.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002750.0','1018874.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091014.0','1044441.0','4', '4','3','11352.36', '4','3','11078.1', '2','1','274.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005090.0','1018874.0','3', '3','2','6171.21', '3','2','4455.02', '1','1','1716.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093354.0','1044441.0','2', '2','2','3839.53', '2','2','2550.0', '1','1','1289.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005091.0','1018874.0','18', '15','12','26825.28', '12','8','17381.44', '8','5','9443.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093355.0','1044441.0','2', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002825.0','1018874.0','44', '39','36','78835.02', '38','36','71422.49', '20','10','7412.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091089.0','1044441.0','6', '5','3','6530.95', '5','3','6530.95', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005092.0','1018874.0','23', '19','16','39354.03', '18','16','35544.27', '10','5','3809.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093356.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002984.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091248.0','1044441.0','2', '2','2','7653.51', '2','2','4301.79', '2','2','3351.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005093.0','1018874.0','13', '11','11','64127.27', '11','11','36959.67', '8','8','27167.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093357.0','1044441.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005094.0','1018874.0','5', '5','4','14943.64', '5','4','14943.64', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093358.0','1044441.0','17', '16','15','71594.15', '16','14','50788.53', '7','5','20805.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005095.0','1018874.0','1', '1','1','3770.58', '1','1','3770.58', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093359.0','1044441.0','31', '30','22','45966.47', '30','21','40039.01', '13','6','5927.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005096.0','1018874.0','218', '184','130','431757.67', '174','112','300745.16', '97','61','131012.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093360.0','1044441.0','5', '5','4','31243.77', '5','4','15047.0', '1','1','16196.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002964.0','1018874.0','21', '19','16','48205.14', '18','15','42188.16', '9','6','6016.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091228.0','1044441.0','3', '1','1','948.74', '1','1','948.74', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005097.0','1018874.0','14', '12','10','31761.65', '12','10','30394.16', '4','2','1367.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093361.0','1044441.0','6', '6','5','18685.53', '4','4','10797.82', '6','5','7887.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003046.0','1018874.0','10', '7','6','31050.17', '6','5','18094.0', '4','2','12956.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091310.0','1044441.0','20', '20','18','99641.18', '20','16','76075.18', '12','10','23566.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005098.0','1018874.0','25', '24','19','37478.93', '23','18','35256.72', '13','8','2222.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093362.0','1044441.0','2', '1','1','301.4', '1','1','301.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005099.0','1018874.0','30', '28','25','135835.52', '28','25','105047.05', '15','11','30788.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093363.0','1044441.0','9', '7','5','15896.66', '7','5','12689.29', '4','1','3207.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005100.0','1018874.0','4', '4','3','5701.14', '4','3','5701.14', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093364.0','1044441.0','5', '4','3','4165.12', '3','3','4165.12', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005101.0','1018874.0','2', '2','2','6401.83', '2','2','6041.22', '2','1','360.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093365.0','1044441.0','51', '42','39','124989.97', '41','38','76031.56', '23','13','48958.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004868.0','1018874.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093132.0','1044441.0','43', '39','35','259808.07', '38','35','125160.62', '19','16','134647.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005102.0','1018874.0','2', '2','2','4205.24', '2','2','3843.85', '1','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093366.0','1044441.0','5', '5','3','2551.21', '5','3','1743.0', '2','2','808.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005103.0','1018874.0','9', '4','1','4718.0', '4','1','4718.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093367.0','1044441.0','16', '15','12','28611.34', '14','12','26856.58', '7','3','1754.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002698.0','1018874.0','14', '13','12','96084.18', '13','12','49207.3', '9','8','46876.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090962.0','1044441.0','1', '1','1','4131.21', '1','1','2495.52', '1','1','1635.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005104.0','1018874.0','13', '12','9','59834.32', '11','9','36365.93', '5','4','23468.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093368.0','1044441.0','10', '6','6','30676.28', '6','6','25696.17', '5','5','4980.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2004940.0','1018874.0','6', '6','4','5204.8', '6','4','5042.55', '3','1','162.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093204.0','1044441.0','2', '2','2','3611.46', '2','2','2765.79', '1','1','845.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005105.0','1018874.0','5', '5','4','13983.69', '5','4','13455.94', '2','1','527.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093369.0','1044441.0','2', '2','2','9186.32', '2','2','9145.92', '2','1','40.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005106.0','1018874.0','3', '1','1','17990.81', '1','1','2230.0', '1','1','15760.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093370.0','1044441.0','2', '2','1','4611.39', '2','1','2550.0', '2','1','2061.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005107.0','1018874.0','20', '19','15','47924.79', '18','12','31409.51', '13','7','16515.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093371.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005108.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093372.0','1044441.0','7', '5','4','6569.52', '5','4','4860.12', '1','1','1709.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005109.0','1018874.0','2', '2','1','2014.0', '2','1','2014.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093373.0','1044441.0','54', '42','34','131817.11', '40','31','75552.18', '26','17','56264.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002812.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091076.0','1044441.0','37', '29','22','77584.3', '27','21','47963.45', '13','7','29620.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002736.0','1018874.0','9', '9','7','14930.54', '9','7','14328.81', '5','2','601.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091000.0','1044441.0','1', '1','1','287.12', '1','1','287.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002605.0','1018874.0','80', '66','51','181682.16', '62','50','129602.29', '34','22','52079.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090869.0','1044441.0','4', '4','4','6557.4', '4','3','6196.01', '3','2','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002562.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090826.0','1044441.0','60', '34','27','194073.1', '32','26','100242.19', '16','10','93830.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005110.0','1018874.0','117', '102','88','338357.21', '98','83','258388.51', '56','43','79968.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093374.0','1044441.0','25', '20','12','40759.14', '20','12','40073.01', '7','1','686.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005111.0','1018874.0','4', '2','1','2068.23', '1','1','2068.23', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093375.0','1044441.0','48', '42','37','122218.52', '41','34','86647.32', '30','23','35571.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005112.0','1018874.0','7', '6','3','8032.79', '5','3','8032.79', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093376.0','1044441.0','12', '11','8','16550.15', '10','6','10227.84', '11','6','6322.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005113.0','1018874.0','5', '5','5','13773.95', '5','5','13111.46', '1','1','662.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093377.0','1044441.0','139', '124','101','347934.34', '118','81','208440.21', '68','49','139494.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005114.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093378.0','1044441.0','1', '1','1','5971.6', '1','1','5471.6', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002586.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2090850.0','1044441.0','1', '1','1','2628.38', '1','1','2628.38', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003019.0','1018874.0','3', '3','3','12878.55', '3','2','7650.0', '3','2','5228.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091283.0','1044441.0','25', '21','14','81848.29', '20','12','45380.65', '13','10','36467.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005115.0','1018874.0','1', '1','1','1536.78', '1','1','1275.0', '1','1','261.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093379.0','1044441.0','9', '7','6','22648.77', '7','6','19966.18', '3','1','2682.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003000.0','1018874.0','14', '13','12','63866.48', '11','10','36762.59', '9','8','27103.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091264.0','1044441.0','5', '5','4','10546.24', '5','3','9757.77', '2','2','788.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005116.0','1018874.0','8', '4','3','4919.54', '4','3','4919.54', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093380.0','1044441.0','9', '8','4','8616.12', '5','4','8474.07', '5','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005117.0','1018874.0','1', '1','1','5242.05', '1','1','5100.0', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093381.0','1044441.0','83', '71','64','603818.19', '70','62','270216.38', '46','42','333601.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005118.0','1018874.0','18', '15','14','48040.99', '15','13','45124.51', '9','4','2916.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093382.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005119.0','1018874.0','6', '6','3','14093.58', '4','3','4709.1', '4','1','9384.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093383.0','1044441.0','6', '6','3','3003.49', '5','3','2784.15', '3','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005120.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093384.0','1044441.0','40', '36','26','32298.24', '35','25','30868.42', '14','5','1429.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005121.0','1018874.0','3', '3','2','942.36', '3','2','942.36', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093385.0','1044441.0','3', '3','3','12218.7', '3','2','3792.69', '3','2','8426.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005122.0','1018874.0','69', '58','52','140079.84', '56','50','129158.03', '26','13','10921.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093386.0','1044441.0','174', '148','124','462705.68', '142','117','335650.38', '95','64','127055.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005123.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093387.0','1044441.0','47', '44','39','208989.01', '44','38','159145.48', '22','15','49843.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005124.0','1018874.0','279', '224','179','886147.21', '210','151','401245.11', '157','105','484902.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093388.0','1044441.0','2', '2','2','11572.3', '2','2','9939.82', '2','1','1632.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005125.0','1018874.0','25', '24','18','58085.5', '23','17','46949.7', '13','9','11135.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093389.0','1044441.0','136', '131','116','280242.21', '128','111','231016.56', '76','49','49225.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005126.0','1018874.0','2', '2','1','369.6', '2','1','369.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093390.0','1044441.0','1', '1','1','1200.0', '1','0','0.0', '1','1','1200.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005127.0','1018874.0','23', '20','17','67272.97', '18','16','52572.56', '13','8','14700.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093391.0','1044441.0','15', '13','13','109664.88', '12','12','54228.47', '10','8','55436.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005128.0','1018874.0','44', '39','35','198656.7', '38','34','106320.28', '19','13','92336.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093392.0','1044441.0','3', '2','2','6297.09', '2','2','6155.04', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005129.0','1018874.0','4', '4','3','13641.19', '4','3','12874.0', '1','1','767.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093393.0','1044441.0','70', '65','49','100912.92', '65','45','92041.02', '29','17','8871.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003023.0','1018874.0','1', '1','1','4299.6', '1','1','4299.6', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091287.0','1044441.0','1', '1','1','2818.11', '1','1','2582.3', '1','1','235.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005130.0','1018874.0','146', '115','99','679969.83', '112','95','351566.18', '66','38','328403.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093394.0','1044441.0','23', '18','17','112067.52', '17','16','69559.56', '14','11','42507.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005131.0','1018874.0','3', '3','3','8326.66', '3','3','7576.66', '1','1','750.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093395.0','1044441.0','62', '60','57','297583.78', '60','57','223862.64', '41','23','73721.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005132.0','1018874.0','27', '23','21','83895.9', '22','21','80846.39', '12','7','3049.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093396.0','1044441.0','58', '51','45','146308.88', '51','45','127271.98', '29','13','19036.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005133.0','1018874.0','1', '1','1','4697.16', '1','1','3034.78', '1','1','1662.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093397.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005134.0','1018874.0','21', '19','15','35689.58', '19','15','33519.54', '12','7','2170.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093398.0','1044441.0','24', '23','15','48975.35', '21','15','32737.39', '17','12','16237.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005135.0','1018874.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093399.0','1044441.0','1', '1','1','8210.78', '1','1','5100.0', '1','1','3110.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005136.0','1018874.0','6', '6','5','31075.61', '6','5','17475.19', '2','1','13600.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093400.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005137.0','1018874.0','12', '10','9','16840.13', '10','9','16539.03', '3','1','301.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093401.0','1044441.0','118', '103','82','168284.82', '100','68','131600.95', '56','36','36683.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003050.0','1018874.0','5', '5','4','10996.97', '5','4','10996.97', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091314.0','1044441.0','4', '4','4','4224.45', '4','4','3863.06', '2','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005138.0','1018874.0','1', '1','1','3716.83', '1','1','1442.0', '1','1','2274.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093402.0','1044441.0','49', '48','35','80051.64', '45','33','63795.52', '27','12','16256.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005139.0','1018874.0','9', '9','7','10082.26', '9','7','8555.14', '4','2','1527.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093403.0','1044441.0','5', '4','2','1317.12', '3','1','1109.12', '3','1','208.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005021.0','1018874.0','8', '7','5','9607.96', '6','5','9323.86', '4','2','284.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093285.0','1044441.0','1', '1','1','3158.33', '1','1','2798.0', '1','1','360.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005140.0','1018874.0','5', '5','4','7310.37', '5','4','6948.98', '2','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093404.0','1044441.0','5', '4','4','12586.8', '4','4','10408.85', '3','3','2177.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005141.0','1018874.0','1', '1','1','3832.39', '1','1','3832.39', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093405.0','1044441.0','3', '3','3','13695.4', '3','3','7619.21', '1','1','6076.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005142.0','1018874.0','3', '3','3','10611.05', '3','3','10611.05', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093406.0','1044441.0','1', '1','1','1576.1', '1','1','1275.0', '1','1','301.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002977.0','1018874.0','1', '1','1','851.0', '1','1','851.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091241.0','1044441.0','1', '1','1','7092.1', '1','1','6448.0', '1','1','644.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005143.0','1018874.0','5', '4','4','9221.63', '4','4','8246.27', '3','3','975.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093407.0','1044441.0','56', '51','41','138850.76', '49','37','102854.26', '25','19','35996.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002972.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091236.0','1044441.0','1', '1','1','5874.0', '1','1','5874.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002946.0','1018874.0','9', '9','4','28770.49', '9','4','23164.03', '5','3','5606.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091210.0','1044441.0','1', '1','1','6544.18', '1','1','5100.0', '1','1','1444.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005144.0','1018874.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093408.0','1044441.0','2', '2','2','4053.71', '2','2','4053.71', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005145.0','1018874.0','22', '16','11','23042.6', '15','10','21638.34', '7','5','1404.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093409.0','1044441.0','3', '3','1','6018.0', '2','1','6018.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005146.0','1018874.0','12', '9','5','6315.96', '8','4','5954.57', '3','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093410.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005147.0','1018874.0','1', '1','1','1208.0', '1','1','1208.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093411.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003036.0','1018874.0','1', '1','1','1036.22', '1','1','1036.22', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091300.0','1044441.0','5', '4','2','7492.4', '4','2','7492.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005148.0','1018874.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093412.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003039.0','1018874.0','18', '16','9','22850.94', '16','8','20204.28', '9','3','2646.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091303.0','1044441.0','4', '4','4','10137.48', '4','4','9556.75', '4','2','580.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005149.0','1018874.0','4', '3','1','4039.72', '3','1','4039.72', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093413.0','1044441.0','8', '6','6','40519.4', '6','5','17996.1', '5','4','22523.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005150.0','1018874.0','12', '11','10','27573.54', '11','10','26992.81', '5','3','580.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093414.0','1044441.0','9', '9','9','47933.63', '9','5','8108.35', '7','6','39825.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005151.0','1018874.0','4', '4','2','6302.08', '3','2','6302.08', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093415.0','1044441.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005152.0','1018874.0','2', '2','2','5645.14', '2','2','5503.09', '2','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093416.0','1044441.0','1', '1','1','1303.26', '1','1','1303.26', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005153.0','1018874.0','20', '18','17','93106.51', '18','15','50619.85', '9','8','42486.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093417.0','1044441.0','8', '8','8','15055.67', '8','7','13746.11', '5','5','1309.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005154.0','1018874.0','76', '71','57','119082.87', '71','54','101281.38', '25','13','17801.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093418.0','1044441.0','1', '1','1','2386.19', '1','1','2386.19', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005155.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093419.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002979.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091243.0','1044441.0','1', '1','1','1286.0', '1','1','1286.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005156.0','1018874.0','2', '2','2','6298.68', '2','2','6298.68', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093420.0','1044441.0','8', '8','8','36740.55', '8','8','26755.11', '7','2','9985.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005157.0','1018874.0','26', '24','20','36101.75', '23','19','32345.45', '13','11','3756.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093421.0','1044441.0','1', '1','1','2585.13', '1','1','1611.87', '1','1','973.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005158.0','1018874.0','1', '1','1','888.0', '1','1','888.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093422.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005159.0','1018874.0','2', '2','2','3825.0', '2','2','3825.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093423.0','1044441.0','16', '15','12','34786.21', '13','12','27350.52', '8','6','7435.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005160.0','1018874.0','114', '92','50','138496.58', '89','44','110505.38', '38','14','27991.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093424.0','1044441.0','1', '1','1','3404.96', '1','1','3404.96', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005161.0','1018874.0','4', '3','1','2713.41', '3','1','2713.41', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093425.0','1044441.0','1', '1','1','4186.81', '1','1','2509.71', '1','1','1677.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005162.0','1018874.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093426.0','1044441.0','8', '7','5','13451.49', '7','5','12460.42', '1','1','991.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005163.0','1018874.0','34', '26','21','39625.78', '25','21','36789.45', '11','6','2836.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093427.0','1044441.0','5', '4','1','2609.23', '4','1','2609.23', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005164.0','1018874.0','1', '1','1','4515.13', '1','1','3038.94', '1','1','1476.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093428.0','1044441.0','2', '2','2','4197.76', '2','1','1117.97', '2','2','3079.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005165.0','1018874.0','1', '1','1','2575.29', '1','1','2575.29', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093429.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002973.0','1018874.0','3', '3','2','3881.67', '3','2','3881.67', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091237.0','1044441.0','24', '19','16','68142.66', '19','16','45890.79', '11','8','22251.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005166.0','1018874.0','7', '6','4','7627.38', '4','4','7364.44', '4','1','262.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093430.0','1044441.0','1', '1','1','219.34', '1','0','0.0', '1','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005167.0','1018874.0','1', '1','1','275.1', '1','1','275.1', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093431.0','1044441.0','22', '21','18','33208.27', '20','17','30413.63', '11','7','2794.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005168.0','1018874.0','1', '1','1','464.64', '1','1','464.64', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093432.0','1044441.0','6', '6','2','1922.0', '6','2','1922.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005169.0','1018874.0','11', '9','7','16731.5', '9','7','15245.68', '6','3','1485.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093433.0','1044441.0','240', '233','201','447611.49', '233','199','404795.03', '115','65','42816.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005170.0','1018874.0','7', '5','3','10728.04', '4','3','7822.71', '2','1','2905.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093434.0','1044441.0','2', '2','1','183.0', '1','1','183.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005171.0','1018874.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093435.0','1044441.0','1', '1','1','3916.52', '1','1','2409.41', '1','1','1507.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005172.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093436.0','1044441.0','10', '10','10','18129.15', '9','9','17050.0', '6','4','1079.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002820.0','1018874.0','4', '4','1','387.0', '4','1','387.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091084.0','1044441.0','35', '34','24','113998.27', '33','23','66639.41', '17','9','47358.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005173.0','1018874.0','29', '27','24','66612.48', '27','24','66612.48', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093437.0','1044441.0','1', '1','1','254.59', '1','1','112.54', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005174.0','1018874.0','5', '4','3','5779.2', '4','3','5430.77', '1','1','348.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093438.0','1044441.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005175.0','1018874.0','9', '6','6','15199.57', '6','6','13794.82', '2','1','1404.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093439.0','1044441.0','7', '7','7','19705.34', '7','7','19703.32', '2','1','2.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005176.0','1018874.0','1', '1','1','2951.34', '1','1','2951.34', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093440.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005177.0','1018874.0','2', '1','1','2044.41', '1','1','2044.41', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093441.0','1044441.0','7', '7','7','8823.33', '7','7','8544.79', '2','1','278.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005178.0','1018874.0','2', '1','1','5874.0', '1','1','5874.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093442.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005179.0','1018874.0','1', '1','1','5756.56', '1','1','5756.56', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093443.0','1044441.0','13', '10','6','24307.07', '10','5','19140.13', '4','3','5166.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005180.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093444.0','1044441.0','8', '7','6','14674.08', '7','6','14168.6', '4','2','505.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005181.0','1018874.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093445.0','1044441.0','2', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005182.0','1018874.0','6', '1','1','750.0', '0','0','0.0', '1','1','750.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093446.0','1044441.0','1', '1','1','6632.64', '1','1','6018.0', '1','1','614.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003038.0','1018874.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091302.0','1044441.0','2', '1','1','2174.34', '1','1','2174.34', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005183.0','1018874.0','36', '35','30','55016.94', '35','26','46019.98', '18','14','8996.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093447.0','1044441.0','21', '16','8','23095.12', '14','6','9774.79', '11','5','13320.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005184.0','1018874.0','46', '43','27','134341.1', '41','27','81494.3', '27','11','52846.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093448.0','1044441.0','3', '2','1','2039.93', '2','1','2039.93', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003017.0','1018874.0','53', '48','39','113045.65', '47','39','103105.68', '22','14','9939.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091281.0','1044441.0','2', '2','2','625.06', '2','2','625.06', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005185.0','1018874.0','8', '8','7','12655.6', '8','7','11997.58', '7','3','658.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093449.0','1044441.0','5', '4','3','7209.14', '4','2','4196.63', '3','3','3012.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003001.0','1018874.0','13', '11','7','9045.11', '11','7','8541.67', '4','2','503.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091265.0','1044441.0','12', '9','8','54544.4', '9','8','45181.34', '2','1','9363.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005186.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093450.0','1044441.0','8', '8','5','13999.44', '8','5','13746.3', '3','1','253.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005187.0','1018874.0','1', '1','1','3723.12', '1','1','2319.07', '1','1','1404.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093451.0','1044441.0','26', '20','17','76273.6', '19','17','57056.16', '9','5','19217.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005188.0','1018874.0','1', '1','1','488.1', '1','1','488.1', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093452.0','1044441.0','1', '1','1','1774.21', '1','1','1260.11', '1','1','514.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005189.0','1018874.0','31', '26','24','70365.15', '26','22','60134.38', '13','9','10230.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093453.0','1044441.0','2', '1','1','4555.44', '1','1','4555.44', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005190.0','1018874.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093454.0','1044441.0','3', '3','1','575.54', '3','1','356.2', '2','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005191.0','1018874.0','103', '87','62','306302.02', '84','61','156111.53', '41','21','150190.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093455.0','1044441.0','62', '55','32','78751.83', '50','26','39979.36', '37','18','38772.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005192.0','1018874.0','123', '117','82','178205.28', '112','78','131613.24', '64','31','46592.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093456.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005193.0','1018874.0','2', '1','1','2477.33', '1','1','2477.33', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093457.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005194.0','1018874.0','13', '13','11','26055.36', '13','11','18307.47', '6','4','7747.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093458.0','1044441.0','14', '13','11','34529.3', '13','10','30067.79', '6','3','4461.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005195.0','1018874.0','1', '1','1','6344.88', '1','1','5100.0', '1','1','1244.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093459.0','1044441.0','28', '21','20','82490.86', '20','20','54680.98', '15','8','27809.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005196.0','1018874.0','7', '6','3','1578.9', '5','2','1359.56', '3','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093460.0','1044441.0','2', '2','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005197.0','1018874.0','1', '1','1','2676.45', '1','1','2676.45', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093461.0','1044441.0','1', '1','1','4911.75', '1','1','4911.75', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005198.0','1018874.0','31', '30','19','68173.85', '29','16','50259.16', '17','8','17914.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093462.0','1044441.0','2', '2','2','9632.24', '2','2','6142.52', '1','1','3489.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005199.0','1018874.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093463.0','1044441.0','28', '27','19','57960.36', '27','18','43982.68', '11','6','13977.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002959.0','1018874.0','3', '3','3','9886.24', '3','3','9119.05', '2','1','767.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091223.0','1044441.0','2', '2','1','3825.0', '2','1','3825.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003018.0','1018874.0','154', '138','118','322190.64', '135','116','289581.45', '75','49','32609.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091282.0','1044441.0','1', '1','1','3719.34', '1','1','3500.0', '1','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005200.0','1018874.0','20', '18','16','43635.35', '17','10','30916.22', '11','9','12719.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093464.0','1044441.0','1', '1','1','1623.26', '1','0','0.0', '1','1','1623.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005201.0','1018874.0','3', '3','2','7068.23', '2','2','6138.77', '2','1','929.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093465.0','1044441.0','17', '15','11','40000.44', '15','11','32627.33', '8','6','7373.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005202.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093466.0','1044441.0','4', '3','3','15291.0', '3','3','14924.38', '2','1','366.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005203.0','1018874.0','38', '33','26','58943.59', '33','21','34759.89', '23','14','24183.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093467.0','1044441.0','2', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003229.0','1018874.0','2', '2','2','3505.0', '2','1','3285.66', '1','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091493.0','1044441.0','26', '19','18','69687.89', '19','18','55369.47', '9','6','14318.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003028.0','1018874.0','40', '36','28','68896.97', '36','26','46744.54', '18','9','22152.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091292.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005204.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093468.0','1044441.0','72', '65','56','161652.1', '63','54','115498.15', '36','25','46153.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005205.0','1018874.0','200', '186','130','197526.2', '180','116','138891.06', '93','41','58635.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093469.0','1044441.0','58', '52','36','78694.02', '48','31','47620.51', '28','13','31073.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003022.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091286.0','1044441.0','1', '1','1','1703.1', '1','1','1703.1', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003197.0','1018874.0','8', '6','5','29485.6', '6','4','9006.45', '2','2','20479.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091461.0','1044441.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005206.0','1018874.0','1', '1','1','3969.6', '1','1','3302.95', '1','1','666.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093470.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003003.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091267.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005207.0','1018874.0','74', '60','42','183474.32', '60','38','118484.01', '44','24','64990.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093471.0','1044441.0','8', '8','4','11654.18', '8','4','8467.14', '6','2','3187.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005208.0','1018874.0','43', '39','28','51805.88', '39','23','40246.18', '24','13','11559.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093472.0','1044441.0','1', '1','1','2692.05', '1','1','2550.0', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003070.0','1018874.0','6', '6','6','29618.13', '6','6','13159.03', '4','4','16459.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091334.0','1044441.0','3', '3','2','3984.05', '3','2','3842.0', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003239.0','1018874.0','11', '11','10','16943.13', '11','10','16017.45', '5','2','925.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091503.0','1044441.0','16', '13','11','42426.58', '13','10','25665.42', '6','4','16761.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003144.0','1018874.0','13', '11','10','24145.39', '10','10','22378.41', '5','2','1766.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091408.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003020.0','1018874.0','8', '7','5','22939.11', '6','5','20136.89', '4','3','2802.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091284.0','1044441.0','12', '12','10','21025.51', '11','10','20523.46', '3','1','502.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003043.0','1018874.0','2', '2','2','5343.82', '2','2','5343.82', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091307.0','1044441.0','3', '3','3','8882.72', '3','3','6493.18', '2','2','2389.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003196.0','1018874.0','4', '3','2','4189.19', '3','2','3975.49', '2','1','213.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091460.0','1044441.0','4', '4','4','11356.91', '4','4','8332.3', '3','2','3024.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005209.0','1018874.0','81', '75','60','114506.3', '74','58','99425.71', '33','20','15080.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093473.0','1044441.0','5', '4','3','3974.28', '3','3','2355.0', '3','1','1619.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003216.0','1018874.0','15', '12','10','25170.75', '11','10','21099.17', '6','3','4071.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091480.0','1044441.0','1', '1','1','899.46', '1','1','757.41', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002978.0','1018874.0','3', '3','2','7113.48', '3','1','4334.0', '1','1','2779.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091242.0','1044441.0','5', '4','3','3373.78', '4','3','3103.64', '2','2','270.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003099.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091363.0','1044441.0','16', '16','14','32221.8', '15','12','19872.55', '7','5','12349.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005210.0','1018874.0','1', '1','1','1549.89', '1','1','1549.89', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093474.0','1044441.0','189', '146','115','314217.01', '137','104','243750.15', '68','35','70466.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005211.0','1018874.0','24', '20','14','19465.89', '19','13','18139.24', '8','3','1326.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093475.0','1044441.0','5', '5','5','6170.8', '5','5','6170.8', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003080.0','1018874.0','32', '30','27','56412.97', '30','26','47212.77', '16','9','9200.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091344.0','1044441.0','246', '207','169','1380421.08', '200','155','730648.91', '139','101','649772.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003152.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091416.0','1044441.0','2', '1','1','100.0', '1','1','100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003167.0','1018874.0','235', '206','143','442095.7', '201','130','294905.15', '87','51','147190.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091431.0','1044441.0','5', '5','2','2031.57', '5','1','1275.0', '2','2','756.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003139.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091403.0','1044441.0','6', '6','4','8435.83', '6','4','8216.49', '3','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005212.0','1018874.0','9', '7','4','14974.8', '7','4','14974.8', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093476.0','1044441.0','3', '2','2','1559.0', '2','2','1559.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005213.0','1018874.0','6', '6','5','19752.47', '5','4','14252.47', '1','1','5500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093477.0','1044441.0','17', '15','9','31312.84', '15','8','17228.12', '6','4','14084.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005214.0','1018874.0','5', '5','4','7018.58', '5','4','6876.53', '3','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093478.0','1044441.0','23', '20','17','62710.71', '19','15','43383.58', '10','8','19327.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003093.0','1018874.0','212', '197','116','247130.06', '192','100','194310.75', '96','44','52819.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091357.0','1044441.0','10', '10','8','25741.03', '10','6','20021.02', '4','4','5720.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003053.0','1018874.0','10', '6','6','12882.02', '6','5','12545.05', '4','2','336.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091317.0','1044441.0','5', '4','3','4852.39', '4','3','4852.39', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003209.0','1018874.0','1', '1','1','10846.22', '1','1','6884.0', '1','1','3962.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091473.0','1044441.0','36', '34','29','61014.93', '33','29','56967.92', '18','12','4047.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003123.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091387.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005215.0','1018874.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093479.0','1044441.0','81', '73','63','229597.81', '68','57','155071.53', '46','36','74526.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003163.0','1018874.0','1', '1','1','471.0', '1','1','471.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091427.0','1044441.0','1', '1','1','153.62', '1','0','0.0', '1','1','153.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005216.0','1018874.0','9', '9','7','17486.67', '9','7','17019.6', '2','1','467.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093480.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002994.0','1018874.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091258.0','1044441.0','14', '12','10','30431.22', '12','10','29842.08', '3','1','589.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005217.0','1018874.0','1', '1','1','2343.79', '1','1','2343.79', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093481.0','1044441.0','110', '93','75','327562.06', '90','72','209892.14', '62','39','117669.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002957.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091221.0','1044441.0','1', '1','1','1783.93', '0','0','0.0', '1','1','1783.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005218.0','1018874.0','1', '1','1','3471.18', '1','1','3109.79', '1','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093482.0','1044441.0','1', '1','1','3768.32', '1','1','3768.32', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005219.0','1018874.0','10', '4','4','17533.6', '4','4','16195.02', '3','3','1338.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093483.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005220.0','1018874.0','7', '5','3','8999.86', '5','3','8240.97', '2','2','758.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093484.0','1044441.0','4', '4','3','13350.45', '4','3','6041.23', '2','2','7309.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003202.0','1018874.0','3', '3','3','4023.52', '3','2','1662.0', '3','1','2361.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091466.0','1044441.0','1', '1','1','2192.95', '1','1','2192.95', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003109.0','1018874.0','6', '5','4','10869.26', '5','4','8485.92', '3','1','2383.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091373.0','1044441.0','1', '1','1','2349.15', '1','1','2349.15', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002975.0','1018874.0','9', '9','8','70529.64', '9','8','38590.19', '5','5','31939.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091239.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003074.0','1018874.0','1', '1','1','2104.07', '1','1','1375.41', '1','1','728.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091338.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005221.0','1018874.0','36', '29','24','126219.83', '29','24','83912.65', '17','9','42307.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093485.0','1044441.0','25', '15','12','36387.74', '13','12','28725.79', '10','3','7661.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005222.0','1018874.0','8', '8','7','18275.21', '8','7','17081.01', '3','2','1194.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093486.0','1044441.0','4', '4','2','4107.55', '4','2','3547.92', '2','1','559.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003125.0','1018874.0','98', '87','76','202448.36', '84','64','137151.51', '62','45','65296.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091389.0','1044441.0','6', '6','5','16181.21', '6','5','15897.11', '4','2','284.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005223.0','1018874.0','2', '1','1','8846.05', '1','1','5645.0', '1','1','3201.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093487.0','1044441.0','25', '23','19','31086.35', '23','18','30234.05', '10','6','852.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003122.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091386.0','1044441.0','81', '73','47','110421.41', '70','42','88724.08', '34','17','21697.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005224.0','1018874.0','1', '1','1','339.2', '1','1','339.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093488.0','1044441.0','89', '79','54','133464.32', '78','51','117577.43', '40','19','15886.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005225.0','1018874.0','2', '1','1','3062.65', '1','1','2843.31', '1','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093489.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003091.0','1018874.0','20', '14','13','36626.76', '14','11','35050.85', '8','4','1575.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091355.0','1044441.0','119', '90','72','579890.92', '79','65','188746.84', '64','47','391144.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002960.0','1018874.0','6', '5','4','17397.31', '5','4','15634.59', '2','2','1762.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091224.0','1044441.0','2', '2','2','4925.92', '2','2','2001.8', '2','2','2924.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005226.0','1018874.0','9', '7','6','8107.33', '6','4','6098.0', '7','5','2009.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093490.0','1044441.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003032.0','1018874.0','3', '3','3','10084.0', '3','3','10084.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091296.0','1044441.0','1', '1','1','5613.82', '1','1','5100.0', '1','1','513.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003040.0','1018874.0','8', '6','5','16867.88', '6','5','15326.76', '2','2','1541.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091304.0','1044441.0','4', '3','3','8034.31', '3','3','5174.45', '3','3','2859.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003243.0','1018874.0','6', '6','6','27995.59', '5','5','14530.34', '3','3','13465.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091507.0','1044441.0','38', '36','27','62640.19', '35','21','35723.99', '20','13','26916.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005227.0','1018874.0','101', '87','65','154133.67', '84','57','131740.24', '49','21','22393.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093491.0','1044441.0','6', '6','6','17971.61', '6','6','17390.88', '4','2','580.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002974.0','1018874.0','10', '8','6','19802.89', '7','6','18109.85', '4','1','1693.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091238.0','1044441.0','1', '1','1','2691.93', '1','1','2691.93', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003116.0','1018874.0','4', '4','4','9560.37', '4','4','5714.03', '2','2','3846.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091380.0','1044441.0','4', '3','2','4541.84', '3','2','4399.79', '2','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003169.0','1018874.0','6', '6','6','20276.65', '6','6','11527.08', '5','5','8749.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091433.0','1044441.0','6', '6','3','8524.9', '4','2','4083.39', '5','2','4441.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003014.0','1018874.0','5', '5','4','7542.69', '5','3','5990.86', '4','1','1551.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091278.0','1044441.0','2', '2','2','12918.7', '2','2','7338.7', '1','1','5580.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003078.0','1018874.0','9', '9','8','28947.15', '8','7','21331.21', '3','3','7615.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091342.0','1044441.0','22', '14','10','43139.3', '13','10','25197.11', '6','2','17942.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003230.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091494.0','1044441.0','14', '8','6','18842.03', '8','6','10851.16', '3','2','7990.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003193.0','1018874.0','31', '31','22','63138.09', '31','21','60316.76', '18','11','2821.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091457.0','1044441.0','19', '17','15','52491.19', '17','15','46445.37', '6','4','6045.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005228.0','1018874.0','1', '1','1','8468.28', '1','1','6253.12', '1','1','2215.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093492.0','1044441.0','1', '1','1','822.77', '1','1','680.72', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003156.0','1018874.0','209', '152','121','427839.23', '143','114','292810.79', '86','53','135028.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091420.0','1044441.0','2', '2','2','9461.91', '2','2','4966.44', '2','1','4495.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002953.0','1018874.0','54', '43','37','136876.87', '43','37','111357.08', '18','12','25519.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091217.0','1044441.0','15', '12','12','45661.99', '11','11','32223.33', '10','8','13438.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003076.0','1018874.0','12', '12','11','25235.02', '12','11','20115.15', '6','4','5119.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091340.0','1044441.0','2', '2','1','228.96', '1','1','228.96', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005229.0','1018874.0','1', '1','1','773.87', '1','1','530.12', '1','1','243.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093493.0','1044441.0','18', '16','13','26770.35', '15','13','26053.5', '4','1','716.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002982.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091246.0','1044441.0','9', '6','4','7922.29', '6','4','7391.64', '4','2','530.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002949.0','1018874.0','16', '14','9','16848.04', '14','9','15499.79', '10','2','1348.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091213.0','1044441.0','188', '151','124','353261.14', '150','115','252780.15', '76','45','100480.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003160.0','1018874.0','7', '6','4','11587.51', '6','3','5199.06', '6','2','6388.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091424.0','1044441.0','5', '5','4','45126.95', '5','4','24070.0', '4','3','21056.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005230.0','1018874.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093494.0','1044441.0','8', '6','6','10542.92', '6','6','9523.33', '3','2','1019.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005231.0','1018874.0','10', '9','9','40766.07', '9','9','31090.23', '7','4','9675.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093495.0','1044441.0','4', '4','3','3571.05', '4','3','3429.0', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003090.0','1018874.0','1', '1','1','12132.43', '1','1','1090.0', '1','1','11042.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091354.0','1044441.0','5', '4','2','1844.51', '3','1','1396.82', '3','2','447.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003594.0','1018874.0','12', '12','10','18615.13', '10','10','17313.27', '6','3','1301.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091858.0','1044441.0','1', '1','1','2236.13', '1','1','2094.08', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003128.0','1018874.0','5', '4','4','27789.43', '4','4','16648.0', '4','3','11141.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091392.0','1044441.0','1', '1','1','1370.1', '1','1','918.0', '1','1','452.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003118.0','1018874.0','14', '5','3','8459.45', '5','3','8459.45', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091382.0','1044441.0','21', '20','17','38005.06', '19','17','33544.62', '14','6','4460.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003134.0','1018874.0','5', '5','5','29237.81', '5','5','25484.0', '3','3','3753.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091398.0','1044441.0','3', '3','3','10545.21', '3','3','10403.16', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005232.0','1018874.0','1', '1','1','2917.11', '1','1','2917.11', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093496.0','1044441.0','1', '1','1','1953.14', '1','1','1440.04', '1','1','513.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003060.0','1018874.0','19', '17','16','34261.77', '17','14','26466.11', '5','3','7795.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091324.0','1044441.0','2', '1','1','3441.52', '1','1','636.0', '1','1','2805.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003217.0','1018874.0','7', '6','6','15789.91', '6','5','12630.49', '4','3','3159.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091481.0','1044441.0','44', '38','27','54450.68', '35','25','46595.66', '19','8','7855.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003199.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091463.0','1044441.0','1', '1','1','12267.66', '1','1','10974.0', '1','1','1293.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003260.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091524.0','1044441.0','3', '2','2','25550.39', '2','2','14369.11', '2','2','11181.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003087.0','1018874.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091351.0','1044441.0','4', '4','3','5926.79', '4','3','5926.79', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2002956.0','1018874.0','1', '1','1','6992.0', '1','1','6992.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091220.0','1044441.0','9', '9','8','14032.73', '9','8','11776.19', '3','2','2256.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005233.0','1018874.0','1', '1','1','361.39', '1','0','0.0', '1','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093497.0','1044441.0','1', '1','1','4811.28', '1','1','4811.28', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005234.0','1018874.0','202', '167','139','612654.58', '155','121','407209.96', '123','97','205444.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093498.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005235.0','1018874.0','1', '1','1','1835.25', '1','1','1835.25', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093499.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003258.0','1018874.0','54', '42','35','129015.75', '39','30','46978.82', '25','17','82036.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091522.0','1044441.0','10', '9','5','18938.47', '9','5','17486.18', '4','2','1452.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003055.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091319.0','1044441.0','4', '3','2','2827.68', '3','2','2827.68', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003117.0','1018874.0','1', '1','1','1465.39', '1','1','1104.0', '1','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091381.0','1044441.0','7', '7','6','9812.96', '6','6','9655.47', '3','1','157.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003133.0','1018874.0','17', '16','9','11379.71', '15','9','10876.27', '8','2','503.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091397.0','1044441.0','42', '32','26','113530.39', '30','25','72274.24', '23','12','41256.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005236.0','1018874.0','15', '12','9','34195.63', '12','9','30730.83', '4','2','3464.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093500.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003241.0','1018874.0','1', '1','1','1785.36', '1','1','1785.36', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091505.0','1044441.0','13', '9','7','34315.98', '9','6','28761.63', '7','5','5554.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005237.0','1018874.0','4', '2','2','16848.0', '2','2','7059.1', '2','2','9788.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093501.0','1044441.0','15', '10','9','7743.55', '10','9','7325.1', '5','2','418.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005238.0','1018874.0','4', '3','3','11840.04', '3','3','11276.0', '1','1','564.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093502.0','1044441.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003031.0','1018874.0','1', '1','1','2125.23', '1','1','1690.4', '1','1','434.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091295.0','1044441.0','21', '15','14','39022.09', '15','14','28757.77', '9','6','10264.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003143.0','1018874.0','76', '70','65','138920.9', '70','64','130566.84', '27','13','8354.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091407.0','1044441.0','20', '16','14','32123.94', '16','13','23312.88', '9','7','8811.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003224.0','1018874.0','4', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091488.0','1044441.0','3', '3','3','17037.08', '3','3','15666.6', '2','1','1370.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005239.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093503.0','1044441.0','5', '4','4','17735.0', '4','4','17735.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005240.0','1018874.0','6', '6','6','16844.21', '6','6','12022.66', '6','2','4821.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093504.0','1044441.0','64', '58','51','219556.06', '57','51','186086.53', '29','16','33469.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005241.0','1018874.0','4', '4','1','660.0', '4','1','660.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093505.0','1044441.0','39', '34','22','67949.66', '31','18','37269.74', '24','13','30679.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005242.0','1018874.0','5', '5','3','18689.0', '4','2','7817.0', '2','2','10872.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093506.0','1044441.0','2', '2','2','4687.07', '2','2','4485.42', '2','1','201.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003215.0','1018874.0','3', '3','2','4574.23', '3','2','4574.23', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091479.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003135.0','1018874.0','101', '76','54','158789.8', '70','50','113111.38', '35','15','45678.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091399.0','1044441.0','5', '5','5','17676.18', '5','5','17314.79', '2','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003126.0','1018874.0','1', '1','1','1652.66', '1','1','1327.71', '1','1','324.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091390.0','1044441.0','5', '4','3','7763.47', '4','3','6875.39', '1','1','888.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005243.0','1018874.0','13', '8','7','20683.07', '8','7','20529.45', '1','1','153.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093507.0','1044441.0','12', '10','8','13328.02', '9','7','12550.13', '3','1','777.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005244.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093508.0','1044441.0','13', '12','12','29794.73', '12','12','27492.5', '5','3','2302.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003574.0','1018874.0','15', '6','2','5775.53', '6','2','5775.53', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091838.0','1044441.0','1', '1','1','1655.01', '1','1','1655.01', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005245.0','1018874.0','1', '1','1','3474.0', '1','1','3474.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093509.0','1044441.0','51', '45','35','64324.97', '44','35','53939.59', '23','11','10385.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003101.0','1018874.0','2', '1','1','924.0', '1','1','924.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091365.0','1044441.0','6', '5','3','4259.65', '5','3','3390.0', '4','1','869.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005246.0','1018874.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093510.0','1044441.0','12', '11','7','18560.17', '11','7','17792.98', '1','1','767.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005247.0','1018874.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093511.0','1044441.0','52', '41','28','72495.71', '38','25','57641.2', '20','12','14854.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003089.0','1018874.0','4', '4','2','1690.0', '4','2','1690.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091353.0','1044441.0','21', '21','18','33118.33', '21','17','27224.19', '13','7','5894.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003178.0','1018874.0','11', '10','9','36260.43', '10','9','36118.38', '6','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091442.0','1044441.0','16', '14','10','15845.67', '13','9','15040.97', '8','2','804.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005248.0','1018874.0','43', '40','35','169573.87', '40','33','128045.21', '27','18','41528.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093512.0','1044441.0','4', '4','3','8158.26', '4','3','8158.26', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003092.0','1018874.0','2', '2','1','734.56', '2','1','429.2', '1','1','305.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091356.0','1044441.0','248', '210','129','397798.44', '198','113','260867.73', '116','57','136930.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003233.0','1018874.0','22', '19','17','64483.01', '19','17','61533.92', '5','3','2949.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091497.0','1044441.0','1', '1','1','5874.0', '1','1','5874.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003069.0','1018874.0','1', '1','1','2315.04', '1','1','2315.04', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091333.0','1044441.0','23', '20','14','58908.69', '19','14','52207.01', '8','4','6701.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003251.0','1018874.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091515.0','1044441.0','1', '1','1','3125.3', '1','1','3125.3', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005249.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093513.0','1044441.0','8', '6','6','33484.53', '6','6','23486.3', '4','2','9998.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005250.0','1018874.0','21', '15','14','31517.03', '15','13','28079.93', '3','1','3437.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093514.0','1044441.0','78', '70','61','224610.69', '67','60','207768.51', '38','17','16842.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005251.0','1018874.0','3', '2','2','6446.95', '2','2','5194.56', '2','1','1252.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093515.0','1044441.0','1', '1','1','778.0', '1','1','778.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003104.0','1018874.0','2', '2','2','1641.47', '2','2','1301.24', '1','1','340.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091368.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005252.0','1018874.0','3', '3','2','2304.87', '3','2','2085.53', '2','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093516.0','1044441.0','50', '43','35','102795.11', '42','34','91227.56', '23','14','11567.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005253.0','1018874.0','4', '4','3','34775.33', '4','3','21125.08', '2','2','13650.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093517.0','1044441.0','4', '4','4','9380.8', '4','3','8670.5', '3','2','710.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003147.0','1018874.0','2', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091411.0','1044441.0','13', '10','8','27522.99', '10','7','14875.8', '6','6','12647.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005254.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093518.0','1044441.0','10', '9','8','26792.21', '9','8','25341.49', '7','3','1450.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005255.0','1018874.0','52', '42','27','88832.1', '39','26','63189.41', '17','7','25642.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093519.0','1044441.0','8', '8','6','19636.89', '8','6','19275.5', '3','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005256.0','1018874.0','2', '2','2','12589.22', '2','1','7330.0', '2','2','5259.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093520.0','1044441.0','5', '5','4','7248.12', '5','4','6667.39', '4','2','580.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005257.0','1018874.0','132', '113','94','353545.19', '109','91','271712.96', '66','40','81832.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093521.0','1044441.0','12', '11','9','12470.65', '10','8','11541.3', '6','3','929.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005258.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093522.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003226.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091490.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003544.0','1018874.0','18', '14','13','55602.27', '14','13','55306.6', '7','2','295.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091808.0','1044441.0','3', '3','3','4582.46', '3','3','3474.0', '1','1','1108.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003546.0','1018874.0','153', '129','102','312092.89', '123','91','230376.32', '68','46','81716.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091810.0','1044441.0','8', '6','4','9295.93', '6','4','9295.93', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005259.0','1018874.0','3', '3','1','1275.0', '3','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093523.0','1044441.0','55', '46','38','95433.05', '45','33','73617.87', '30','17','21815.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003083.0','1018874.0','4', '4','3','7833.89', '4','3','7833.89', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091347.0','1044441.0','1', '1','1','2190.75', '1','1','2190.75', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003434.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091698.0','1044441.0','4', '4','4','14101.57', '4','4','12396.81', '2','1','1704.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005260.0','1018874.0','3', '3','2','10645.16', '3','1','6394.0', '2','2','4251.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093524.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003061.0','1018874.0','5', '4','2','4383.72', '4','2','1785.63', '1','1','2598.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091325.0','1044441.0','3', '2','2','7861.0', '2','2','7861.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005261.0','1018874.0','15', '13','9','15947.64', '12','9','15805.59', '7','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093525.0','1044441.0','15', '15','10','30407.93', '15','10','27515.05', '8','5','2892.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005262.0','1018874.0','53', '35','30','126053.54', '32','27','79976.53', '16','12','46077.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093526.0','1044441.0','4', '4','4','9348.89', '4','4','8694.72', '3','2','654.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005263.0','1018874.0','11', '11','10','43986.23', '11','10','31132.03', '7','6','12854.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093527.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005264.0','1018874.0','3', '3','2','4857.12', '3','2','4715.07', '2','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093528.0','1044441.0','72', '61','54','129120.03', '58','49','105334.25', '26','19','23785.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005265.0','1018874.0','4', '4','3','6023.72', '3','2','5881.67', '2','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093529.0','1044441.0','3', '3','3','13726.34', '3','3','11567.64', '1','1','2158.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005266.0','1018874.0','16', '14','8','22956.56', '12','7','13976.49', '9','4','8980.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093530.0','1044441.0','7', '6','5','8412.44', '6','5','7251.45', '4','2','1160.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005267.0','1018874.0','50', '48','32','109992.31', '44','27','49725.54', '31','21','60266.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093531.0','1044441.0','9', '7','7','44921.32', '7','7','19018.8', '7','4','25902.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005268.0','1018874.0','3', '3','2','6717.68', '3','1','2345.06', '2','2','4372.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093532.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005269.0','1018874.0','6', '5','2','1493.29', '5','2','980.19', '2','1','513.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093533.0','1044441.0','2', '2','2','11776.52', '2','2','10121.36', '2','1','1655.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005270.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093534.0','1044441.0','1', '1','1','360.72', '1','1','360.72', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005271.0','1018874.0','15', '14','11','30015.77', '13','11','27954.38', '4','2','2061.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093535.0','1044441.0','4', '4','3','8864.06', '4','3','8484.62', '3','1','379.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005272.0','1018874.0','21', '18','13','12536.1', '18','13','12394.05', '6','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093536.0','1044441.0','223', '191','123','246647.81', '183','101','194760.83', '119','53','51886.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005273.0','1018874.0','21', '19','16','33050.35', '16','15','23038.95', '12','4','10011.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093537.0','1044441.0','5', '5','4','6909.48', '5','4','6763.63', '4','1','145.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005274.0','1018874.0','85', '77','59','162077.66', '73','54','100955.28', '52','27','61122.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093538.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005275.0','1018874.0','7', '5','3','18624.0', '5','3','18624.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093539.0','1044441.0','6', '6','4','23994.19', '6','4','16041.61', '3','2','7952.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005276.0','1018874.0','1', '1','1','3543.0', '1','1','3543.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093540.0','1044441.0','22', '22','18','59095.72', '21','17','48894.72', '15','11','10201.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005277.0','1018874.0','55', '44','36','88547.26', '40','33','75374.26', '31','22','13173.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093541.0','1044441.0','7', '5','3','4146.71', '5','3','4004.66', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005278.0','1018874.0','2', '2','1','3865.82', '2','1','3723.77', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093542.0','1044441.0','144', '119','100','346590.8', '115','99','321389.46', '59','39','25201.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005279.0','1018874.0','2', '2','2','6871.0', '2','2','6311.43', '2','2','559.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093543.0','1044441.0','1', '1','1','1223.48', '1','1','1223.48', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005280.0','1018874.0','2', '2','2','7960.47', '2','1','4448.57', '1','1','3511.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093544.0','1044441.0','10', '10','5','9624.11', '8','4','9404.77', '5','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005281.0','1018874.0','1', '1','1','220.5', '1','1','220.5', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093545.0','1044441.0','3', '2','1','247.52', '2','1','247.52', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005282.0','1018874.0','12', '10','8','29360.93', '10','8','23874.99', '5','3','5485.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093546.0','1044441.0','24', '22','21','40220.47', '21','21','38324.38', '12','3','1896.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005283.0','1018874.0','13', '11','8','33576.81', '10','8','27996.81', '3','1','5580.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093547.0','1044441.0','33', '27','23','106937.74', '27','23','52892.53', '15','8','54045.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003073.0','1018874.0','27', '19','11','38597.55', '15','10','27640.4', '12','6','10957.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091337.0','1044441.0','4', '2','2','3272.78', '2','1','2550.0', '2','2','722.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005284.0','1018874.0','2', '2','2','7735.92', '2','1','6788.0', '2','2','947.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093548.0','1044441.0','10', '9','7','13911.4', '8','6','8128.87', '5','2','5782.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005285.0','1018874.0','25', '23','20','50302.85', '23','20','48343.44', '15','4','1959.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093549.0','1044441.0','95', '77','53','123295.1', '72','45','89890.2', '41','19','33404.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005286.0','1018874.0','11', '10','7','23940.5', '10','7','22350.68', '5','2','1589.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093550.0','1044441.0','7', '7','5','12215.13', '5','4','11447.94', '3','1','767.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005287.0','1018874.0','3', '3','3','7660.33', '3','3','7518.28', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093551.0','1044441.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005288.0','1018874.0','2', '2','2','2336.28', '2','2','2336.28', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093552.0','1044441.0','2', '2','2','1962.0', '2','2','1962.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005289.0','1018874.0','25', '16','13','19349.85', '16','12','14512.79', '8','5','4837.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093553.0','1044441.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003124.0','1018874.0','7', '6','4','8613.79', '5','4','8263.6', '4','2','350.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091388.0','1044441.0','23', '16','12','44598.39', '14','11','24138.12', '12','6','20460.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005290.0','1018874.0','1', '1','1','5126.14', '1','1','3383.35', '1','1','1742.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093554.0','1044441.0','34', '27','23','90718.8', '25','23','77396.83', '14','7','13321.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003454.0','1018874.0','120', '109','98','359261.68', '108','95','291343.18', '57','34','67918.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091718.0','1044441.0','51', '47','39','87904.01', '47','39','82053.03', '22','9','5850.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003096.0','1018874.0','2', '2','2','8902.11', '2','2','5323.74', '2','2','3578.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091360.0','1044441.0','9', '9','9','24938.68', '8','8','19077.29', '6','2','5861.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005291.0','1018874.0','6', '6','5','38481.16', '6','4','14391.02', '4','4','24090.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093555.0','1044441.0','15', '12','7','25236.12', '12','6','14688.11', '6','3','10548.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005292.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093556.0','1044441.0','38', '35','25','77600.33', '35','25','43936.85', '17','11','33663.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005293.0','1018874.0','4', '2','2','5262.62', '2','2','5262.62', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093557.0','1044441.0','31', '27','25','50802.71', '27','22','34536.56', '19','15','16266.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005294.0','1018874.0','1', '1','1','2236.32', '1','1','2236.32', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093558.0','1044441.0','3', '3','2','4472.81', '3','2','4048.45', '2','1','424.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003157.0','1018874.0','3', '3','2','4544.8', '3','1','3221.73', '2','2','1323.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091421.0','1044441.0','297', '265','225','647091.9', '256','203','513570.28', '163','103','133521.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005295.0','1018874.0','4', '4','2','7434.0', '3','2','7434.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093559.0','1044441.0','58', '47','41','183032.84', '46','39','129112.67', '32','24','53920.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005296.0','1018874.0','19', '16','14','42029.4', '15','14','32286.35', '7','4','9743.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093560.0','1044441.0','5', '5','4','8632.9', '5','4','7032.6', '3','2','1600.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005297.0','1018874.0','2', '2','2','2209.77', '2','2','2209.77', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093561.0','1044441.0','8', '8','5','25778.96', '8','5','10434.38', '5','3','15344.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005298.0','1018874.0','22', '19','17','38217.2', '18','17','37254.17', '10','6','963.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093562.0','1044441.0','7', '7','4','7499.52', '7','4','7499.52', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005299.0','1018874.0','28', '21','17','34040.4', '21','14','29821.89', '15','8','4218.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093563.0','1044441.0','11', '10','8','27720.74', '10','8','11784.36', '4','1','15936.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005300.0','1018874.0','3', '3','3','6242.43', '3','3','6242.43', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093564.0','1044441.0','7', '7','7','23531.97', '7','7','22124.26', '6','4','1407.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005301.0','1018874.0','1', '1','1','3212.49', '1','1','2550.0', '1','1','662.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093565.0','1044441.0','2', '2','2','1017.6', '2','2','1017.6', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005302.0','1018874.0','10', '10','9','22106.96', '10','9','21964.91', '6','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093566.0','1044441.0','1', '1','1','1658.0', '1','1','1658.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003184.0','1018874.0','3', '2','2','4228.8', '2','2','4228.8', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091448.0','1044441.0','2', '2','2','8787.55', '2','2','8787.55', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005303.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093567.0','1044441.0','4', '3','1','1275.0', '2','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005304.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093568.0','1044441.0','88', '77','71','322499.43', '77','70','282000.87', '42','21','40498.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005305.0','1018874.0','33', '30','25','149772.01', '30','23','83294.95', '23','16','66477.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093569.0','1044441.0','4', '4','2','2546.11', '4','2','2312.48', '2','1','233.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005306.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093570.0','1044441.0','15', '11','9','14754.19', '10','9','13911.72', '7','4','842.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005307.0','1018874.0','4', '4','3','5382.23', '4','3','4801.5', '3','2','580.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093571.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005308.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093572.0','1044441.0','289', '247','168','349413.19', '241','141','244128.23', '152','81','105284.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005309.0','1018874.0','9', '4','3','22051.69', '4','3','6156.49', '4','2','15895.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093573.0','1044441.0','4', '4','4','25883.02', '4','4','16123.32', '2','2','9759.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005310.0','1018874.0','3', '3','2','1837.59', '3','1','459.0', '2','1','1378.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093574.0','1044441.0','6', '5','4','24942.99', '5','4','13134.5', '4','3','11808.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005311.0','1018874.0','7', '4','3','22591.1', '4','3','11327.02', '4','2','11264.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093575.0','1044441.0','6', '6','4','11125.41', '6','3','10761.66', '2','2','363.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003203.0','1018874.0','3', '2','2','6462.98', '2','2','5129.96', '2','2','1333.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091467.0','1044441.0','1', '1','1','612.82', '1','1','470.77', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005312.0','1018874.0','1', '1','1','4885.89', '1','1','4885.89', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093576.0','1044441.0','2', '1','1','661.58', '1','1','661.58', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003373.0','1018874.0','2', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091637.0','1044441.0','6', '5','4','14168.56', '5','4','13807.17', '3','2','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003150.0','1018874.0','91', '87','74','194671.11', '85','48','104540.04', '61','49','90131.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091414.0','1044441.0','2', '2','2','16046.66', '2','2','12322.0', '1','1','3724.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005313.0','1018874.0','22', '20','20','76137.34', '19','17','53849.99', '14','12','22287.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093577.0','1044441.0','8', '7','6','14767.13', '7','6','11778.13', '5','4','2989.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003396.0','1018874.0','3', '3','1','2550.0', '3','1','2550.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091660.0','1044441.0','10', '10','7','44163.83', '9','7','30190.81', '7','3','13973.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005314.0','1018874.0','14', '14','12','45427.03', '13','10','30944.34', '10','7','14482.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093578.0','1044441.0','3', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005315.0','1018874.0','1', '1','1','1468.16', '1','1','1468.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093579.0','1044441.0','1', '1','1','1208.0', '1','1','1208.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003110.0','1018874.0','1', '1','1','1348.0', '1','1','1348.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091374.0','1044441.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005316.0','1018874.0','6', '6','5','21624.26', '5','5','21624.26', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093580.0','1044441.0','15', '12','7','14303.99', '12','7','11627.42', '5','3','2676.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003057.0','1018874.0','1', '1','1','5487.0', '1','1','5487.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091321.0','1044441.0','10', '9','8','22212.65', '9','8','13865.4', '2','2','8347.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005317.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093581.0','1044441.0','32', '28','22','45327.67', '28','21','43537.41', '15','6','1790.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003548.0','1018874.0','86', '80','67','111999.48', '79','63','97539.04', '35','21','14460.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091812.0','1044441.0','22', '20','17','84222.65', '19','17','77977.96', '10','3','6244.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005318.0','1018874.0','10', '8','4','15334.04', '8','4','8031.0', '3','2','7303.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093582.0','1044441.0','8', '7','6','19950.33', '7','4','13995.87', '4','4','5954.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003129.0','1018874.0','26', '25','22','44462.52', '24','22','44101.13', '10','2','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091393.0','1044441.0','2', '2','1','2826.0', '1','1','2826.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005319.0','1018874.0','5', '4','2','4931.87', '4','2','4931.87', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093583.0','1044441.0','6', '5','5','9471.22', '5','5','9187.12', '3','2','284.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005320.0','1018874.0','3', '3','3','5649.04', '3','3','5649.04', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093584.0','1044441.0','5', '5','3','30020.6', '4','3','13449.43', '5','2','16571.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005321.0','1018874.0','5', '5','4','10665.19', '5','3','9079.58', '2','2','1585.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093585.0','1044441.0','3', '3','2','3379.21', '3','0','0.0', '2','2','3379.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005322.0','1018874.0','1', '1','1','871.52', '1','1','650.07', '1','1','221.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093586.0','1044441.0','31', '29','25','43890.89', '27','18','33642.04', '16','12','10248.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003375.0','1018874.0','1', '1','1','505.76', '1','1','505.76', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091639.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005323.0','1018874.0','3', '3','2','7006.55', '3','1','6200.0', '2','2','806.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093587.0','1044441.0','6', '4','4','7760.05', '4','4','6675.88', '4','4','1084.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005324.0','1018874.0','9', '9','6','21132.24', '9','6','18426.52', '6','4','2705.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093588.0','1044441.0','47', '38','31','110279.13', '36','31','107931.39', '17','9','2347.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005325.0','1018874.0','7', '7','4','9942.69', '6','4','9723.35', '2','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093589.0','1044441.0','3', '3','2','3730.45', '2','2','3730.45', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005326.0','1018874.0','1', '1','1','4280.8', '1','1','4280.8', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093590.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005327.0','1018874.0','22', '17','11','31894.62', '17','11','29359.94', '9','2','2534.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093591.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005328.0','1018874.0','89', '67','56','141887.8', '66','50','93413.78', '38','26','48474.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093592.0','1044441.0','2', '2','2','4915.01', '2','2','4915.01', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005329.0','1018874.0','1', '1','1','15785.28', '1','1','10974.0', '1','1','4811.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093593.0','1044441.0','2', '2','1','1598.9', '1','1','1339.0', '2','1','259.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003081.0','1018874.0','2', '2','1','1275.0', '2','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091345.0','1044441.0','4', '4','3','5384.1', '4','3','5100.0', '3','2','284.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005330.0','1018874.0','16', '13','11','26922.61', '12','9','18635.62', '8','5','8286.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093594.0','1044441.0','1', '1','1','1303.45', '1','1','1084.11', '1','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003154.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091418.0','1044441.0','48', '45','37','119187.53', '45','36','66257.55', '21','16','52929.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003066.0','1018874.0','7', '6','6','22513.42', '6','6','21165.5', '3','3','1347.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091330.0','1044441.0','4', '4','3','12056.36', '4','3','11694.97', '3','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005331.0','1018874.0','16', '13','12','94754.77', '13','12','53661.11', '10','8','41093.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093595.0','1044441.0','5', '4','3','7761.38', '4','3','7333.9', '2','1','427.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005332.0','1018874.0','7', '7','6','25516.61', '7','4','11153.36', '6','6','14363.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093596.0','1044441.0','3', '2','2','24506.03', '2','2','7118.0', '2','2','17388.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005333.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093597.0','1044441.0','33', '29','21','110963.08', '27','18','63895.77', '18','12','47067.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005334.0','1018874.0','13', '11','10','48606.98', '10','10','46105.2', '3','2','2501.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093598.0','1044441.0','6', '5','5','12587.87', '5','5','10893.19', '3','2','1694.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005335.0','1018874.0','20', '19','14','48042.56', '17','14','41277.65', '15','6','6764.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093599.0','1044441.0','20', '16','12','34510.42', '16','11','26999.95', '10','6','7510.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005336.0','1018874.0','1', '1','1','574.05', '1','1','432.0', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093600.0','1044441.0','17', '14','11','27731.44', '12','10','25386.37', '7','4','2345.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005337.0','1018874.0','7', '6','5','16719.99', '5','5','14326.13', '5','4','2393.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093601.0','1044441.0','24', '20','18','55905.21', '20','17','43102.1', '7','4','12803.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005338.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093602.0','1044441.0','3', '3','1','5100.0', '3','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005339.0','1018874.0','1', '1','1','1290.0', '1','1','1290.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093603.0','1044441.0','10', '10','9','25087.18', '10','9','22061.89', '3','2','3025.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003580.0','1018874.0','2', '2','2','2614.8', '2','2','2291.51', '1','1','323.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091844.0','1044441.0','12', '10','8','17807.39', '10','8','15916.58', '3','2','1890.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003084.0','1018874.0','128', '109','62','188671.79', '99','54','108890.53', '66','25','79781.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091348.0','1044441.0','7', '7','7','16414.18', '7','7','13394.94', '4','2','3019.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003601.0','1018874.0','3', '1','1','12241.02', '1','1','774.0', '1','1','11467.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091865.0','1044441.0','3', '3','2','2062.29', '2','2','2062.29', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003409.0','1018874.0','21', '21','17','80879.87', '19','17','41941.7', '12','5','38938.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091673.0','1044441.0','1', '1','1','5319.34', '1','1','5100.0', '1','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005340.0','1018874.0','3', '3','2','8488.93', '3','2','4102.95', '1','1','4385.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093604.0','1044441.0','37', '35','28','59878.43', '35','28','51872.9', '14','8','8005.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005341.0','1018874.0','1', '1','1','959.01', '1','1','816.96', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093605.0','1044441.0','1', '1','1','1100.0', '1','1','1100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005342.0','1018874.0','2', '1','1','3777.0', '1','1','3777.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093606.0','1044441.0','7', '5','3','8457.45', '5','3','8315.4', '3','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005343.0','1018874.0','18', '15','10','14960.11', '13','9','13939.54', '8','3','1020.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093607.0','1044441.0','6', '6','4','12102.65', '6','4','8301.72', '4','3','3800.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003301.0','1018874.0','2', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091565.0','1044441.0','6', '5','5','17738.14', '5','4','17518.8', '2','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005344.0','1018874.0','1', '1','1','612.76', '1','1','612.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093608.0','1044441.0','3', '2','2','7725.83', '2','2','5513.0', '1','1','2212.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005345.0','1018874.0','3', '3','3','11837.45', '3','3','11442.08', '2','2','395.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093609.0','1044441.0','23', '19','17','108580.77', '19','16','51025.16', '13','9','57555.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003254.0','1018874.0','2', '2','1','526.27', '2','1','526.27', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091518.0','1044441.0','1', '1','1','12815.19', '1','1','5100.0', '1','1','7715.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005346.0','1018874.0','17', '16','9','12854.08', '16','8','12492.69', '9','2','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093610.0','1044441.0','14', '13','10','23254.15', '13','10','21449.89', '4','3','1804.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003111.0','1018874.0','23', '20','18','101324.56', '19','18','84663.57', '10','7','16660.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091375.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005347.0','1018874.0','4', '2','1','1437.96', '2','1','1437.96', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093611.0','1044441.0','1', '1','1','677.09', '1','1','677.09', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003380.0','1018874.0','39', '31','27','130486.8', '31','22','71087.09', '18','17','59399.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091644.0','1044441.0','78', '77','60','136288.2', '73','52','93342.11', '56','32','42946.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003468.0','1018874.0','103', '102','75','161586.69', '100','69','129180.45', '53','32','32406.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091732.0','1044441.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005348.0','1018874.0','1', '1','1','1221.11', '1','1','1221.11', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093612.0','1044441.0','4', '3','2','4570.95', '3','2','3000.13', '1','1','1570.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005349.0','1018874.0','3', '3','2','21601.15', '3','2','8637.24', '2','1','12963.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093613.0','1044441.0','341', '336','240','506888.89', '335','222','400491.31', '193','85','106397.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005350.0','1018874.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093614.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005351.0','1018874.0','17', '17','9','23683.9', '17','8','18065.26', '13','7','5618.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093615.0','1044441.0','117', '115','79','157730.87', '114','74','111054.81', '56','23','46676.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003054.0','1018874.0','2', '1','1','4260.0', '1','1','4260.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091318.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005352.0','1018874.0','2', '2','2','7411.32', '2','2','6234.92', '1','1','1176.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093616.0','1044441.0','1', '1','1','734.08', '1','0','0.0', '1','1','734.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005353.0','1018874.0','345', '338','248','588145.17', '336','212','409713.78', '224','110','178431.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093617.0','1044441.0','16', '14','14','28055.69', '13','13','18968.4', '9','4','9087.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003582.0','1018874.0','7', '7','7','25585.97', '7','7','17779.25', '4','3','7806.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091846.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005354.0','1018874.0','1', '1','1','13725.7', '1','1','3640.0', '1','1','10085.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093618.0','1044441.0','2', '1','1','2483.6', '1','1','2483.6', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003249.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091513.0','1044441.0','135', '122','106','335157.3', '120','104','294147.85', '72','48','41009.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003127.0','1018874.0','26', '21','11','32753.42', '19','11','30419.51', '13','3','2333.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091391.0','1044441.0','6', '6','6','30295.99', '5','4','8991.0', '4','4','21304.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003405.0','1018874.0','11', '9','8','35176.02', '9','8','32823.01', '7','5','2353.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091669.0','1044441.0','1', '1','1','2342.42', '1','1','2342.42', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003180.0','1018874.0','2', '2','2','2545.46', '2','1','2403.41', '2','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091444.0','1044441.0','39', '39','30','84540.99', '38','25','46428.25', '29','19','38112.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003455.0','1018874.0','193', '157','110','517433.07', '150','99','296144.28', '91','57','221288.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091719.0','1044441.0','2', '2','2','4868.12', '2','2','4095.37', '2','2','772.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003140.0','1018874.0','1', '1','1','5100.0', '1','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091404.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003220.0','1018874.0','10', '7','6','20273.79', '7','6','12644.05', '3','3','7629.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091484.0','1044441.0','4', '3','1','2908.86', '3','1','2131.57', '2','1','777.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003438.0','1018874.0','2', '1','1','1367.91', '1','1','1148.57', '1','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091702.0','1044441.0','42', '32','27','73403.62', '32','27','68057.3', '18','12','5346.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005355.0','1018874.0','4', '4','4','9605.44', '4','4','7714.25', '2','1','1891.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093619.0','1044441.0','119', '118','89','182657.1', '115','81','142723.41', '67','41','39933.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003266.0','1018874.0','13', '11','10','69710.66', '11','10','35837.76', '7','6','33872.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091530.0','1044441.0','1035', '1021','601','1256696.85', '1007','528','933204.79', '677','249','323492.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005356.0','1018874.0','1', '1','1','1568.65', '1','1','1568.65', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093620.0','1044441.0','18', '15','11','24886.02', '14','11','24524.63', '7','2','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005357.0','1018874.0','1', '1','1','1790.25', '1','1','1790.25', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093621.0','1044441.0','2', '2','2','6364.12', '2','2','6222.07', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005358.0','1018874.0','11', '8','5','16670.9', '8','5','16670.9', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093622.0','1044441.0','4', '3','3','4299.49', '3','3','4299.49', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005359.0','1018874.0','45', '43','36','59889.4', '42','33','46487.37', '27','14','13402.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093623.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005360.0','1018874.0','178', '178','110','233245.9', '176','86','153048.57', '117','58','80197.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093624.0','1044441.0','224', '220','154','320758.95', '215','138','245741.6', '133','61','75017.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005361.0','1018874.0','43', '33','25','102482.99', '30','25','86454.0', '13','6','16028.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093625.0','1044441.0','7', '6','4','8973.17', '6','4','8831.12', '4','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003064.0','1018874.0','28', '21','18','123685.52', '21','15','56687.0', '11','10','66998.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091328.0','1044441.0','21', '21','18','28365.52', '21','15','20284.31', '13','9','8081.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005362.0','1018874.0','3', '3','3','9675.83', '3','3','8776.07', '1','1','899.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093626.0','1044441.0','1', '1','1','1179.79', '1','1','1037.74', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005363.0','1018874.0','4', '4','4','13831.1', '4','4','13831.1', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093627.0','1044441.0','2', '1','1','1627.86', '1','1','1627.86', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005364.0','1018874.0','9', '9','6','33845.71', '9','6','18491.03', '3','1','15354.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093628.0','1044441.0','76', '75','48','94592.65', '74','45','74444.69', '32','15','20147.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005365.0','1018874.0','155', '152','96','195204.95', '152','85','144309.84', '79','34','50895.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093629.0','1044441.0','2', '2','2','7834.69', '2','2','7326.33', '1','1','508.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005366.0','1018874.0','250', '249','176','362494.23', '246','139','244708.99', '158','85','117785.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093630.0','1044441.0','399', '389','289','661830.24', '384','255','543704.58', '242','121','118125.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005367.0','1018874.0','54', '49','42','116798.31', '49','42','102513.78', '22','12','14284.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093631.0','1044441.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003436.0','1018874.0','6', '6','5','17253.55', '6','5','17253.55', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091700.0','1044441.0','2', '2','2','6168.05', '2','1','6026.0', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005368.0','1018874.0','12', '12','10','46283.85', '11','10','40755.28', '9','5','5528.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093632.0','1044441.0','8', '6','5','20080.47', '6','4','14133.88', '4','3','5946.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005369.0','1018874.0','19', '19','11','32217.26', '19','10','19681.8', '12','5','12535.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093633.0','1044441.0','277', '273','208','505486.36', '265','152','286097.34', '226','145','219389.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003149.0','1018874.0','49', '49','29','46972.65', '49','27','35433.8', '23','12','11538.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091413.0','1044441.0','1', '1','1','1080.1', '1','1','1080.1', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005370.0','1018874.0','12', '12','8','21166.26', '12','7','20361.18', '6','3','805.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093634.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005371.0','1018874.0','9', '8','6','29121.59', '8','6','27181.06', '4','2','1940.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093635.0','1044441.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003256.0','1018874.0','7', '7','6','14450.76', '7','6','14231.42', '3','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091520.0','1044441.0','40', '33','30','94718.1', '33','29','88813.07', '21','13','5905.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003132.0','1018874.0','2', '2','1','529.13', '2','1','416.0', '2','1','113.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091396.0','1044441.0','9', '4','4','6262.34', '4','4','4240.96', '2','1','2021.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005372.0','1018874.0','1', '1','1','1254.38', '1','1','1254.38', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093636.0','1044441.0','17', '14','10','32332.12', '14','9','31252.96', '3','3','1079.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005373.0','1018874.0','1', '1','1','1282.72', '1','1','1282.72', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093637.0','1044441.0','30', '24','16','31517.92', '21','15','29055.45', '13','3','2462.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005374.0','1018874.0','4', '3','3','6625.58', '3','3','6264.19', '1','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093638.0','1044441.0','7', '7','5','14348.82', '7','5','14348.82', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005375.0','1018874.0','223', '217','169','437852.43', '213','147','310903.09', '137','71','126949.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093639.0','1044441.0','2', '2','1','3505.0', '2','1','3505.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003205.0','1018874.0','3', '3','3','4268.28', '3','3','4268.28', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091469.0','1044441.0','8', '5','4','15705.79', '5','4','15705.79', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005263.0','1018874.0','11', '11','9','39160.2', '11','9','30815.44', '6','3','8344.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093527.0','1044441.0','8', '6','5','26580.23', '6','5','18887.64', '3','2','7692.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003095.0','1018874.0','1', '1','1','831.04', '1','1','831.04', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091359.0','1044441.0','13', '13','8','17072.75', '13','8','12931.18', '9','2','4141.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005376.0','1018874.0','80', '63','55','183457.32', '61','52','133402.03', '26','16','50055.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093640.0','1044441.0','13', '10','10','40484.83', '10','9','37070.16', '5','3','3414.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005377.0','1018874.0','20', '20','18','66492.26', '20','18','63709.12', '14','11','2783.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093641.0','1044441.0','31', '30','21','24221.19', '30','15','15721.53', '20','9','8499.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005378.0','1018874.0','6', '5','2','3437.26', '5','2','3217.92', '2','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093642.0','1044441.0','1', '1','1','710.88', '1','1','710.88', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003185.0','1018874.0','15', '6','4','22359.44', '6','4','19959.44', '3','1','2400.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091449.0','1044441.0','1', '1','1','4182.2', '1','1','4182.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005379.0','1018874.0','4', '4','2','3646.94', '4','2','3355.24', '1','1','291.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093643.0','1044441.0','3', '3','2','542.52', '3','2','542.52', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005380.0','1018874.0','5', '5','3','9523.89', '4','2','7075.52', '2','2','2448.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093644.0','1044441.0','7', '6','6','24449.21', '6','6','23159.27', '4','2','1289.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003265.0','1018874.0','4', '3','2','4625.37', '3','2','4406.03', '2','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091529.0','1044441.0','3', '3','1','3248.87', '3','1','3106.82', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005381.0','1018874.0','16', '15','14','35155.36', '15','14','33808.25', '6','5','1347.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093645.0','1044441.0','4', '3','3','32575.0', '3','3','13763.0', '1','1','18812.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005382.0','1018874.0','304', '291','195','463192.98', '287','166','325682.8', '185','96','137510.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093646.0','1044441.0','18', '14','9','66769.85', '13','9','39793.94', '7','4','26975.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005383.0','1018874.0','14', '11','7','22989.61', '11','6','20949.09', '6','3','2040.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093647.0','1044441.0','14', '14','14','55968.08', '14','14','55247.9', '6','2','720.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005384.0','1018874.0','12', '7','4','21076.67', '5','4','15773.05', '5','2','5303.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093648.0','1044441.0','68', '53','39','217971.83', '48','33','95258.94', '31','19','122712.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005385.0','1018874.0','191', '186','130','253422.04', '183','94','151132.67', '127','77','102289.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093649.0','1044441.0','4', '4','3','10536.05', '4','2','5796.01', '3','2','4740.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005386.0','1018874.0','34', '32','26','87648.63', '31','26','70613.79', '15','10','17034.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093650.0','1044441.0','9', '9','6','24994.82', '8','6','24244.82', '3','1','750.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005387.0','1018874.0','1', '1','1','1190.82', '1','1','1190.82', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093651.0','1044441.0','36', '30','20','36374.91', '25','18','30700.1', '15','4','5674.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005388.0','1018874.0','589', '575','438','1046978.33', '568','349','689902.34', '411','216','357075.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093652.0','1044441.0','393', '387','256','635498.6', '381','213','409405.96', '269','119','226092.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003136.0','1018874.0','3', '3','2','7788.81', '3','2','7788.81', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091400.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003253.0','1018874.0','580', '567','382','896341.22', '557','319','618316.69', '380','169','278024.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091517.0','1044441.0','12', '9','8','17602.7', '9','8','14515.19', '4','3','3087.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005389.0','1018874.0','1', '1','1','1547.28', '1','1','1547.28', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093653.0','1044441.0','114', '92','63','185793.47', '89','56','148240.2', '42','29','37553.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005390.0','1018874.0','11', '11','5','12946.7', '11','5','12508.02', '3','2','438.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093654.0','1044441.0','45', '44','27','53956.44', '43','26','38917.76', '18','13','15038.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005391.0','1018874.0','3', '3','1','370.0', '3','1','370.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093655.0','1044441.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005392.0','1018874.0','2', '2','1','5100.0', '2','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093656.0','1044441.0','13', '11','9','30680.28', '11','9','30053.5', '3','2','626.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005393.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093657.0','1044441.0','4', '3','2','7060.04', '3','2','7060.04', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005394.0','1018874.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093658.0','1044441.0','29', '25','23','103981.23', '24','21','73999.57', '15','7','29981.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005395.0','1018874.0','20', '11','9','33956.7', '11','9','33814.65', '4','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093659.0','1044441.0','2', '2','2','4719.29', '2','2','3593.12', '2','2','1126.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005396.0','1018874.0','6', '6','6','20405.01', '6','6','16458.68', '6','3','3946.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093660.0','1044441.0','4', '3','3','11944.49', '3','2','4860.48', '2','2','7084.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005397.0','1018874.0','4', '3','2','13873.58', '2','2','11920.0', '2','1','1953.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093661.0','1044441.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005398.0','1018874.0','14', '11','8','30427.88', '9','8','27257.11', '4','2','3170.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093662.0','1044441.0','2', '2','1','5100.0', '2','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005399.0','1018874.0','3', '1','1','1458.87', '1','1','1458.87', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093663.0','1044441.0','2', '1','1','4022.28', '1','1','4022.28', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003181.0','1018874.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091445.0','1044441.0','10', '8','3','7569.5', '7','3','7350.16', '3','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005400.0','1018874.0','1', '1','1','2639.36', '1','1','2639.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093664.0','1044441.0','4', '3','2','1436.92', '3','2','1436.92', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005401.0','1018874.0','1', '1','1','1381.65', '1','1','1381.65', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093665.0','1044441.0','41', '36','31','115154.48', '35','31','79685.41', '13','9','35469.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005402.0','1018874.0','5', '5','4','14040.1', '5','4','12449.7', '3','2','1590.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093666.0','1044441.0','63', '39','33','111878.99', '38','28','60544.27', '24','15','51334.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003315.0','1018874.0','7', '6','6','15411.47', '6','6','15411.47', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091579.0','1044441.0','17', '11','8','23384.3', '11','8','20941.92', '3','1','2442.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003165.0','1018874.0','1', '1','1','1970.84', '1','1','1066.64', '1','1','904.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091429.0','1044441.0','15', '10','9','19100.45', '9','9','14955.0', '6','3','4145.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005403.0','1018874.0','3', '3','3','11062.2', '3','3','9108.3', '3','3','1953.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093667.0','1044441.0','4', '3','3','9015.93', '3','3','8714.83', '1','1','301.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005404.0','1018874.0','72', '62','51','296712.58', '57','46','172504.28', '42','31','124208.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093668.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003210.0','1018874.0','10', '6','4','8420.98', '6','4','8420.98', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091474.0','1044441.0','25', '17','14','51427.41', '16','14','42162.7', '10','7','9264.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003321.0','1018874.0','5', '5','5','7893.91', '5','5','7129.96', '3','1','763.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091585.0','1044441.0','1', '1','1','485.61', '1','1','485.61', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005405.0','1018874.0','2', '1','1','3633.11', '1','1','3633.11', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093669.0','1044441.0','2', '2','2','3170.53', '2','2','2744.45', '1','1','426.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005406.0','1018874.0','5', '5','4','11912.06', '5','4','9051.89', '5','3','2860.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093670.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005407.0','1018874.0','6', '3','3','6350.35', '3','2','4239.35', '3','3','2111.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093671.0','1044441.0','1', '1','1','1124.97', '1','1','1124.97', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005408.0','1018874.0','8', '8','7','18343.27', '8','7','18201.22', '3','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093672.0','1044441.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005409.0','1018874.0','3', '2','2','15117.95', '2','2','3340.0', '2','2','11777.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093673.0','1044441.0','5', '5','5','19044.53', '5','5','7960.53', '1','1','11084.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005410.0','1018874.0','3', '1','1','2850.2', '1','1','2850.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093674.0','1044441.0','3', '3','3','12969.34', '3','3','12750.0', '2','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005411.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093675.0','1044441.0','3', '3','3','15365.08', '3','3','12823.0', '3','3','2542.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003062.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091326.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005412.0','1018874.0','46', '41','28','111160.39', '34','22','82121.44', '23','13','29038.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093676.0','1044441.0','4', '3','3','6917.33', '3','3','5535.08', '3','3','1382.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005413.0','1018874.0','43', '37','28','99295.55', '35','24','84297.8', '20','13','14997.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093677.0','1044441.0','4', '3','3','10929.44', '3','3','10929.44', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005414.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093678.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005415.0','1018874.0','27', '22','18','58895.35', '21','16','50951.55', '10','7','7943.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093679.0','1044441.0','23', '20','15','33005.82', '19','15','26001.33', '9','3','7004.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003236.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091500.0','1044441.0','4', '1','1','617.49', '1','1','92.43', '1','1','525.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005416.0','1018874.0','15', '14','11','49478.47', '14','11','44213.01', '9','2','5265.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093680.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005417.0','1018874.0','26', '21','15','46610.25', '21','15','33161.11', '13','6','13449.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093681.0','1044441.0','3', '3','2','3035.41', '2','2','3035.41', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005418.0','1018874.0','24', '21','16','65621.34', '21','16','59237.21', '7','3','6384.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093682.0','1044441.0','2', '2','1','1275.0', '2','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005419.0','1018874.0','2', '2','2','10200.0', '2','2','10200.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093683.0','1044441.0','2', '2','2','6581.17', '2','2','6498.0', '1','1','83.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005420.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093684.0','1044441.0','240', '234','178','326788.84', '233','163','259124.26', '140','68','67664.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003342.0','1018874.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091606.0','1044441.0','10', '5','4','15222.17', '4','4','13601.27', '3','2','1620.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005421.0','1018874.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093685.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005422.0','1018874.0','11', '9','6','19829.82', '9','6','19127.18', '3','2','702.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093686.0','1044441.0','10', '9','7','57339.89', '8','7','43126.23', '6','2','14213.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005423.0','1018874.0','6', '6','4','12306.22', '5','4','11121.59', '3','1','1184.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093687.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003186.0','1018874.0','1', '1','1','2238.64', '1','1','2238.64', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091450.0','1044441.0','3', '2','2','2756.98', '2','2','2756.98', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003377.0','1018874.0','2', '2','2','2329.47', '2','2','2329.47', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091641.0','1044441.0','10', '9','7','13352.56', '8','6','12208.18', '5','3','1144.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005424.0','1018874.0','8', '8','8','44965.96', '8','8','26607.89', '4','3','18358.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093688.0','1044441.0','2', '2','2','6269.62', '2','2','6269.62', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003212.0','1018874.0','12', '12','12','38386.08', '12','12','34191.63', '6','5','4194.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091476.0','1044441.0','1', '1','1','4346.03', '1','1','4346.03', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005425.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093689.0','1044441.0','7', '7','4','4623.5', '7','4','4184.82', '4','2','438.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005426.0','1018874.0','18', '14','11','33054.4', '14','10','20261.14', '4','3','12793.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093690.0','1044441.0','7', '7','4','18298.24', '6','3','17000.0', '3','1','1298.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003221.0','1018874.0','1', '1','1','850.1', '1','1','850.1', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091485.0','1044441.0','2', '2','1','6962.05', '2','1','6820.0', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003440.0','1018874.0','1', '1','1','637.69', '1','1','637.69', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091704.0','1044441.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005427.0','1018874.0','372', '309','274','1770038.89', '289','248','889567.39', '221','158','880471.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093691.0','1044441.0','333', '330','237','535430.63', '325','209','385705.1', '191','103','149725.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005428.0','1018874.0','1', '1','1','848.06', '1','1','848.06', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093692.0','1044441.0','1', '1','1','838.34', '1','1','838.34', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005429.0','1018874.0','2', '2','2','8661.41', '2','2','8519.36', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093693.0','1044441.0','4', '3','3','4829.66', '3','3','4390.98', '2','2','438.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005430.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093694.0','1044441.0','4', '2','2','10200.0', '2','2','10200.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005431.0','1018874.0','148', '104','82','205328.79', '101','81','168129.54', '46','21','37199.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093695.0','1044441.0','2', '2','1','774.0', '2','1','774.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005432.0','1018874.0','301', '298','248','654877.56', '295','181','353823.33', '235','148','301054.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093696.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005433.0','1018874.0','2', '2','2','6544.26', '2','2','6544.26', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093697.0','1044441.0','13', '10','7','19931.87', '9','7','19400.88', '4','3','530.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005434.0','1018874.0','88', '71','64','253898.66', '60','54','182099.45', '52','37','71799.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093698.0','1044441.0','13', '11','11','25988.22', '11','11','24862.85', '4','2','1125.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005435.0','1018874.0','8', '7','4','5520.72', '7','4','5520.72', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093699.0','1044441.0','2', '2','2','5790.98', '2','2','5450.28', '2','1','340.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005436.0','1018874.0','1', '1','1','15181.44', '1','1','4560.89', '1','1','10620.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093700.0','1044441.0','1', '1','1','4477.4', '1','1','4477.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005437.0','1018874.0','27', '23','20','68410.82', '23','17','34408.59', '13','9','34002.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093701.0','1044441.0','5', '3','3','10791.45', '3','3','10649.4', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005438.0','1018874.0','2', '2','2','4119.94', '2','2','4119.94', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093702.0','1044441.0','10', '8','7','16463.31', '8','7','15385.05', '4','3','1078.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005439.0','1018874.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093703.0','1044441.0','7', '7','6','17717.23', '6','5','14559.09', '3','1','3158.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005440.0','1018874.0','508', '500','308','616543.4', '491','270','472510.16', '284','123','144033.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093704.0','1044441.0','3', '3','3','16021.74', '3','2','6855.08', '2','2','9166.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005441.0','1018874.0','11', '9','6','23326.42', '9','6','19871.31', '4','4','3455.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093705.0','1044441.0','11', '8','7','28368.41', '8','7','26377.07', '3','2','1991.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005442.0','1018874.0','3', '2','1','774.0', '1','1','774.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093706.0','1044441.0','7', '6','6','14610.71', '6','6','13110.99', '4','3','1499.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005443.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093707.0','1044441.0','27', '24','19','79708.95', '23','19','62760.97', '13','8','16947.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005444.0','1018874.0','13', '10','8','23370.85', '10','7','22212.23', '6','2','1158.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093708.0','1044441.0','2', '2','2','4517.09', '2','2','4517.09', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005445.0','1018874.0','4', '2','2','15523.88', '2','2','12466.84', '1','1','3057.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093709.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005446.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093710.0','1044441.0','11', '8','5','20155.63', '8','5','13708.16', '3','3','6447.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005447.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093711.0','1044441.0','23', '21','17','27147.29', '21','17','27005.24', '5','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003557.0','1018874.0','1', '1','1','1161.05', '1','1','1161.05', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091821.0','1044441.0','3', '2','2','12381.72', '2','1','4812.37', '2','2','7569.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005448.0','1018874.0','9', '7','3','11350.14', '6','3','11130.8', '3','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093712.0','1044441.0','12', '11','10','25248.01', '11','9','22556.72', '5','2','2691.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005449.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093713.0','1044441.0','53', '50','43','93889.19', '48','42','81355.31', '31','23','12533.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003264.0','1018874.0','21', '13','8','25242.52', '13','8','25088.9', '2','1','153.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091528.0','1044441.0','11', '11','8','31085.6', '10','8','7788.62', '6','3','23296.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005450.0','1018874.0','15', '13','9','24646.99', '11','9','24646.99', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093714.0','1044441.0','1', '1','1','845.34', '1','1','845.34', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005451.0','1018874.0','1', '1','1','2092.28', '1','1','2092.28', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093715.0','1044441.0','2', '2','2','6605.02', '2','2','5320.0', '2','2','1285.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005452.0','1018874.0','3', '2','2','8367.78', '2','2','7650.0', '2','1','717.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093716.0','1044441.0','17', '15','12','72890.79', '15','12','47164.24', '9','6','25726.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003164.0','1018874.0','18', '13','10','41927.5', '11','9','28859.51', '9','5','13067.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091428.0','1044441.0','3', '3','2','3721.85', '3','2','3721.85', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005453.0','1018874.0','2', '2','1','5100.0', '2','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093717.0','1044441.0','2', '1','1','2838.67', '1','1','2838.67', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005454.0','1018874.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093718.0','1044441.0','32', '25','16','47325.67', '24','16','46680.18', '9','3','645.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005455.0','1018874.0','2', '2','1','1065.6', '2','1','1065.6', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093719.0','1044441.0','10', '8','6','9209.02', '7','4','8244.11', '6','4','964.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005456.0','1018874.0','178', '150','118','446500.85', '144','110','314919.5', '85','56','131581.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093720.0','1044441.0','2', '2','1','1547.68', '2','1','1547.68', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005457.0','1018874.0','17', '15','11','16882.82', '14','11','15661.79', '4','2','1221.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093721.0','1044441.0','13', '12','11','52187.39', '11','9','28040.36', '10','6','24147.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005458.0','1018874.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093722.0','1044441.0','36', '35','20','50140.17', '35','19','37149.41', '23','10','12990.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005459.0','1018874.0','4', '2','1','614.14', '2','1','614.14', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093723.0','1044441.0','5', '5','5','16494.15', '5','5','16494.15', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005460.0','1018874.0','8', '6','4','13143.18', '6','4','11990.14', '5','2','1153.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093724.0','1044441.0','4', '3','2','4660.19', '3','2','4660.19', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005461.0','1018874.0','1', '1','1','2582.36', '1','1','1999.28', '1','1','583.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093725.0','1044441.0','21', '19','18','55810.85', '19','18','41799.81', '10','4','14011.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005462.0','1018874.0','11', '11','8','14198.88', '11','8','14056.83', '5','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093726.0','1044441.0','8', '7','6','27723.56', '7','6','15755.26', '5','5','11968.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005463.0','1018874.0','2', '2','1','440.37', '2','1','440.37', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093727.0','1044441.0','6', '5','5','10605.14', '5','5','10383.13', '2','1','222.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005464.0','1018874.0','2', '2','2','7099.44', '2','2','5167.45', '1','1','1931.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093728.0','1044441.0','28', '20','17','29316.53', '19','17','29087.53', '7','1','229.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005465.0','1018874.0','5', '5','4','8815.48', '5','3','6579.04', '2','2','2236.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093729.0','1044441.0','4', '2','2','10200.0', '2','2','10200.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005466.0','1018874.0','2', '2','2','2754.69', '2','1','2085.22', '2','2','669.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093730.0','1044441.0','2', '2','2','674.0', '2','2','674.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005467.0','1018874.0','4', '3','2','3658.92', '3','2','3658.92', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093731.0','1044441.0','3', '3','3','6120.03', '3','3','5758.64', '3','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005468.0','1018874.0','77', '68','50','129446.75', '62','48','117121.88', '25','13','12324.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093732.0','1044441.0','1', '1','1','2231.57', '1','1','1197.0', '1','1','1034.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005469.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093733.0','1044441.0','8', '7','7','11880.62', '7','6','11157.84', '5','4','722.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005470.0','1018874.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093734.0','1044441.0','10', '7','6','16109.02', '7','6','14513.4', '4','3','1595.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005471.0','1018874.0','22', '15','14','33135.52', '14','13','32362.26', '6','3','773.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093735.0','1044441.0','1', '1','1','384.0', '1','1','384.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005472.0','1018874.0','2', '2','2','5121.8', '2','2','5121.8', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093736.0','1044441.0','9', '7','5','15991.32', '7','5','15229.67', '2','1','761.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005473.0','1018874.0','4', '3','3','10657.22', '3','3','9947.0', '1','1','710.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093737.0','1044441.0','2', '2','1','5100.0', '2','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005474.0','1018874.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093738.0','1044441.0','125', '110','78','260838.39', '104','73','150806.55', '58','26','110031.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005475.0','1018874.0','13', '8','4','5557.52', '8','4','4740.81', '2','1','816.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093739.0','1044441.0','8', '7','4','17739.37', '7','4','17287.27', '1','1','452.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005476.0','1018874.0','3', '3','3','6762.66', '3','3','6310.56', '2','1','452.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093740.0','1044441.0','1', '1','1','2239.16', '1','0','0.0', '1','1','2239.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005477.0','1018874.0','12', '9','8','28138.2', '9','8','27895.15', '2','1','243.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093741.0','1044441.0','10', '5','4','12539.32', '5','4','12397.27', '2','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005478.0','1018874.0','1', '1','1','498.95', '1','1','498.95', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093742.0','1044441.0','3', '3','2','7693.93', '3','1','511.5', '1','1','7182.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005479.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093743.0','1044441.0','32', '29','26','206170.8', '26','21','105913.6', '20','16','100257.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005480.0','1018874.0','3', '3','3','2409.12', '3','3','2409.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093744.0','1044441.0','1', '1','1','942.0', '1','1','942.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005481.0','1018874.0','1', '1','1','5100.0', '1','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093745.0','1044441.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005482.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093746.0','1044441.0','1', '1','1','2092.28', '1','1','2092.28', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003552.0','1018874.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091816.0','1044441.0','10', '9','5','27753.04', '9','5','15789.58', '4','4','11963.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005483.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093747.0','1044441.0','3', '1','1','1725.66', '1','1','1725.66', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005484.0','1018874.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093748.0','1044441.0','7', '7','4','9548.89', '5','4','5263.52', '6','2','4285.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005485.0','1018874.0','27', '18','15','50833.89', '18','12','19274.74', '13','6','31559.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093749.0','1044441.0','1', '1','1','2313.22', '1','1','2313.22', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003234.0','1018874.0','15', '14','14','76486.62', '14','12','59527.99', '7','5','16958.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091498.0','1044441.0','13', '10','9','11354.06', '10','9','10840.24', '6','1','513.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005486.0','1018874.0','2', '2','2','5536.93', '2','2','5052.2', '2','1','484.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093750.0','1044441.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005487.0','1018880.0','1', '1','1','2122.19', '1','1','2122.19', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093751.0','1044447.0','17', '16','9','44795.17', '15','7','23266.59', '12','7','21528.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005488.0','1018880.0','9', '9','7','32004.64', '7','7','22937.85', '7','4','9066.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093752.0','1044447.0','2', '2','2','4670.39', '2','2','4670.39', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005489.0','1018880.0','14', '10','9','28285.18', '9','7','18820.65', '6','4','9464.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093753.0','1044447.0','2', '2','2','4812.77', '2','2','4812.77', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005490.0','1018880.0','6', '5','4','23863.33', '5','4','8788.42', '3','2','15074.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093754.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005491.0','1018880.0','26', '23','21','92878.31', '23','20','75016.21', '12','7','17862.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093755.0','1044447.0','57', '44','38','80349.68', '44','35','64078.66', '26','13','16271.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005492.0','1018880.0','27', '23','21','65064.95', '23','21','50037.25', '12','6','15027.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093756.0','1044447.0','2', '2','2','4384.48', '2','2','4384.48', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005493.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093757.0','1044447.0','31', '22','18','47177.66', '20','18','41484.1', '11','6','5693.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005494.0','1018880.0','3', '1','1','4064.28', '1','1','4064.28', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093758.0','1044447.0','42', '29','21','89228.84', '24','17','28173.6', '20','15','61055.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005495.0','1018880.0','12', '11','9','50867.65', '11','9','35482.0', '7','4','15385.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093759.0','1044447.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005496.0','1018880.0','2', '1','1','1079.03', '1','1','1079.03', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093760.0','1044447.0','33', '29','21','91298.48', '27','17','67708.86', '17','11','23589.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005497.0','1018880.0','1', '1','1','2748.56', '1','1','2748.56', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093761.0','1044447.0','5', '2','2','5000.52', '2','2','4858.47', '2','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005498.0','1018880.0','3', '2','2','12400.1', '2','2','10000.1', '2','1','2400.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093762.0','1044447.0','5', '4','3','4531.9', '3','3','4170.51', '3','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005499.0','1018880.0','1', '1','1','1034.73', '1','1','1034.73', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093763.0','1044447.0','3', '3','3','1642.42', '3','3','1642.42', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005500.0','1018880.0','4', '4','2','3232.42', '4','2','2743.0', '3','1','489.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093764.0','1044447.0','1', '1','1','17303.8', '1','1','5826.0', '1','1','11477.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005501.0','1018880.0','7', '6','4','10920.43', '6','2','3532.86', '4','2','7387.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093765.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005502.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093766.0','1044447.0','4', '2','1','2425.56', '2','1','2425.56', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005503.0','1018880.0','1', '1','1','943.12', '1','1','943.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093767.0','1044447.0','2', '2','1','2023.36', '2','1','2023.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005504.0','1018880.0','5', '5','4','10044.18', '4','4','9560.32', '3','1','483.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093768.0','1044447.0','111', '99','78','224715.1', '94','75','201826.99', '37','12','22888.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005505.0','1018880.0','7', '7','6','13890.28', '7','6','12234.56', '2','2','1655.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093769.0','1044447.0','1', '1','1','12028.0', '1','1','12028.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005506.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093770.0','1044447.0','50', '50','43','164111.97', '49','42','142690.47', '29','12','21421.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005507.0','1018880.0','2', '2','2','5012.3', '2','1','4491.88', '1','1','520.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093771.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005508.0','1018880.0','2', '2','2','7460.0', '2','2','7460.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093772.0','1044447.0','38', '31','23','52297.46', '27','23','44298.31', '17','7','7999.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005509.0','1018880.0','18', '17','13','79747.67', '17','13','46006.48', '10','6','33741.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093773.0','1044447.0','1', '1','1','4486.07', '1','1','4486.07', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005510.0','1018880.0','12', '12','9','16429.88', '11','9','15315.85', '5','3','1114.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093774.0','1044447.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005511.0','1018880.0','2', '2','2','7650.0', '2','2','7650.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093775.0','1044447.0','3', '2','1','685.0', '1','0','0.0', '2','1','685.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005512.0','1018880.0','2', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093776.0','1044447.0','2', '2','2','8797.9', '2','2','7000.0', '2','1','1797.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005513.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093777.0','1044447.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005514.0','1018880.0','40', '38','36','165037.46', '38','36','76846.93', '23','18','88190.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093778.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005515.0','1018880.0','4', '4','1','5100.0', '3','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093779.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005516.0','1018880.0','5', '3','3','10557.0', '3','3','10557.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093780.0','1044447.0','1', '1','1','1537.52', '1','1','1537.52', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005517.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093781.0','1044447.0','38', '37','23','82775.31', '36','23','64361.19', '15','3','18414.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005518.0','1018880.0','2', '1','1','3504.0', '1','1','3504.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093782.0','1044447.0','13', '11','9','26156.35', '11','9','24627.22', '7','2','1529.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005519.0','1018880.0','1', '1','1','2506.97', '1','1','2506.97', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093783.0','1044447.0','43', '40','36','173060.05', '38','33','122158.16', '20','14','50901.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005520.0','1018880.0','1', '1','1','7616.1', '1','1','6018.0', '1','1','1598.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093784.0','1044447.0','11', '11','9','34236.3', '10','9','18492.32', '10','6','15743.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005521.0','1018880.0','2', '2','1','6048.0', '2','1','6048.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093785.0','1044447.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003114.0','1018880.0','59', '55','43','212365.78', '54','40','122645.81', '32','20','89719.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091378.0','1044447.0','4', '1','1','5609.01', '1','1','5100.0', '1','1','509.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005522.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093786.0','1044447.0','8', '7','7','28500.89', '7','6','20271.47', '3','2','8229.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003578.0','1018880.0','1', '1','1','6896.53', '1','1','6100.0', '1','1','796.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091842.0','1044447.0','23', '16','13','102893.81', '14','10','47376.06', '11','8','55517.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005523.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093787.0','1044447.0','2', '2','2','3324.66', '2','2','3324.66', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003256.0','1018880.0','52', '36','29','107951.08', '33','27','62051.8', '21','12','45899.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091520.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005524.0','1018880.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093788.0','1044447.0','3', '3','3','5219.53', '3','2','2211.69', '1','1','3007.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005525.0','1018880.0','23', '21','13','43294.5', '21','13','20237.7', '10','3','23056.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093789.0','1044447.0','9', '9','8','16180.74', '9','8','16180.74', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005526.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093790.0','1044447.0','3', '3','2','1818.71', '3','2','1818.71', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005527.0','1018880.0','95', '88','63','151383.9', '86','54','128713.44', '51','28','22670.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093791.0','1044447.0','35', '31','21','46612.99', '31','19','34407.41', '21','10','12205.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005528.0','1018880.0','1', '1','1','11935.71', '1','1','10938.0', '1','1','997.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093792.0','1044447.0','106', '88','71','256376.55', '82','68','196499.04', '44','26','59877.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005529.0','1018880.0','6', '5','3','5503.44', '5','3','5503.44', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093793.0','1044447.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005530.0','1018880.0','51', '38','32','78641.85', '36','32','78422.51', '13','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093794.0','1044447.0','3', '2','2','3005.0', '2','2','2505.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005531.0','1018880.0','253', '230','195','856024.01', '225','182','613836.12', '123','78','242187.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093795.0','1044447.0','79', '70','65','301926.62', '69','63','217102.39', '41','30','84824.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005532.0','1018880.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093796.0','1044447.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005533.0','1018880.0','14', '11','9','67845.41', '11','9','29351.2', '8','4','38494.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093797.0','1044447.0','1', '1','1','5768.0', '1','1','5768.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005534.0','1018880.0','159', '116','89','654273.86', '105','74','269581.48', '84','60','384692.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093798.0','1044447.0','50', '48','35','104402.09', '48','35','83667.39', '24','5','20734.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003598.0','1018880.0','10', '7','7','57851.03', '7','6','22141.0', '6','5','35710.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091862.0','1044447.0','1', '1','1','5836.44', '0','0','0.0', '1','1','5836.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005535.0','1018880.0','4', '3','2','5204.29', '3','2','4412.4', '1','1','791.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093799.0','1044447.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005536.0','1018880.0','3', '3','3','24359.99', '3','3','11950.46', '2','2','12409.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093800.0','1044447.0','2', '1','1','4765.48', '1','1','4765.48', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005537.0','1018880.0','19', '16','12','115033.0', '16','10','61429.9', '8','6','53603.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093801.0','1044447.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005538.0','1018880.0','5', '4','3','6686.77', '4','3','6467.43', '2','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093802.0','1044447.0','4', '3','2','6136.0', '3','2','6136.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005539.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093803.0','1044447.0','2', '1','1','1523.73', '1','1','1523.73', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005540.0','1018880.0','11', '9','6','17968.91', '9','6','17968.91', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093804.0','1044447.0','8', '8','6','13047.53', '8','6','12049.82', '6','2','997.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003407.0','1018880.0','13', '9','8','37837.23', '9','8','26165.39', '5','1','11671.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091671.0','1044447.0','3', '3','3','6378.1', '3','3','6378.1', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005541.0','1018880.0','17', '17','17','34715.33', '17','17','33773.21', '11','5','942.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093805.0','1044447.0','3', '2','1','4658.0', '1','0','0.0', '1','1','4658.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005542.0','1018880.0','3', '2','2','7984.8', '2','2','7984.8', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093806.0','1044447.0','9', '9','6','17658.21', '9','5','8978.92', '5','3','8679.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005543.0','1018880.0','4', '4','4','13720.95', '4','4','9538.26', '4','1','4182.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093807.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005544.0','1018880.0','16', '13','10','22063.43', '13','8','19375.71', '7','2','2687.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093808.0','1044447.0','1', '1','1','668.0', '1','1','668.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005545.0','1018880.0','8', '8','6','16720.69', '8','6','16578.64', '4','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093809.0','1044447.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005546.0','1018880.0','1', '1','1','886.6', '1','1','886.6', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093810.0','1044447.0','6', '6','4','8910.17', '6','4','8269.49', '4','2','640.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005547.0','1018880.0','2', '1','1','3825.13', '1','1','2960.21', '1','1','864.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093811.0','1044447.0','4', '3','3','7219.25', '3','3','7219.25', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005548.0','1018880.0','4', '2','2','4649.28', '2','2','4649.28', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093812.0','1044447.0','125', '102','90','432114.0', '97','85','242795.41', '56','39','189318.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003188.0','1018880.0','19', '18','14','27669.04', '18','14','26658.85', '10','4','1010.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091452.0','1044447.0','1', '1','1','1830.57', '1','1','1830.57', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005549.0','1018880.0','3', '2','1','1442.71', '2','1','1076.21', '1','1','366.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093813.0','1044447.0','1', '1','1','3581.32', '1','1','3581.32', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005550.0','1018880.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093814.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005551.0','1018880.0','2', '2','2','4480.97', '2','2','4143.79', '1','1','337.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093815.0','1044447.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005552.0','1018880.0','1', '1','1','1981.7', '1','1','1981.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093816.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003414.0','1018880.0','3', '3','2','744.56', '3','1','602.51', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091678.0','1044447.0','1', '1','1','986.21', '1','1','100.73', '1','1','885.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005553.0','1018880.0','3', '3','3','32012.07', '3','3','12156.81', '2','2','19855.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093817.0','1044447.0','12', '6','4','22634.06', '6','4','17976.06', '1','1','4658.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005554.0','1018880.0','1', '1','1','3687.52', '1','1','3328.0', '1','1','359.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093818.0','1044447.0','41', '35','27','205538.08', '31','24','90748.11', '21','11','114789.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005555.0','1018880.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093819.0','1044447.0','95', '86','70','373883.71', '84','67','228727.07', '42','29','145156.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005556.0','1018880.0','4', '3','3','16865.59', '3','3','16865.59', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093820.0','1044447.0','5', '5','2','1519.03', '4','2','1519.03', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005557.0','1018880.0','4', '4','4','10943.97', '4','4','8150.82', '3','1','2793.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093821.0','1044447.0','1', '1','1','1996.32', '1','1','1996.32', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005558.0','1018880.0','14', '13','12','19075.2', '13','12','16564.69', '3','2','2510.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093822.0','1044447.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005559.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093823.0','1044447.0','1', '1','1','6122.0', '1','1','6122.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005560.0','1018880.0','7', '7','7','17059.43', '7','7','7116.25', '6','6','9943.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093824.0','1044447.0','1', '1','1','15592.14', '1','1','5768.0', '1','1','9824.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003162.0','1018880.0','24', '18','14','65487.21', '15','11','34465.27', '15','9','31021.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091426.0','1044447.0','5', '5','5','14098.53', '5','4','12602.63', '1','1','1495.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005561.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093825.0','1044447.0','3', '3','3','13927.31', '3','3','13177.31', '1','1','750.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005562.0','1018880.0','7', '6','5','8021.08', '5','5','8021.08', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093826.0','1044447.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005563.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093827.0','1044447.0','3', '2','2','4997.1', '2','2','4997.1', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003166.0','1018880.0','1', '1','1','427.31', '1','1','427.31', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091430.0','1044447.0','351', '290','229','1054443.52', '281','209','570577.89', '158','105','483865.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005564.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093828.0','1044447.0','1', '1','1','3750.51', '1','1','3750.51', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005565.0','1018880.0','5', '1','1','914.0', '1','1','914.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093829.0','1044447.0','513', '431','366','1488675.64', '423','338','976525.93', '256','182','512149.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005566.0','1018880.0','127', '109','90','316005.91', '107','84','216846.23', '54','29','99159.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093830.0','1044447.0','5', '4','2','6223.7', '4','2','6082.41', '1','1','141.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005567.0','1018880.0','13', '11','10','24918.02', '11','10','23494.28', '4','1','1423.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093831.0','1044447.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005568.0','1018880.0','360', '310','256','1371032.64', '293','230','613272.77', '204','140','757759.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093832.0','1044447.0','1', '1','1','1106.39', '1','1','1106.39', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005569.0','1018880.0','1', '1','1','5938.0', '1','1','5938.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093833.0','1044447.0','2626', '2323','1718','5852860.64', '2241','1497','3671777.67', '1301','748','2181082.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005570.0','1018880.0','1', '1','1','636.16', '1','1','636.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093834.0','1044447.0','3', '2','1','1276.05', '2','1','1276.05', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005571.0','1018880.0','1', '1','1','1609.0', '1','1','1609.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093835.0','1044447.0','4', '4','2','6779.07', '4','2','3320.97', '4','2','3458.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005572.0','1018880.0','87', '64','53','344232.09', '62','51','186190.64', '31','15','158041.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093836.0','1044447.0','2', '2','2','4955.6', '2','2','4955.6', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005573.0','1018880.0','3', '3','2','3822.7', '3','2','2901.68', '1','1','921.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093837.0','1044447.0','4', '4','3','4434.6', '4','2','4054.1', '2','1','380.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005574.0','1018880.0','12', '12','8','21891.46', '12','7','12388.69', '9','5','9502.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093838.0','1044447.0','39', '34','29','191297.6', '34','27','101537.42', '22','12','89760.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005575.0','1018880.0','1', '1','1','8470.55', '1','1','6148.0', '1','1','2322.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093839.0','1044447.0','4', '4','3','2334.0', '4','3','2334.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003550.0','1018880.0','2', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091814.0','1044447.0','4', '4','3','7651.41', '4','3','7651.41', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005576.0','1018880.0','50', '48','26','66654.75', '48','24','60091.74', '25','5','6563.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093840.0','1044447.0','47', '46','40','231069.17', '46','38','135982.31', '26','23','95086.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005577.0','1018880.0','11', '10','9','18304.78', '10','8','15287.83', '8','5','3016.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093841.0','1044447.0','35', '32','24','62552.23', '32','21','58604.87', '17','7','3947.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005578.0','1018880.0','16', '10','8','49964.82', '9','6','24762.39', '7','4','25202.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093842.0','1044447.0','6', '3','2','8570.77', '3','2','8348.76', '1','1','222.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005579.0','1018880.0','148', '123','95','571511.54', '119','91','263617.86', '58','42','307893.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093843.0','1044447.0','54', '52','43','245533.58', '50','39','134033.64', '27','15','111499.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005580.0','1018880.0','4', '2','1','1511.13', '2','1','1511.13', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093844.0','1044447.0','2', '2','1','2402.6', '2','1','2402.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005581.0','1018880.0','1', '1','1','3933.68', '1','1','3933.68', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093845.0','1044447.0','6', '6','4','6984.93', '6','4','6984.93', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005582.0','1018880.0','64', '54','45','163591.59', '54','42','108716.84', '27','19','54874.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093846.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005583.0','1018880.0','7', '5','3','2026.57', '5','3','1868.63', '2','1','157.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093847.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005584.0','1018880.0','9', '8','8','47969.34', '8','8','28568.11', '5','4','19401.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093848.0','1044447.0','7', '5','1','3288.0', '3','1','3288.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005585.0','1018880.0','1', '1','1','5964.92', '1','1','5100.0', '1','1','864.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093849.0','1044447.0','4', '4','3','6490.04', '4','3','6490.04', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005586.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093850.0','1044447.0','1', '1','1','619.29', '1','1','619.29', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005587.0','1018880.0','23', '17','14','47190.42', '16','14','38069.56', '8','5','9120.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093851.0','1044447.0','2', '2','1','3825.0', '2','1','3825.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005588.0','1018880.0','2', '1','1','1991.55', '1','1','1849.5', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093852.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005589.0','1018880.0','1', '1','1','2626.9', '1','1','1669.6', '1','1','957.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093853.0','1044447.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003411.0','1018880.0','30', '23','19','74301.93', '22','17','56754.94', '10','5','17546.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091675.0','1044447.0','1', '1','1','6024.36', '1','1','4950.72', '1','1','1073.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005590.0','1018880.0','1', '1','1','4350.0', '1','0','0.0', '1','1','4350.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093854.0','1044447.0','13', '10','9','34688.74', '10','9','34546.69', '3','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005591.0','1018880.0','2', '2','2','9645.54', '2','2','8906.34', '2','1','739.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093855.0','1044447.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005592.0','1018880.0','10', '10','8','12033.35', '10','7','9135.0', '5','3','2898.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093856.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005593.0','1018880.0','335', '289','247','1227892.85', '278','237','675096.17', '154','98','552796.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093857.0','1044447.0','1', '1','1','2402.56', '1','1','2402.56', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005594.0','1018880.0','25', '16','14','69403.52', '15','14','43462.93', '8','5','25940.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093858.0','1044447.0','1', '1','1','4897.56', '1','1','4897.56', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005595.0','1018880.0','4', '3','3','6388.02', '3','3','6238.02', '2','1','150.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093859.0','1044447.0','1', '1','1','1150.84', '1','1','1150.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005596.0','1018880.0','9', '9','5','9211.09', '9','5','7771.65', '6','2','1439.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093860.0','1044447.0','1', '1','1','141.29', '1','0','0.0', '1','1','141.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005597.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093861.0','1044447.0','2', '2','2','3796.22', '2','2','3796.22', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005598.0','1018880.0','1', '1','1','5672.62', '1','1','5100.0', '1','1','572.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093862.0','1044447.0','1', '1','1','319.2', '1','1','319.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005599.0','1018880.0','7', '5','3','7987.14', '4','3','7987.14', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093863.0','1044447.0','7', '7','6','19463.0', '7','6','19463.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005600.0','1018880.0','7', '6','6','30656.55', '6','6','22466.66', '4','2','8189.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093864.0','1044447.0','1', '1','1','1077.98', '1','1','1077.98', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005601.0','1018880.0','38', '30','24','51299.12', '26','21','30608.26', '14','8','20690.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093865.0','1044447.0','14', '13','5','6128.91', '13','5','5757.06', '9','1','371.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005602.0','1018880.0','38', '27','22','64622.46', '27','22','63651.01', '10','3','971.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093866.0','1044447.0','2', '2','2','14756.17', '2','2','1645.92', '2','1','13110.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003187.0','1018880.0','1', '1','1','3204.44', '1','1','3204.44', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091451.0','1044447.0','10', '9','8','19113.59', '9','8','18451.1', '6','3','662.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005603.0','1018880.0','1', '1','1','381.17', '1','1','239.12', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093867.0','1044447.0','123', '105','69','194567.71', '103','65','168887.23', '45','21','25680.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005604.0','1018880.0','5', '4','4','52060.2', '4','4','22234.55', '3','3','29825.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093868.0','1044447.0','8', '8','5','7538.0', '8','4','3393.0', '7','3','4145.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005605.0','1018880.0','1', '1','1','3957.34', '1','1','3957.34', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093869.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003113.0','1018880.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091377.0','1044447.0','2', '2','2','8192.36', '2','2','6884.0', '2','1','1308.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005606.0','1018880.0','15', '13','8','30867.86', '13','8','30867.86', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093870.0','1044447.0','4', '4','4','12625.19', '4','3','1804.08', '3','3','10821.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003269.0','1018880.0','4', '4','3','9027.62', '4','3','8960.38', '2','1','67.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091533.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003599.0','1018880.0','2', '2','1','334.0', '2','1','334.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091863.0','1044447.0','2', '2','2','10659.82', '2','2','9806.27', '2','1','853.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005607.0','1018880.0','27', '20','14','45107.2', '19','13','40564.69', '8','5','4542.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093871.0','1044447.0','45', '43','37','312200.94', '43','37','119019.5', '31','23','193181.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005608.0','1018880.0','5', '5','4','6505.62', '5','4','3034.72', '3','3','3470.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093872.0','1044447.0','3', '3','2','11914.5', '3','2','1646.98', '2','1','10267.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005609.0','1018880.0','4', '4','4','23281.91', '4','4','20578.0', '2','1','2703.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093873.0','1044447.0','4', '4','2','7043.0', '4','2','7043.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003306.0','1018880.0','23', '23','11','29291.27', '22','11','29291.27', '15','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091570.0','1044447.0','19', '15','9','24377.74', '15','9','23090.56', '7','3','1287.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005610.0','1018880.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093874.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005611.0','1018880.0','2', '2','2','1580.92', '2','1','484.14', '2','1','1096.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093875.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005612.0','1018880.0','5', '4','2','47037.81', '4','2','16746.0', '4','2','30291.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093876.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003459.0','1018880.0','9', '8','7','25201.92', '8','7','25201.92', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091723.0','1044447.0','4', '3','1','778.0', '3','1','778.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005613.0','1018880.0','2', '2','2','3996.0', '2','2','3996.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093877.0','1044447.0','3', '3','2','9675.78', '2','2','6573.0', '2','1','3102.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003189.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091453.0','1044447.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005614.0','1018880.0','4', '3','3','4574.0', '3','2','3406.04', '1','1','1167.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093878.0','1044447.0','4', '4','2','6949.54', '4','2','6949.54', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003307.0','1018880.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091571.0','1044447.0','10', '6','4','27497.92', '5','4','5485.0', '4','2','22012.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003115.0','1018880.0','59', '57','42','109417.93', '56','42','103458.7', '20','7','5959.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091379.0','1044447.0','52', '39','28','67204.08', '37','23','47865.54', '16','11','19338.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005615.0','1018880.0','15', '14','9','27024.52', '14','9','19565.3', '5','2','7459.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093879.0','1044447.0','15', '14','7','15711.51', '14','7','8498.36', '4','1','7213.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005616.0','1018880.0','2', '2','1','6264.0', '2','1','6264.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093880.0','1044447.0','1', '1','1','278.33', '1','0','0.0', '1','1','278.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005617.0','1018880.0','10', '10','8','25284.44', '9','8','24941.87', '6','1','342.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093881.0','1044447.0','2', '2','2','8810.72', '2','2','8810.72', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005618.0','1018880.0','1', '1','1','9864.61', '1','1','1204.0', '1','1','8660.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093882.0','1044447.0','13', '12','12','66159.83', '12','12','39068.81', '6','5','27091.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005619.0','1018880.0','6', '4','2','4426.65', '4','2','2782.56', '3','1','1644.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093883.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005620.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093884.0','1044447.0','1', '1','1','352.44', '1','1','352.44', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005621.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093885.0','1044447.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005622.0','1018880.0','9', '7','6','52227.38', '7','4','18562.06', '6','4','33665.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093886.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005623.0','1018880.0','1', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093887.0','1044447.0','335', '291','141','331442.43', '270','99','225728.76', '167','77','105713.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005624.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093888.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005625.0','1018880.0','1', '1','1','3608.51', '1','1','1160.0', '1','1','2448.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093889.0','1044447.0','1', '1','1','873.15', '1','0','0.0', '1','1','873.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005626.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093890.0','1044447.0','1', '1','1','26.2', '1','1','26.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005627.0','1018880.0','1', '1','1','67.6', '1','0','0.0', '1','1','67.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093891.0','1044447.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005628.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093892.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005629.0','1018880.0','162', '141','94','166812.55', '136','53','105901.22', '94','64','60911.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093893.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005630.0','1018880.0','3', '3','2','5182.45', '3','1','5041.16', '2','1','141.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093894.0','1044447.0','121', '101','82','426888.61', '95','77','253570.72', '62','41','173317.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005631.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093895.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005632.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093896.0','1044447.0','13', '10','7','18978.62', '10','6','16922.71', '4','4','2055.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005633.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093897.0','1044447.0','1', '1','1','920.47', '1','0','0.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005634.0','1018880.0','1', '1','1','118.3', '1','0','0.0', '1','1','118.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093898.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005635.0','1018880.0','1', '1','1','171.07', '1','0','0.0', '1','1','171.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093899.0','1044447.0','7', '6','4','7381.17', '6','2','4989.92', '4','3','2391.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003187.0','1018880.0','1', '1','1','2029.77', '1','1','1160.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091451.0','1044447.0','1', '1','1','2876.3', '1','1','1590.0', '1','1','1286.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005636.0','1018880.0','432', '323','169','350228.22', '299','125','215350.01', '156','86','134878.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093900.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005637.0','1018880.0','942', '861','570','1491466.84', '799','350','764042.55', '562','388','727424.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093901.0','1044447.0','1049', '938','423','621185.44', '918','254','324185.01', '437','259','297000.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003463.0','1018880.0','1593', '1450','770','1447707.59', '1432','468','738901.47', '763','489','708806.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091727.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005638.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093902.0','1044447.0','204', '180','99','418262.0', '175','82','201459.44', '124','58','216802.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005639.0','1018880.0','257', '228','123','251835.69', '219','88','160743.26', '112','64','91092.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093903.0','1044447.0','3', '3','1','4177.17', '3','1','4177.17', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005640.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093904.0','1044447.0','74', '70','45','44093.46', '67','18','19420.02', '43','31','24673.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005641.0','1018880.0','192', '173','108','346776.93', '163','77','217498.98', '114','75','129277.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093905.0','1044447.0','120', '101','61','186134.65', '93','49','121399.02', '55','31','64735.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005642.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093906.0','1044447.0','1', '1','1','878.22', '1','0','0.0', '1','1','878.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2003382.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2091646.0','1044447.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005643.0','1018880.0','1', '1','1','588.45', '1','1','580.0', '1','1','8.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093907.0','1044447.0','117', '91','37','32528.98', '82','18','15664.01', '43','22','16864.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005644.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093908.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005645.0','1018880.0','7', '6','4','9396.51', '6','3','5132.19', '4','3','4264.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093909.0','1044447.0','43', '28','18','29881.05', '28','17','28963.16', '11','5','917.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005646.0','1018880.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093910.0','1044447.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005647.0','1018880.0','1', '1','1','1323.64', '1','1','1323.64', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093911.0','1044447.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005648.0','1018880.0','7', '7','5','8280.74', '7','3','6972.92', '6','3','1307.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093912.0','1044447.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005649.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093913.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005650.0','1018880.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093914.0','1044447.0','6', '6','6','6984.03', '6','4','5442.18', '3','3','1541.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005651.0','1018880.0','5', '4','3','13021.44', '4','3','12100.97', '3','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093915.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005652.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093916.0','1044447.0','90', '80','52','104116.15', '79','39','80511.49', '47','28','23604.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005653.0','1018880.0','1', '1','1','1737.37', '1','1','1507.19', '1','1','230.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093917.0','1044447.0','2', '1','1','1096.57', '1','0','0.0', '1','1','1096.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005654.0','1018880.0','7', '5','2','1810.52', '5','0','0.0', '3','2','1810.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093918.0','1044447.0','1', '1','1','2634.5', '1','1','2550.0', '1','1','84.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005655.0','1018880.0','1', '1','1','1035.75', '1','1','182.88', '1','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093919.0','1044447.0','86', '79','50','93964.26', '76','27','57744.33', '51','31','36219.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005656.0','1018880.0','3', '3','2','4469.59', '3','2','4469.59', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093920.0','1044447.0','930', '894','696','3641756.54', '881','575','1519512.77', '709','493','2122243.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005657.0','1018880.0','182', '148','84','109869.92', '136','36','58727.3', '91','53','51142.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093921.0','1044447.0','99', '90','65','74773.82', '84','12','31032.81', '67','57','43741.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005658.0','1018880.0','12', '12','10','12863.82', '11','6','6173.0', '8','7','6690.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093922.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005659.0','1018880.0','1', '1','1','1333.25', '1','1','477.0', '1','1','856.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093923.0','1044447.0','1', '1','1','2550.0', '1','1','2550.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005660.0','1018880.0','3', '3','3','6597.07', '3','2','1752.0', '3','3','4845.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093924.0','1044447.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003398.0','1018880.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091662.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2003255.0','1018880.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2091519.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005661.0','1018880.0','3', '3','2','5249.69', '3','2','4687.1', '1','1','562.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093925.0','1044447.0','1302', '1204','660','1135603.45', '1159','354','569760.41', '730','436','565843.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005662.0','1018880.0','2', '2','2','30304.09', '2','2','21980.0', '1','1','8324.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093926.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005663.0','1018880.0','19', '16','11','12637.59', '16','7','8151.6', '13','7','4485.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093927.0','1044447.0','1', '1','1','2178.25', '1','1','954.0', '1','1','1224.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005664.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093928.0','1044447.0','1', '1','1','2446.3', '1','1','1160.0', '1','1','1286.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005665.0','1018880.0','144', '123','54','64739.48', '119','32','41430.87', '54','28','23308.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093929.0','1044447.0','265', '241','149','290886.02', '226','76','191629.88', '151','99','99256.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005666.0','1018880.0','59', '51','37','137162.82', '50','36','91061.03', '30','14','46101.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093930.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005667.0','1018880.0','12', '9','5','8775.15', '9','3','5898.75', '6','3','2876.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093931.0','1044447.0','15', '14','13','35798.31', '14','8','18678.01', '11','11','17120.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005668.0','1018880.0','1', '1','1','1270.64', '1','1','896.33', '1','1','374.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093932.0','1044447.0','1', '1','1','1448.17', '1','1','477.0', '1','1','971.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005669.0','1018880.0','1', '1','1','404.6', '1','1','404.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093933.0','1044447.0','157', '141','79','107581.65', '138','51','86497.44', '76','37','21084.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001453.0', '2005670.0','1018880.0','158', '122','61','85043.51', '108','42','61289.89', '75','31','23753.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005898.0', '2093934.0','1044447.0','2', '2','2','6464.2', '2','1','4109.47', '2','2','2354.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005671.0','1018880.0','2', '2','2','1287.29', '2','1','1278.84', '2','1','8.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093935.0','1044447.0','29', '25','12','32042.58', '22','10','19687.2', '15','8','12355.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005672.0','1018880.0','1', '1','1','954.0', '1','1','954.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093936.0','1044447.0','184', '156','80','220756.38', '145','56','123630.07', '93','47','97126.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005673.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093937.0','1044447.0','1', '1','1','587.76', '1','1','511.71', '1','1','76.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005674.0','1018880.0','1173', '1052','623','1465679.07', '992','389','548272.49', '714','421','917406.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093938.0','1044447.0','343', '308','187','323458.84', '290','114','188321.96', '185','127','135136.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005675.0','1018880.0','1', '1','1','3504.0', '1','1','3504.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093939.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005676.0','1018880.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093940.0','1044447.0','1', '1','1','3520.28', '1','1','1590.0', '1','1','1930.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005677.0','1018880.0','47', '41','24','74043.42', '41','16','46312.86', '23','14','27730.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093941.0','1044447.0','134', '117','83','152870.35', '111','45','94662.11', '83','59','58208.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005678.0','1018880.0','1', '1','1','17217.52', '1','1','11182.0', '1','1','6035.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093942.0','1044447.0','2', '2','1','1431.17', '1','1','199.4', '2','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005679.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093943.0','1044447.0','1', '1','1','1162.21', '1','0','0.0', '1','1','1162.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005680.0','1018880.0','2', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093944.0','1044447.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005681.0','1018880.0','2004', '1837','1077','2764158.85', '1767','702','1183508.32', '1102','718','1580650.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093945.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005682.0','1018880.0','1', '1','1','1492.0', '1','1','1492.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093946.0','1044447.0','599', '552','340','779558.47', '521','156','411648.1', '386','269','367910.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005683.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093947.0','1044447.0','1505', '1364','645','887407.84', '1320','315','413379.9', '694','444','474027.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005684.0','1018880.0','52', '37','29','95084.66', '32','24','58209.17', '20','12','36875.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093948.0','1044447.0','2', '2','1','519.98', '2','1','519.98', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005685.0','1018880.0','1', '1','1','527.7', '1','1','477.0', '1','1','50.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093949.0','1044447.0','3', '2','1','886.67', '2','0','0.0', '2','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005686.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093950.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005687.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093951.0','1044447.0','22', '21','15','50952.63', '20','10','29414.59', '15','9','21538.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005688.0','1018880.0','2', '1','1','3504.0', '1','1','3504.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093952.0','1044447.0','15', '14','10','15605.09', '13','6','13787.72', '10','6','1817.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005689.0','1018880.0','1969', '1807','757','1067377.6', '1783','607','634193.22', '759','259','433184.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093953.0','1044447.0','112', '99','43','58773.53', '92','16','29088.97', '52','31','29684.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005690.0','1018880.0','139', '122','64','126588.52', '117','37','85416.85', '68','45','41171.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093954.0','1044447.0','1', '1','1','920.47', '1','0','0.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005691.0','1018880.0','93', '85','58','101215.68', '84','34','50843.02', '44','34','50372.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093955.0','1044447.0','4', '4','3','26627.26', '4','3','14665.0', '2','2','11962.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005692.0','1018880.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093956.0','1044447.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005693.0','1018880.0','650', '586','245','373572.03', '570','141','184213.78', '281','152','189358.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093957.0','1044447.0','1', '1','1','1642.0', '1','1','1642.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005694.0','1018880.0','1', '1','1','920.47', '1','0','0.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093958.0','1044447.0','332', '309','156','218099.78', '302','71','114673.48', '164','111','103426.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005695.0','1018880.0','7', '7','3','4485.09', '7','1','1336.0', '4','3','3149.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093959.0','1044447.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005696.0','1018880.0','1', '1','1','449.0', '1','1','449.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093960.0','1044447.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005697.0','1018880.0','1', '1','1','869.77', '1','0','0.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093961.0','1044447.0','5', '5','1','277.5', '4','0','0.0', '2','1','277.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005698.0','1018880.0','2', '2','2','10624.38', '2','2','5646.16', '1','1','4978.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093962.0','1044447.0','1', '1','1','494.89', '1','1','494.89', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005699.0','1018880.0','147', '134','73','94778.37', '128','14','41820.65', '81','63','52957.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093963.0','1044447.0','1', '1','1','1590.0', '1','1','1590.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005700.0','1018880.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093964.0','1044447.0','1', '1','1','955.96', '1','0','0.0', '1','1','955.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005701.0','1018880.0','325', '288','153','280517.19', '269','106','190021.71', '170','85','90495.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093965.0','1044447.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005702.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093966.0','1044447.0','115', '98','34','43794.22', '90','10','23117.22', '50','30','20677.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005703.0','1018880.0','1', '1','1','954.0', '1','1','954.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093967.0','1044447.0','6', '6','4','1562.81', '6','1','552.77', '5','3','1010.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005704.0','1018880.0','1', '1','1','962.72', '1','0','0.0', '1','1','962.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093968.0','1044447.0','23', '22','12','33472.32', '21','8','19213.39', '12','8','14258.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005705.0','1018880.0','157', '138','63','78594.2', '131','32','54655.71', '76','41','23938.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093969.0','1044447.0','23', '19','12','24621.08', '18','8','19299.37', '12','8','5321.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005706.0','1018880.0','1', '1','1','861.32', '1','0','0.0', '1','1','861.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093970.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005707.0','1018880.0','1', '1','1','1921.76', '1','1','1921.76', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2093971.0','1044447.0','1', '1','1','612.31', '1','1','612.31', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005708.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2093972.0','1044447.0','1', '1','1','3448.0', '1','1','3448.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005709.0','1018880.0','1', '1','1','3474.04', '1','1','3474.04', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2093973.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005710.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2093974.0','1044447.0','745', '601','298','655260.29', '580','195','378697.43', '292','177','276562.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005711.0','1018880.0','2', '2','2','4066.87', '2','2','2067.0', '2','2','1999.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2093975.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005712.0','1018880.0','213', '197','128','370392.34', '192','95','236065.23', '113','74','134327.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2093976.0','1044447.0','1', '1','1','4425.27', '1','1','4425.27', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005713.0','1018880.0','1', '1','1','500.0', '0','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2093977.0','1044447.0','1', '1','1','971.17', '1','0','0.0', '1','1','971.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005714.0','1018880.0','1', '1','1','6082.25', '1','1','3541.0', '1','1','2541.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2093978.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005715.0','1018880.0','1', '1','1','122.03', '1','0','0.0', '1','1','122.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2093979.0','1044447.0','16', '15','6','4569.05', '15','2','556.94', '8','5','4012.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005716.0','1018880.0','1', '1','1','6917.97', '1','1','6082.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2093980.0','1044447.0','3038', '2802','1545','2580042.96', '2708','836','1260389.48', '1594','1025','1319653.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005717.0','1018880.0','1', '1','1','5100.0', '1','1','5100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093981.0','1044447.0','1191', '1071','560','907835.53', '1012','246','311740.0', '700','429','596095.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005718.0','1018880.0','17', '14','4','9728.3', '14','4','9610.0', '5','1','118.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093982.0','1044447.0','202', '184','105','177881.04', '177','64','103106.57', '116','65','74774.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005719.0','1018880.0','416', '374','236','436744.06', '351','101','264113.44', '243','179','172630.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093983.0','1044447.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005720.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093984.0','1044447.0','3', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005721.0','1018880.0','351', '331','191','639611.88', '323','146','356040.59', '191','105','283571.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093985.0','1044447.0','2', '1','1','1121.92', '1','0','0.0', '1','1','1121.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005722.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093986.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005723.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093987.0','1044447.0','1', '1','1','4719.94', '1','1','1642.0', '1','1','3077.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005724.0','1018880.0','1', '1','1','608.32', '1','1','608.32', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093988.0','1044447.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005725.0','1018880.0','1', '1','1','491.0', '1','1','491.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093989.0','1044447.0','16', '12','5','9858.54', '12','4','7507.58', '6','2','2350.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005726.0','1018880.0','5', '3','2','10903.46', '3','2','6254.94', '1','1','4648.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093990.0','1044447.0','1063', '927','458','653585.33', '887','210','268968.23', '544','340','384617.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005727.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093991.0','1044447.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005728.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093992.0','1044447.0','7', '7','1','2199.54', '6','1','491.0', '5','1','1708.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005729.0','1018880.0','45', '44','21','27667.12', '40','8','14646.85', '25','16','13020.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093993.0','1044447.0','65', '59','32','108314.87', '58','26','40849.31', '37','16','67465.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005730.0','1018880.0','1', '1','1','561.0', '1','1','561.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093994.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005731.0','1018880.0','496', '449','287','678944.97', '429','223','417605.6', '261','159','261339.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093995.0','1044447.0','14', '13','7','12945.06', '13','6','10748.88', '6','4','2196.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005732.0','1018880.0','55', '47','22','30208.82', '43','8','20642.4', '24','14','9566.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093996.0','1044447.0','32', '28','19','78968.72', '27','17','50574.05', '14','12','28394.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005733.0','1018880.0','220', '193','74','138292.41', '184','30','58021.59', '93','57','80270.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093997.0','1044447.0','278', '230','110','137978.85', '209','12','17919.89', '149','106','120058.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005734.0','1018880.0','41', '35','18','32390.56', '32','7','20907.86', '19','13','11482.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2093998.0','1044447.0','76', '72','58','229286.41', '64','39','99528.58', '59','47','129757.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005735.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2093999.0','1044447.0','1', '1','1','1116.85', '1','0','0.0', '1','1','1116.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005736.0','1018880.0','288', '275','182','611865.7', '263','136','352110.72', '208','120','259754.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094000.0','1044447.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005737.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094001.0','1044447.0','1', '1','1','491.0', '1','1','491.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005738.0','1018880.0','11', '9','2','1004.97', '7','0','0.0', '5','2','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094002.0','1044447.0','132', '119','62','86677.76', '117','27','44232.22', '64','46','42445.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005739.0','1018880.0','2', '1','1','2083.54', '1','1','2083.54', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094003.0','1044447.0','2', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005740.0','1018880.0','904', '846','415','637990.63', '818','225','421660.25', '417','244','216330.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094004.0','1044447.0','14', '11','8','22060.96', '11','6','14368.0', '9','6','7692.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005741.0','1018880.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094005.0','1044447.0','2982', '2791','1574','3167432.58', '2703','1027','1506929.93', '1646','980','1660502.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005742.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094006.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005743.0','1018880.0','236', '217','115','314534.68', '213','87','151191.38', '140','54','163343.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094007.0','1044447.0','1', '1','1','903.57', '1','0','0.0', '1','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005744.0','1018880.0','3', '3','2','1422.13', '3','1','156.56', '2','2','1265.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094008.0','1044447.0','2', '2','1','122.03', '2','0','0.0', '2','1','122.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005745.0','1018880.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094009.0','1044447.0','301', '268','158','275407.73', '258','86','173497.09', '160','108','101910.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005746.0','1018880.0','14', '14','10','66904.08', '14','8','18918.03', '12','6','47986.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094010.0','1044447.0','12', '11','10','60799.87', '11','10','39577.57', '9','5','21222.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005747.0','1018880.0','143', '130','52','105087.71', '120','44','70418.09', '67','20','34669.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094011.0','1044447.0','131', '109','54','70076.56', '96','16','31757.57', '71','46','38318.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005748.0','1018880.0','114', '105','52','46160.8', '102','4','5085.68', '70','51','41075.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094012.0','1044447.0','82', '68','30','51122.82', '64','16','35403.89', '35','18','15718.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005749.0','1018880.0','108', '95','49','68860.59', '91','30','44586.55', '55','29','24274.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094013.0','1044447.0','19', '18','11','22315.73', '18','6','18857.02', '11','6','3458.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005750.0','1018880.0','3', '3','3','2169.14', '3','0','0.0', '3','3','2169.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094014.0','1044447.0','3', '3','2','7729.24', '3','2','5862.95', '2','2','1866.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005751.0','1018880.0','467', '427','296','962695.94', '411','235','613364.46', '279','174','349331.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094015.0','1044447.0','12', '10','7','26215.41', '10','6','23578.42', '5','3','2636.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005752.0','1018880.0','65', '59','26','49144.14', '56','8','32789.81', '33','20','16354.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094016.0','1044447.0','4433', '4197','2257','2579861.55', '4095','879','1054462.64', '2553','1746','1525398.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005753.0','1018880.0','7', '7','2','1790.24', '7','0','0.0', '4','2','1790.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094017.0','1044447.0','1', '1','1','856.25', '1','0','0.0', '1','1','856.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005754.0','1018880.0','122', '109','60','135163.19', '105','47','103898.78', '54','28','31264.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094018.0','1044447.0','160', '145','48','64279.28', '139','19','38319.63', '63','36','25959.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005755.0','1018880.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094019.0','1044447.0','1', '1','1','660.85', '1','0','0.0', '1','1','660.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005756.0','1018880.0','48', '41','17','24978.59', '38','11','16737.92', '22','9','8240.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094020.0','1044447.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005757.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094021.0','1044447.0','1', '1','1','1239.92', '1','1','387.05', '1','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005758.0','1018880.0','531', '492','226','591544.86', '481','131','258485.62', '271','157','333059.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094022.0','1044447.0','1', '1','1','8812.2', '1','1','982.0', '1','1','7830.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005759.0','1018880.0','334', '321','206','537952.76', '314','120','265114.64', '218','151','272838.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094023.0','1044447.0','1', '1','1','912.02', '1','0','0.0', '1','1','912.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005760.0','1018880.0','10', '10','6','17334.28', '10','5','6021.46', '7','5','11312.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094024.0','1044447.0','100', '95','45','43125.4', '92','11','11087.56', '59','39','32037.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005761.0','1018880.0','1', '1','1','2621.79', '1','1','2621.79', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094025.0','1044447.0','13', '11','5','3703.19', '10','0','0.0', '7','5','3703.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005762.0','1018880.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094026.0','1044447.0','2', '1','1','2458.27', '1','1','1004.0', '1','1','1454.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005763.0','1018880.0','137', '114','54','61240.09', '105','20','29417.24', '66','40','31822.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094027.0','1044447.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005764.0','1018880.0','12', '12','7','7241.52', '12','5','6304.15', '5','2','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094028.0','1044447.0','11', '10','7','27675.84', '10','5','19934.65', '5','3','7741.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005765.0','1018880.0','1', '1','1','725.72', '1','1','725.72', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094029.0','1044447.0','197', '159','75','99088.94', '153','19','34029.32', '92','66','65059.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005766.0','1018880.0','25', '25','10','31349.72', '23','5','16238.84', '9','7','15110.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094030.0','1044447.0','1', '1','1','449.0', '1','1','449.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005767.0','1018885.0','3', '3','2','3413.9', '3','2','1748.0', '3','1','1665.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094031.0','1044452.0','102', '94','55','94294.52', '92','41','67472.76', '54','26','26821.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005768.0','1018885.0','136', '119','84','179207.16', '116','56','107756.87', '79','55','71450.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094032.0','1044452.0','1', '1','1','1562.0', '1','1','1562.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005769.0','1018885.0','100', '92','57','118804.8', '88','26','86073.03', '65','40','32731.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094033.0','1044452.0','28', '25','15','63138.58', '22','14','36535.36', '18','10','26603.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005770.0','1018885.0','50', '44','27','45008.04', '42','14','38035.46', '28','19','6972.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094034.0','1044452.0','765', '686','440','857851.63', '648','254','540589.57', '452','295','317262.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005771.0','1018885.0','275', '247','102','161434.24', '236','35','77596.25', '141','88','83837.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094035.0','1044452.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005772.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094036.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005773.0','1018885.0','1', '1','1','2162.94', '1','1','882.35', '1','1','1280.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094037.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005774.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094038.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005775.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094039.0','1044452.0','60', '52','31','127959.38', '51','26','74047.61', '35','17','53911.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005776.0','1018885.0','8', '7','1','5100.0', '6','1','5100.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094040.0','1044452.0','3', '3','2','1388.75', '2','0','0.0', '2','2','1388.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005777.0','1018885.0','2', '1','1','908.64', '1','0','0.0', '1','1','908.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094041.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005778.0','1018885.0','436', '389','225','527546.15', '373','169','327305.97', '216','115','200240.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094042.0','1044452.0','7', '6','3','5119.94', '5','1','3448.0', '4','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005779.0','1018885.0','13', '10','5','10339.61', '10','3','8581.48', '6','2','1758.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094043.0','1044452.0','99', '88','41','49212.68', '85','11','25279.21', '48','34','23933.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005780.0','1018885.0','44', '37','18','23925.01', '32','9','16649.99', '26','11','7275.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094044.0','1044452.0','1', '1','1','235.25', '1','0','0.0', '1','1','235.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005781.0','1018885.0','63', '60','45','108210.07', '58','34','79442.43', '40','22','28767.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094045.0','1044452.0','346', '308','118','125504.97', '290','25','29854.26', '161','104','95650.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005782.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094046.0','1044452.0','1', '1','1','5998.0', '1','1','5998.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005783.0','1018885.0','56', '49','36','76755.63', '47','23','46367.68', '32','23','30387.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094047.0','1044452.0','322', '311','225','1145017.87', '301','177','596945.29', '245','174','548072.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005784.0','1018885.0','1846', '1666','969','2079094.51', '1608','576','971878.34', '1072','647','1107216.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094048.0','1044452.0','25', '21','15','30149.34', '20','10','25435.0', '13','9','4714.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005785.0','1018885.0','62', '59','29','44514.5', '56','10','24312.37', '32','22','20202.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094049.0','1044452.0','4', '4','1','6233.41', '4','1','982.0', '3','1','5251.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005786.0','1018885.0','2', '2','1','2016.58', '1','1','1275.0', '2','1','741.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094050.0','1044452.0','24', '22','13','20064.15', '19','4','10927.05', '12','9','9137.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005787.0','1018885.0','66', '64','24','48039.06', '61','4','6765.15', '34','20','41273.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094051.0','1044452.0','26', '23','7','15694.36', '23','5','12427.82', '8','3','3266.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005788.0','1018885.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094052.0','1044452.0','187', '164','89','156771.53', '147','50','74288.38', '103','64','82483.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005789.0','1018885.0','297', '266','166','259941.05', '242','53','121296.05', '204','144','138645.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094053.0','1044452.0','8', '7','6','23122.38', '7','4','15546.12', '5','4','7576.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005790.0','1018885.0','10', '10','7','11299.7', '9','4','6913.01', '8','5','4386.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094054.0','1044452.0','1', '1','1','2758.48', '1','1','1004.0', '1','1','1754.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005791.0','1018885.0','16', '8','3','28802.14', '7','2','11421.2', '5','2','17380.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094055.0','1044452.0','70', '62','36','116809.26', '59','33','76312.45', '37','19','40496.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005792.0','1018885.0','1', '1','1','861.32', '1','0','0.0', '1','1','861.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094056.0','1044452.0','2', '2','2','6271.99', '2','2','2958.6', '2','2','3313.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005793.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094057.0','1044452.0','1', '1','1','2899.03', '1','0','0.0', '1','1','2899.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005794.0','1018885.0','680', '654','447','2060767.23', '641','358','952905.3', '519','332','1107861.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094058.0','1044452.0','506', '460','202','464737.17', '444','149','288725.37', '256','102','176011.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005795.0','1018885.0','199', '188','101','140790.14', '181','49','89819.14', '113','71','50971.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094059.0','1044452.0','111', '100','53','61718.42', '98','11','18738.09', '68','48','42980.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005796.0','1018885.0','23', '22','14','32671.71', '21','9','14495.97', '14','11','18175.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094060.0','1044452.0','28', '25','17','34305.34', '22','8','26647.16', '14','9','7658.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005797.0','1018885.0','21', '19','13','71303.5', '19','11','42017.89', '12','10','29285.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094061.0','1044452.0','1', '1','1','6331.77', '1','1','5100.0', '1','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005798.0','1018885.0','640', '571','328','603729.45', '543','180','374540.34', '345','210','229189.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094062.0','1044452.0','2', '1','1','2236.89', '1','1','1477.78', '1','1','759.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005799.0','1018885.0','239', '208','98','222173.58', '198','61','91957.07', '126','56','130216.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094063.0','1044452.0','13', '12','9','24101.35', '12','8','18001.97', '9','6','6099.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005800.0','1018885.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094064.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005801.0','1018885.0','2', '2','2','3695.63', '2','1','1026.0', '1','1','2669.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094065.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005802.0','1018885.0','239', '216','127','386330.95', '208','106','269590.67', '111','58','116740.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094066.0','1044452.0','398', '368','212','668987.59', '354','123','362379.07', '238','150','306608.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005803.0','1018885.0','222', '191','88','171192.13', '174','43','85946.47', '117','60','85245.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094067.0','1044452.0','576', '539','350','584046.89', '529','163','323712.75', '379','268','260334.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005804.0','1018885.0','1', '1','1','513.0', '1','1','513.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094068.0','1044452.0','643', '598','337','973019.92', '584','252','534470.93', '342','188','438548.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005805.0','1018885.0','15', '10','7','70330.61', '10','6','30492.6', '7','5','39838.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094069.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005806.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094070.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005807.0','1018885.0','96', '87','23','25823.26', '81','6','7859.36', '45','19','17963.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094071.0','1044452.0','6', '5','1','1275.0', '5','1','1275.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005808.0','1018885.0','1', '1','1','562.17', '1','0','0.0', '1','1','562.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094072.0','1044452.0','5', '5','3','4634.08', '5','1','2550.0', '3','2','2084.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005809.0','1018885.0','382', '343','199','464892.26', '331','136','304600.18', '185','115','160292.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094073.0','1044452.0','1', '1','1','640.3', '1','0','0.0', '1','1','640.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005810.0','1018885.0','1', '1','1','4823.7', '1','1','1260.0', '1','1','3563.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094074.0','1044452.0','74', '69','50','99241.41', '67','35','75447.66', '42','26','23793.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005811.0','1018885.0','31', '27','14','23145.12', '26','8','13740.0', '21','9','9405.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094075.0','1044452.0','1', '1','1','3108.39', '1','1','1876.62', '1','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005812.0','1018885.0','1', '1','1','1357.67', '0','0','0.0', '1','1','1357.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094076.0','1044452.0','105', '97','29','86033.0', '97','16','48795.61', '43','18','37237.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005813.0','1018885.0','1', '1','1','8665.6', '1','1','1320.0', '1','1','7345.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094077.0','1044452.0','5', '5','1','1826.37', '4','1','1826.37', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005814.0','1018885.0','1', '1','1','3924.0', '1','1','3924.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094078.0','1044452.0','2', '2','1','1919.37', '2','1','982.0', '1','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005815.0','1018885.0','10', '9','8','36357.45', '9','6','19993.74', '8','7','16363.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094079.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005816.0','1018885.0','4', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094080.0','1044452.0','151', '129','60','148132.07', '122','37','65937.43', '70','35','82194.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005817.0','1018885.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094081.0','1044452.0','18', '14','10','15348.66', '13','6','9918.39', '7','6','5430.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005818.0','1018885.0','19', '19','13','20031.86', '17','6','12634.16', '13','10','7397.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094082.0','1044452.0','2', '2','2','8370.55', '2','2','8370.55', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005819.0','1018885.0','34', '30','19','39974.3', '28','12','27614.49', '23','12','12359.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094083.0','1044452.0','28', '21','6','13539.43', '17','5','13062.87', '7','1','476.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005820.0','1018885.0','1887', '1748','872','1882117.89', '1685','466','858919.01', '1060','619','1023198.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094084.0','1044452.0','11', '9','5','36045.83', '8','5','21589.0', '6','4','14456.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005821.0','1018885.0','1', '1','1','1675.8', '1','1','1642.0', '1','1','33.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094085.0','1044452.0','140', '128','80','148653.0', '124','49','88067.55', '75','50','60585.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005822.0','1018885.0','857', '775','428','929660.97', '734','203','317805.36', '520','330','611855.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094086.0','1044452.0','938', '840','400','568062.04', '815','160','284448.66', '484','302','283613.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005823.0','1018885.0','35', '33','18','43324.36', '33','10','13741.34', '19','13','29583.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094087.0','1044452.0','1195', '1104','549','883803.73', '1082','278','480146.61', '591','373','403657.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005824.0','1018885.0','243', '211','112','207068.31', '197','80','149828.9', '117','57','57239.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094088.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005825.0','1018885.0','57', '57','46','306274.08', '57','41','106723.77', '52','38','199550.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094089.0','1044452.0','118', '102','49','46394.41', '94','5','9558.48', '74','45','36835.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005826.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094090.0','1044452.0','15', '14','4','2922.48', '14','2','1191.39', '6','2','1731.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005827.0','1018885.0','982', '904','436','964291.32', '890','335','547602.2', '434','198','416689.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094091.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005828.0','1018885.0','1', '1','1','2121.46', '1','1','449.0', '1','1','1672.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094092.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005829.0','1018885.0','2', '2','2','1938.35', '2','2','1284.54', '2','1','653.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094093.0','1044452.0','42', '37','15','18256.86', '35','7','13026.95', '11','8','5229.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005830.0','1018885.0','1', '1','1','1004.3', '1','1','117.63', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094094.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005831.0','1018885.0','21', '19','15','39973.71', '19','14','29181.39', '12','9','10792.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094095.0','1044452.0','145', '136','61','129875.64', '127','43','86068.21', '77','32','43807.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005832.0','1018885.0','149', '127','54','110191.65', '115','25','54711.99', '86','41','55479.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094096.0','1044452.0','146', '127','86','261282.15', '120','69','189179.77', '78','50','72102.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005833.0','1018885.0','31', '27','13','20748.27', '26','4','12519.0', '16','9','8229.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094097.0','1044452.0','28', '27','19','49515.33', '26','11','30419.69', '19','14','19095.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005834.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094098.0','1044452.0','2', '2','1','4066.05', '2','1','898.0', '2','1','3168.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005835.0','1018885.0','5', '4','3','1820.94', '4','3','1820.94', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094099.0','1044452.0','37', '32','22','68727.54', '30','17','46395.04', '23','14','22332.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005836.0','1018885.0','40', '36','27','74149.19', '34','18','37641.35', '27','21','36507.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094100.0','1044452.0','2', '2','1','837.66', '2','0','0.0', '2','1','837.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005837.0','1018885.0','93', '87','63','145500.33', '83','47','105238.3', '56','38','40262.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094101.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005838.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094102.0','1044452.0','1', '1','1','6623.0', '1','1','1026.0', '1','1','5597.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005839.0','1018885.0','1', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094103.0','1044452.0','1', '1','1','1666.4', '1','1','1666.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005840.0','1018885.0','8', '6','4','10650.85', '6','4','7836.02', '4','1','2814.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094104.0','1044452.0','3', '2','2','29475.58', '2','2','15336.19', '2','2','14139.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005841.0','1018885.0','83', '81','46','112188.07', '80','37','89180.06', '37','18','23008.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094105.0','1044452.0','4', '4','4','6413.42', '4','2','1473.0', '3','3','4940.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005842.0','1018885.0','2', '2','1','2418.5', '2','1','2418.5', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094106.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001519.0', '2005843.0','1018885.0','4', '4','2','3956.58', '4','2','2814.0', '3','1','1142.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005899.0', '2094107.0','1044452.0','1', '1','1','3001.0', '1','1','2501.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005844.0','1018885.0','11', '10','4','6233.97', '9','3','5704.32', '4','2','529.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094108.0','1044452.0','71', '63','25','90299.23', '58','24','40829.98', '37','12','49469.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005845.0','1018885.0','5', '5','3','7697.32', '5','2','7460.72', '5','2','236.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094109.0','1044452.0','137', '126','81','69206.77', '116','14','17843.14', '90','71','51363.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005846.0','1018885.0','1', '1','1','16886.26', '1','1','2966.0', '1','1','13920.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094110.0','1044452.0','70', '63','28','25048.63', '60','7','9122.86', '32','22','15925.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005847.0','1018885.0','3', '3','1','903.57', '3','0','0.0', '2','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094111.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005848.0','1018885.0','1', '1','1','1264.3', '1','1','1264.3', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094112.0','1044452.0','172', '157','102','342518.89', '154','79','207626.77', '96','65','134892.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005849.0','1018885.0','3155', '2991','1774','1906580.52', '2888','659','658735.31', '1959','1397','1247845.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094113.0','1044452.0','2', '2','2','3553.67', '2','1','982.0', '2','2','2571.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005850.0','1018885.0','390', '341','196','425926.62', '328','108','276463.23', '202','132','149463.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094114.0','1044452.0','69', '60','33','74208.64', '60','18','45181.2', '41','24','29027.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005851.0','1018885.0','23', '20','6','5258.55', '20','1','457.26', '7','5','4801.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094115.0','1044452.0','338', '305','193','427445.12', '294','148','324309.9', '187','102','103135.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005852.0','1018885.0','1', '1','1','513.0', '1','1','513.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094116.0','1044452.0','20', '19','12','43085.53', '18','7','19858.84', '9','8','23226.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000059.0','1018885.0','2369', '2195','1075','1962560.56', '2150','671','1190311.21', '1028','593','772249.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088323.0','1044452.0','1', '1','1','1313.73', '1','0','0.0', '1','1','1313.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005853.0','1018885.0','135', '119','82','250872.08', '116','58','173190.33', '79','53','77681.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094117.0','1044452.0','333', '298','143','227589.81', '277','70','136116.17', '174','97','91473.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005854.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094118.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000188.0','1018885.0','5', '4','2','1520.4', '4','2','982.0', '3','1','538.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088452.0','1044452.0','1', '1','1','687.09', '1','1','687.09', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005855.0','1018885.0','832', '802','483','521042.42', '772','199','205860.19', '529','368','315182.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094119.0','1044452.0','1', '1','1','2535.0', '1','1','2535.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005856.0','1018885.0','1', '1','1','971.17', '1','0','0.0', '1','1','971.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094120.0','1044452.0','1', '1','1','4845.27', '1','1','3930.82', '1','1','914.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005857.0','1018885.0','5', '5','2','1405.57', '5','1','502.0', '3','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094121.0','1044452.0','73', '66','38','80701.24', '62','27','55073.88', '42','24','25627.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005858.0','1018885.0','296', '265','153','269978.98', '258','93','179590.24', '162','88','90388.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094122.0','1044452.0','1', '1','1','1221.01', '1','1','982.0', '1','1','239.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005859.0','1018885.0','5', '5','3','3292.04', '5','1','1275.0', '4','2','2017.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094123.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005860.0','1018885.0','34', '32','22','120935.31', '32','20','47815.0', '24','15','73120.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094124.0','1044452.0','1054', '934','432','505316.91', '906','164','251123.0', '494','320','254193.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005861.0','1018885.0','380', '353','133','286811.45', '338','102','179603.27', '197','62','107208.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094125.0','1044452.0','1177', '1061','493','612457.23', '1015','158','220254.21', '597','394','392203.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005862.0','1018885.0','1', '1','1','861.32', '1','0','0.0', '1','1','861.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094126.0','1044452.0','21', '19','10','7282.57', '19','1','491.0', '10','9','6791.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005863.0','1018885.0','3', '3','1','2535.0', '3','1','2535.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094127.0','1044452.0','96', '85','46','128954.37', '83','38','94754.97', '50','19','34199.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005864.0','1018885.0','129', '113','53','111563.92', '107','34','81873.85', '62','27','29690.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094128.0','1044452.0','335', '303','218','557587.12', '292','149','362987.2', '206','144','194599.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005865.0','1018885.0','193', '167','96','302286.57', '160','85','218148.15', '99','39','84138.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094129.0','1044452.0','239', '215','165','579925.63', '207','137','366371.39', '139','89','213554.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005866.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094130.0','1044452.0','1', '1','1','2347.27', '1','1','1502.85', '1','1','844.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005867.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094131.0','1044452.0','146', '127','41','96783.53', '123','22','46872.37', '49','26','49911.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005868.0','1018885.0','833', '776','351','515105.34', '757','118','211378.65', '422','272','303726.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094132.0','1044452.0','956', '881','469','713596.97', '836','165','346445.61', '549','385','367151.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2000116.0','1018885.0','179', '163','95','91956.43', '160','13','12744.52', '113','88','79211.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2088380.0','1044452.0','41', '35','23','31464.74', '34','7','18838.07', '24','18','12626.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2000186.0','1018885.0','45', '36','18','30213.33', '34','6','19484.48', '19','13','10728.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2088450.0','1044452.0','35', '30','19','29556.88', '29','12','22805.17', '19','11','6751.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005869.0','1018885.0','243', '210','89','199598.63', '199','55','117693.17', '129','54','81905.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094133.0','1044452.0','1', '1','1','1082.62', '1','1','1082.62', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005870.0','1018885.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094134.0','1044452.0','746', '690','235','309521.39', '681','87','147631.02', '290','174','161890.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000189.0','1018885.0','4', '4','2','1026.0', '4','2','1026.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088453.0','1044452.0','7', '4','1','1.69', '3','0','0.0', '3','1','1.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005871.0','1018885.0','1', '1','1','3350.91', '1','0','0.0', '1','1','3350.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094135.0','1044452.0','1', '1','1','1706.61', '1','1','701.64', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005872.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094136.0','1044452.0','14', '12','5','5637.78', '12','3','3702.2', '3','2','1935.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005873.0','1018885.0','16', '12','4','23499.78', '11','3','12221.44', '9','4','11278.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094137.0','1044452.0','128', '110','60','78377.0', '104','15','27603.89', '67','51','50773.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005874.0','1018885.0','353', '329','256','974023.43', '314','143','460358.65', '273','219','513664.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094138.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005875.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094139.0','1044452.0','3', '2','2','12313.65', '2','2','12144.65', '1','1','169.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005876.0','1018885.0','229', '208','105','209605.8', '199','51','113657.5', '138','76','95948.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094140.0','1044452.0','69', '63','26','67542.7', '57','13','38053.69', '30','19','29489.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005877.0','1018885.0','173', '148','66','141588.83', '137','42','82341.74', '69','34','59247.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094141.0','1044452.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005878.0','1018885.0','1', '1','1','2226.41', '1','1','1356.64', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094142.0','1044452.0','3', '3','1','1955.94', '3','1','513.0', '2','1','1442.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005879.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094143.0','1044452.0','65', '59','28','40881.6', '57','16','30699.21', '29','18','10182.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005880.0','1018885.0','27', '19','11','23689.08', '17','3','17667.45', '14','9','6021.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094144.0','1044452.0','1380', '1327','734','2061936.3', '1294','485','953602.64', '831','465','1108333.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005881.0','1018885.0','436', '394','189','273253.59', '375','81','137319.92', '208','137','135933.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094145.0','1044452.0','4', '4','2','3047.18', '4','1','1805.27', '2','2','1241.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005882.0','1018885.0','1864', '1753','1052','2485857.7', '1701','596','1213239.96', '1156','759','1272617.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094146.0','1044452.0','3', '3','1','835.97', '3','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005883.0','1018885.0','198', '175','71','132437.24', '172','46','85298.99', '80','38','47138.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094147.0','1044452.0','1', '1','1','3942.39', '1','1','3349.0', '1','1','593.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000494.0','1018885.0','2', '2','2','3699.55', '2','2','2602.98', '2','2','1096.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088758.0','1044452.0','612', '555','304','917558.32', '528','172','528448.08', '332','217','389110.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005884.0','1018885.0','1', '1','1','4202.0', '1','1','4202.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094148.0','1044452.0','88', '78','36','72300.24', '74','26','57315.51', '42','14','14984.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005885.0','1018885.0','26', '23','20','52664.34', '22','16','42555.39', '17','12','10108.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094149.0','1044452.0','904', '850','573','1526864.82', '817','319','690113.19', '635','425','836751.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005886.0','1018885.0','1', '1','1','920.47', '1','0','0.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094150.0','1044452.0','3858', '3493','2122','4517499.54', '3377','1428','2234975.63', '2055','1310','2282523.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005887.0','1018885.0','94', '82','20','43076.27', '81','10','27520.72', '28','16','15555.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094151.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005888.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094152.0','1044452.0','887', '809','544','1235488.6', '763','250','652164.48', '581','435','583324.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005889.0','1018885.0','1', '1','1','4925.41', '1','1','4030.8', '1','1','894.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094153.0','1044452.0','100', '87','34','42444.75', '84','17','25713.36', '43','21','16731.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2000164.0','1018885.0','1', '1','1','3931.19', '1','1','3652.58', '1','1','278.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2088428.0','1044452.0','181', '164','105','299484.62', '155','72','196700.4', '105','64','102784.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005890.0','1018885.0','1', '1','1','9265.3', '1','1','3810.0', '1','1','5455.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094154.0','1044452.0','5246', '4963','2909','5583422.76', '4880','1541','2461681.76', '2963','1990','3121741.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005891.0','1018885.0','6', '6','4','13543.57', '6','4','10775.47', '5','3','2768.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094155.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005892.0','1018885.0','65', '54','25','34484.68', '51','9','16547.01', '34','20','17937.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094156.0','1044452.0','80', '77','25','35420.05', '77','10','24356.96', '29','19','11063.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005893.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094157.0','1044452.0','128', '123','87','201420.04', '118','45','112392.03', '88','70','89028.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005894.0','1018885.0','1', '1','1','6312.03', '1','1','4433.75', '1','1','1878.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094158.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005895.0','1018885.0','108', '100','67','263644.55', '93','43','151597.47', '79','54','112047.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094159.0','1044452.0','4', '2','2','4225.41', '2','0','0.0', '2','2','4225.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005896.0','1018885.0','503', '471','245','621528.67', '448','174','414723.79', '275','117','206804.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094160.0','1044452.0','5', '3','2','1293.03', '3','1','338.76', '2','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005897.0','1018885.0','4', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094161.0','1044452.0','107', '95','52','84341.47', '90','18','49210.57', '63','44','35130.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005898.0','1018885.0','1', '1','1','8794.13', '1','1','1526.0', '1','1','7268.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094162.0','1044452.0','73', '64','34','68902.79', '57','15','25962.24', '48','26','42940.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005899.0','1018885.0','143', '127','92','251245.06', '118','67','182836.27', '81','55','68408.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094163.0','1044452.0','2', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005900.0','1018885.0','251', '230','111','175758.68', '217','52','107108.72', '123','72','68649.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094164.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005901.0','1018885.0','765', '725','437','688889.3', '694','193','306451.08', '461','334','382438.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094165.0','1044452.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005902.0','1018885.0','62', '57','42','151336.91', '56','30','96042.79', '42','31','55294.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094166.0','1044452.0','84', '75','30','45704.39', '73','20','35073.47', '30','19','10630.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005903.0','1018885.0','4', '3','3','13509.75', '3','3','3590.32', '3','3','9919.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094167.0','1044452.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2000033.0','1018885.0','389', '355','169','385699.26', '345','120','229413.41', '205','91','156285.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2088297.0','1044452.0','339', '302','197','522528.52', '281','110','298171.59', '211','144','224356.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005904.0','1018885.0','1', '1','1','1320.0', '1','1','1320.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094168.0','1044452.0','6', '6','3','6033.99', '6','2','3675.0', '3','2','2358.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005905.0','1018885.0','2089', '1867','877','1323447.39', '1832','585','800612.95', '805','471','522834.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094169.0','1044452.0','50', '43','22','22637.01', '39','5','8171.06', '28','18','14465.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005906.0','1018885.0','111', '101','70','221894.73', '99','44','136648.96', '65','51','85245.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094170.0','1044452.0','1', '1','1','1026.0', '1','1','1026.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005907.0','1018885.0','2', '2','2','2748.0', '2','2','2748.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094171.0','1044452.0','3847', '3584','2089','4363765.27', '3503','1175','1985317.98', '2159','1408','2378447.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005908.0','1018885.0','69', '56','36','70844.99', '51','18','50488.49', '38','25','20356.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094172.0','1044452.0','728', '647','317','624239.69', '618','192','379018.23', '374','190','245221.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005909.0','1018885.0','46', '37','17','19948.09', '35','6','7331.63', '17','12','12616.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094173.0','1044452.0','21', '19','8','13372.56', '18','2','3124.0', '12','8','10248.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005910.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094174.0','1044452.0','1', '1','1','1429.99', '1','1','513.0', '1','1','916.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005911.0','1018885.0','495', '457','338','779303.89', '433','144','396916.57', '351','278','382387.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094175.0','1044452.0','3', '3','2','4334.16', '3','1','3413.69', '2','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005912.0','1018885.0','1', '1','1','1260.0', '1','1','1260.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094176.0','1044452.0','8', '8','5','5914.83', '8','4','3730.14', '6','3','2184.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005913.0','1018885.0','77', '66','31','58795.07', '64','15','37291.38', '36','19','21503.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094177.0','1044452.0','1', '1','1','513.0', '1','1','513.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005914.0','1018885.0','2', '2','1','9695.96', '2','1','6360.0', '2','1','3335.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094178.0','1044452.0','2', '2','2','9599.7', '2','2','2640.0', '2','2','6959.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005915.0','1018885.0','228', '204','109','279218.86', '192','73','144381.91', '133','61','134836.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094179.0','1044452.0','7', '4','1','1275.0', '4','1','1275.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000037.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088301.0','1044452.0','9', '6','3','4595.44', '6','3','4052.85', '3','1','542.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005916.0','1018885.0','133', '125','83','213230.0', '124','50','121557.08', '81','60','91672.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094180.0','1044452.0','194', '181','71','81881.05', '176','19','39482.59', '87','58','42398.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005917.0','1018885.0','23', '22','19','65016.0', '22','12','21218.66', '18','18','43797.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094181.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005918.0','1018885.0','4', '3','2','13787.55', '3','1','1640.0', '2','2','12147.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094182.0','1044452.0','114', '107','68','103429.23', '103','21','57146.03', '82','55','46283.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005919.0','1018885.0','316', '297','176','390606.01', '273','75','143482.49', '219','137','247123.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094183.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005920.0','1018885.0','49', '47','29','53383.16', '41','11','21450.82', '37','25','31932.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094184.0','1044452.0','1', '1','1','15354.6', '1','1','12274.0', '1','1','3080.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005921.0','1018885.0','579', '518','330','689830.7', '488','173','427623.57', '358','226','262207.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094185.0','1044452.0','132', '111','67','169345.91', '104','46','78919.54', '70','36','90426.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005922.0','1018885.0','544', '490','236','422356.38', '469','98','229632.32', '257','177','192724.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094186.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005923.0','1018885.0','14', '11','9','25206.67', '11','8','8087.71', '7','3','17118.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094187.0','1044452.0','2881', '2711','1762','4904643.84', '2612','1082','1887016.79', '1875','1283','3017627.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005924.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094188.0','1044452.0','1255', '1155','481','790499.53', '1132','218','436235.68', '591','343','354263.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005925.0','1018885.0','1', '1','1','915.49', '1','1','687.0', '1','1','228.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094189.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005926.0','1018885.0','151', '131','60','145310.63', '122','43','90836.71', '83','37','54473.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094190.0','1044452.0','131', '109','51','120809.25', '99','30','69686.91', '55','29','51122.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005927.0','1018885.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094191.0','1044452.0','466', '433','308','1133572.14', '417','264','755269.56', '301','182','378302.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000343.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088607.0','1044452.0','7', '6','4','12835.72', '6','4','11487.0', '4','2','1348.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005928.0','1018885.0','258', '236','162','715545.81', '227','130','313199.0', '172','111','402346.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094192.0','1044452.0','3', '3','2','6071.17', '3','1','5100.0', '1','1','971.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005929.0','1018885.0','1', '1','1','12271.62', '1','1','4190.0', '1','1','8081.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094193.0','1044452.0','2', '1','1','1645.79', '1','1','1275.0', '1','1','370.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005930.0','1018885.0','81', '76','41','48880.88', '72','14','21556.96', '49','33','27323.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094194.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005931.0','1018885.0','11', '11','9','39744.78', '11','8','32388.65', '11','7','7356.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094195.0','1044452.0','308', '282','193','366301.47', '273','101','210386.29', '207','146','155915.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005932.0','1018885.0','47', '44','8','10472.9', '40','5','8526.46', '14','3','1946.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094196.0','1044452.0','76', '70','26','52741.79', '67','16','35200.84', '29','11','17540.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005933.0','1018885.0','24', '21','8','24462.71', '21','7','12639.5', '7','3','11823.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094197.0','1044452.0','1533', '1469','865','1389116.46', '1431','347','671234.84', '928','686','717881.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005934.0','1018885.0','5', '4','3','3840.09', '4','2','2550.0', '3','2','1290.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094198.0','1044452.0','458', '415','213','607143.21', '396','130','312915.14', '254','143','294228.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005935.0','1018885.0','13', '13','10','17555.78', '13','7','14871.36', '10','4','2684.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094199.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005936.0','1018885.0','26', '18','13','41196.74', '16','10','18373.87', '14','8','22822.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094200.0','1044452.0','45', '37','17','36280.23', '37','9','17036.0', '24','13','19244.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005937.0','1018885.0','1', '1','1','4743.8', '1','1','4702.0', '1','1','41.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094201.0','1044452.0','314', '283','123','220366.83', '272','71','159376.67', '126','72','60990.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005938.0','1018885.0','342', '326','198','520450.65', '315','131','336781.25', '207','135','183669.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094202.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005939.0','1018885.0','350', '301','146','249608.87', '295','73','160261.77', '151','96','89347.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094203.0','1044452.0','2', '2','2','1824.04', '2','0','0.0', '2','2','1824.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005940.0','1018885.0','1', '1','1','243.7', '1','0','0.0', '1','1','243.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094204.0','1044452.0','184', '174','138','397090.25', '173','126','350421.58', '105','58','46668.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005941.0','1018885.0','13', '12','4','8134.26', '12','2','4023.0', '4','2','4111.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094205.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005942.0','1018885.0','7', '7','2','4178.67', '5','2','3943.42', '4','1','235.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094206.0','1044452.0','423', '393','180','378507.45', '385','115','265596.7', '179','102','112910.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005943.0','1018885.0','9', '9','5','5249.91', '9','1','1374.0', '5','5','3875.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094207.0','1044452.0','18', '16','13','40643.94', '16','11','37609.21', '6','4','3034.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005944.0','1018885.0','9', '8','5','8653.72', '7','2','5487.46', '5','4','3166.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094208.0','1044452.0','29', '25','15','31315.34', '25','10','26288.86', '9','7','5026.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005945.0','1018885.0','41', '38','22','44943.68', '37','19','30058.6', '20','11','14885.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094209.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000095.0','1018885.0','122', '113','49','110479.35', '110','33','77830.36', '67','26','32648.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088359.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005946.0','1018885.0','93', '89','38','64999.0', '83','14','41348.01', '55','28','23650.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094210.0','1044452.0','44', '35','20','55709.45', '33','17','40050.89', '12','6','15658.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005947.0','1018885.0','340', '321','156','370347.15', '296','108','172734.47', '218','113','197612.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094211.0','1044452.0','1', '1','1','6740.0', '1','1','6740.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000100.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088364.0','1044452.0','32', '28','18','37606.37', '28','13','27663.6', '14','10','9942.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2000212.0','1018885.0','108', '92','57','119016.73', '89','44','88997.15', '50','27','30019.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2088476.0','1044452.0','275', '245','152','260608.2', '228','79','157023.02', '159','103','103585.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005948.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094212.0','1044452.0','6', '5','3','8707.01', '4','0','0.0', '4','3','8707.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005949.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094213.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005950.0','1018885.0','1', '1','1','866.39', '1','0','0.0', '1','1','866.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094214.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000214.0','1018885.0','50', '47','26','50197.8', '46','14','32960.7', '25','17','17237.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088478.0','1044452.0','91', '78','43','118454.16', '75','36','80311.09', '42','25','38143.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005951.0','1018885.0','4', '3','3','4215.03', '3','2','3924.0', '3','2','291.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094215.0','1044452.0','171', '151','86','156107.78', '143','60','120766.58', '76','33','35341.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005952.0','1018885.0','62', '56','28','30122.78', '53','13','20195.76', '38','21','9927.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094216.0','1044452.0','433', '386','213','354467.46', '370','119','205004.48', '225','140','149462.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005953.0','1018885.0','4', '4','2','9035.95', '4','2','2520.68', '2','1','6515.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094217.0','1044452.0','31', '26','17','21541.46', '25','9','9278.13', '15','11','12263.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005954.0','1018885.0','1', '1','1','811.0', '1','1','584.2', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094218.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005955.0','1018885.0','528', '470','263','499728.29', '441','146','335959.13', '282','170','163769.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094219.0','1044452.0','969', '920','617','1854027.86', '878','406','905164.53', '653','449','948863.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005956.0','1018885.0','1', '1','1','1466.48', '1','1','1098.0', '1','1','368.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094220.0','1044452.0','19', '14','9','10177.12', '14','4','5044.74', '11','8','5132.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005957.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094221.0','1044452.0','2', '2','2','26270.02', '2','2','4469.59', '2','1','21800.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005958.0','1018885.0','5', '3','2','327.52', '3','1','100.72', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094222.0','1044452.0','10', '10','8','16108.8', '10','6','15839.75', '4','2','269.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005959.0','1018885.0','84', '77','25','30402.98', '73','10','13869.34', '40','19','16533.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094223.0','1044452.0','615', '576','311','776807.53', '557','202','391279.48', '362','208','385528.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005960.0','1018885.0','1', '1','1','937.37', '1','0','0.0', '1','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094224.0','1044452.0','11', '9','2','2155.97', '9','0','0.0', '5','2','2155.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005961.0','1018885.0','1', '1','1','2902.82', '1','1','1342.4', '1','1','1560.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094225.0','1044452.0','199', '176','88','157466.39', '162','50','92107.03', '101','61','65359.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005962.0','1018885.0','52', '48','34','95514.9', '48','23','47627.86', '34','24','47887.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094226.0','1044452.0','1', '1','1','2933.39', '1','1','1422.0', '1','1','1511.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005963.0','1018885.0','17', '16','7','14972.48', '16','4','11314.0', '9','6','3658.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094227.0','1044452.0','171', '158','100','203873.68', '156','60','116293.11', '95','68','87580.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005964.0','1018885.0','10', '9','5','11654.73', '9','2','6936.61', '5','5','4718.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094228.0','1044452.0','1', '1','1','104.25', '0','0','0.0', '1','1','104.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005965.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094229.0','1044452.0','62', '53','27','59189.93', '52','14','19792.2', '24','19','39397.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005966.0','1018885.0','1', '1','1','1543.78', '1','1','1543.78', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094230.0','1044452.0','1', '1','1','4701.0', '1','1','4532.0', '1','1','169.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000035.0','1018885.0','383', '343','207','450110.95', '328','141','277408.34', '206','129','172702.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088299.0','1044452.0','9', '9','6','7973.57', '9','5','7746.77', '4','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005967.0','1018885.0','15', '12','6','5799.03', '11','2','1114.0', '8','5','4685.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094231.0','1044452.0','588', '535','250','369259.61', '511','118','157916.23', '301','187','211343.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005968.0','1018885.0','142', '128','81','91249.54', '121','23','37690.22', '84','64','53559.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094232.0','1044452.0','64', '56','40','73164.15', '53','24','57269.59', '40','25','15894.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005969.0','1018885.0','26', '26','16','13410.32', '25','5','4081.27', '18','13','9329.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094233.0','1044452.0','10', '9','2','236.68', '8','1','135.28', '3','1','101.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005970.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094234.0','1044452.0','10', '10','4','25403.4', '10','4','14344.68', '6','4','11058.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005971.0','1018885.0','41', '36','24','110159.27', '34','19','40090.98', '23','13','70068.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094235.0','1044452.0','392', '351','244','608145.51', '338','158','387479.06', '257','172','220666.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005972.0','1018885.0','389', '372','225','556312.91', '348','136','228484.19', '273','174','327828.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094236.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005973.0','1018885.0','1', '1','1','1452.57', '1','1','549.0', '1','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094237.0','1044452.0','3', '2','1','7218.97', '2','1','6214.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005974.0','1018885.0','2', '2','1','920.47', '2','0','0.0', '2','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094238.0','1044452.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005975.0','1018885.0','75', '70','41','58894.35', '69','16','30554.32', '45','29','28340.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094239.0','1044452.0','1', '1','1','844.42', '1','0','0.0', '1','1','844.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005976.0','1018885.0','39', '38','14','24726.16', '37','6','6533.65', '15','10','18192.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094240.0','1044452.0','1', '1','1','549.0', '1','1','549.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005977.0','1018885.0','8', '7','5','18991.73', '7','4','8310.61', '5','2','10681.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094241.0','1044452.0','205', '190','97','210720.88', '187','71','114156.25', '118','59','96564.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005978.0','1018885.0','17', '14','7','10734.34', '12','3','7508.07', '7','6','3226.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094242.0','1044452.0','9', '8','6','20783.02', '8','4','16540.0', '5','4','4243.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005979.0','1018885.0','13', '13','7','15867.99', '13','7','12142.32', '7','3','3725.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094243.0','1044452.0','8', '7','3','3673.06', '7','2','2777.94', '5','1','895.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005980.0','1018885.0','1', '1','1','1919.97', '1','1','1084.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094244.0','1044452.0','51', '45','29','71678.07', '44','24','50631.41', '31','20','21046.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005981.0','1018885.0','11', '8','4','20467.7', '8','3','8604.0', '4','2','11863.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094245.0','1044452.0','1', '1','1','1916.0', '1','1','1416.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005982.0','1018885.0','3', '3','3','11796.57', '3','2','10200.0', '3','3','1596.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094246.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005983.0','1018885.0','9', '6','5','11411.23', '6','3','5542.0', '5','3','5869.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094247.0','1044452.0','5', '5','3','3051.28', '5','3','3051.28', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005984.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094248.0','1044452.0','136', '129','58','58839.85', '127','18','20074.36', '68','49','38765.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005985.0','1018885.0','228', '204','93','143979.38', '196','39','54565.58', '111','76','89413.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094249.0','1044452.0','26', '23','14','14846.54', '21','6','5950.2', '14','12','8896.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005986.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094250.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005987.0','1018885.0','30', '28','12','10404.66', '28','4','4408.99', '14','8','5995.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094251.0','1044452.0','538', '486','288','679220.6', '465','171','370399.46', '320','199','308821.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005988.0','1018885.0','1851', '1613','1017','2507546.75', '1548','621','1105480.76', '1047','708','1402065.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094252.0','1044452.0','11', '11','8','12387.91', '9','5','8188.21', '10','6','4199.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000322.0','1018885.0','2', '2','2','3434.8', '2','2','3434.8', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088586.0','1044452.0','2025', '1887','1023','1713560.46', '1828','397','674286.17', '1153','832','1039274.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005989.0','1018885.0','4', '3','1','2550.0', '3','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094253.0','1044452.0','32', '28','21','33023.67', '28','9','17230.78', '18','18','15792.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005990.0','1018885.0','278', '246','148','267761.11', '231','94','166615.96', '151','91','101145.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094254.0','1044452.0','130', '110','63','149550.37', '104','38','100412.01', '72','40','49138.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005991.0','1018885.0','14', '11','2','1593.64', '9','2','1593.64', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094255.0','1044452.0','7', '6','2','1114.0', '5','2','1114.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005992.0','1018885.0','2', '2','2','1321.89', '2','1','191.52', '1','1','1130.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094256.0','1044452.0','1', '1','1','500.0', '1','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005993.0','1018885.0','753', '674','433','976827.21', '630','279','426796.31', '489','300','550030.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094257.0','1044452.0','498', '444','228','230962.27', '424','69','76585.56', '281','184','154376.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005994.0','1018885.0','7', '5','4','3850.99', '5','3','2297.94', '3','3','1553.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094258.0','1044452.0','1', '1','1','230.23', '1','1','230.23', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005995.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094259.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005996.0','1018885.0','67', '64','37','102098.7', '64','27','56539.35', '33','21','45559.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094260.0','1044452.0','227', '202','117','231367.37', '193','62','139504.33', '129','80','91863.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005997.0','1018885.0','459', '404','222','467327.87', '379','139','235353.24', '259','144','231974.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094261.0','1044452.0','670', '605','291','679541.74', '585','184','407236.86', '302','176','272304.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2005998.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094262.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2005999.0','1018885.0','4', '2','2','17910.71', '2','2','11158.3', '2','2','6752.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094263.0','1044452.0','464', '448','314','824144.56', '438','252','630989.12', '272','146','193155.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2000137.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2088401.0','1044452.0','3', '3','2','1504.55', '3','0','0.0', '2','2','1504.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006000.0','1018885.0','4', '4','2','2032.64', '4','2','1135.13', '3','2','897.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094264.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006001.0','1018885.0','469', '420','216','333873.59', '391','92','162875.78', '260','157','170997.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094265.0','1044452.0','1', '1','1','477.0', '1','1','477.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000073.0','1018885.0','70', '68','54','175259.03', '68','39','118214.86', '46','30','57044.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088337.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000139.0','1018885.0','28', '26','20','37391.01', '25','12','28279.25', '21','15','9111.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088403.0','1044452.0','35', '31','18','36364.56', '31','13','27493.07', '15','10','8871.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006002.0','1018885.0','1', '1','1','1166.37', '1','1','262.8', '1','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094266.0','1044452.0','24', '22','8','15870.08', '22','5','13561.34', '14','5','2308.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006003.0','1018885.0','7', '6','1','852.87', '5','0','0.0', '2','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094267.0','1044452.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006004.0','1018885.0','224', '200','86','105393.39', '188','34','52003.4', '109','61','53389.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094268.0','1044452.0','68', '66','42','93316.09', '62','23','60546.75', '44','32','32769.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006005.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094269.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006006.0','1018885.0','1', '1','1','954.0', '1','1','954.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094270.0','1044452.0','386', '346','171','257949.7', '315','59','103001.34', '215','136','154948.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006007.0','1018885.0','2', '2','1','1832.0', '2','1','1832.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094271.0','1044452.0','13', '12','8','37523.99', '10','6','25621.7', '10','5','11902.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006008.0','1018885.0','15', '13','8','20028.64', '12','6','18713.72', '5','3','1314.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094272.0','1044452.0','1', '1','1','11154.0', '1','1','11154.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006009.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094273.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006010.0','1018885.0','2069', '1931','1064','2048961.12', '1887','562','1130753.15', '1093','717','918207.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094274.0','1044452.0','1', '1','1','11726.11', '1','1','1098.0', '1','1','10628.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006011.0','1018885.0','1', '1','1','4896.59', '1','1','4334.0', '1','1','562.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094275.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006012.0','1018885.0','11', '9','3','3707.39', '9','2','2632.79', '2','1','1074.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094276.0','1044452.0','850', '807','453','1155753.98', '774','308','595252.56', '566','303','560501.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006013.0','1018885.0','208', '181','112','200440.02', '171','62','122463.33', '113','78','77976.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094277.0','1044452.0','55', '47','29','59583.69', '47','19','33178.14', '29','16','26405.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006014.0','1018885.0','1', '1','1','4304.78', '1','1','1604.27', '1','1','2700.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094278.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006015.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094279.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006016.0','1018885.0','1', '1','1','869.15', '1','1','869.15', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094280.0','1044452.0','142', '130','83','239816.52', '123','54','155028.44', '99','57','84788.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000063.0','1018885.0','1', '1','1','2696.08', '1','0','0.0', '1','1','2696.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088327.0','1044452.0','9', '9','4','7755.36', '9','4','7755.36', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006017.0','1018885.0','587', '547','399','1460606.68', '523','276','861490.14', '393','276','599116.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094281.0','1044452.0','435', '372','198','245339.08', '351','80','95706.68', '239','154','149632.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006018.0','1018885.0','347', '321','210','658770.09', '311','167','432749.66', '206','117','226020.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094282.0','1044452.0','8', '5','4','6866.68', '5','2','3599.36', '3','2','3267.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2000165.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2088429.0','1044452.0','1', '1','1','15234.57', '1','1','5787.0', '1','1','9447.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006019.0','1018885.0','3', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094283.0','1044452.0','610', '555','270','480766.44', '526','156','296352.73', '334','154','184413.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000118.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088382.0','1044452.0','812', '753','262','559010.82', '745','170','313162.28', '359','154','245848.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006020.0','1018885.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094284.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006021.0','1018885.0','6', '5','4','17911.04', '5','4','14800.48', '3','2','3110.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094285.0','1044452.0','63', '62','30','76721.85', '62','20','35287.96', '40','23','41433.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000173.0','1018885.0','148', '134','41','50435.38', '125','12','20801.35', '57','35','29634.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088437.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006022.0','1018885.0','1', '1','1','1700.0', '0','0','0.0', '1','1','1700.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094286.0','1044452.0','432', '387','129','245172.94', '369','71','123132.55', '171','79','122040.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006023.0','1018885.0','580', '474','182','366501.73', '460','123','245307.6', '182','91','121194.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094287.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006024.0','1018885.0','2', '2','1','3143.62', '2','1','665.0', '2','1','2478.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094288.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006025.0','1018885.0','1003', '909','317','421420.13', '889','168','232845.08', '366','199','188575.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094289.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006026.0','1018885.0','170', '141','85','204304.09', '138','71','154214.7', '65','31','50089.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094290.0','1044452.0','1452', '1356','546','774303.89', '1330','211','345084.09', '659','414','429219.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006027.0','1018885.0','1032', '921','473','912259.35', '884','323','616020.73', '489','250','296238.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094291.0','1044452.0','1', '1','1','2184.0', '1','1','2184.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006028.0','1018885.0','6', '5','1','84.5', '5','0','0.0', '3','1','84.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094292.0','1044452.0','1', '1','1','977.93', '1','0','0.0', '1','1','977.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006029.0','1018885.0','138', '129','48','122379.26', '125','29','67860.26', '66','33','54519.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094293.0','1044452.0','28', '26','14','20313.15', '24','7','12859.91', '18','9','7453.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006030.0','1018885.0','2', '2','1','908.59', '2','1','908.59', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094294.0','1044452.0','343', '300','140','231893.96', '288','80','125457.28', '171','87','106436.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006031.0','1018885.0','7', '7','4','11310.58', '7','3','10356.31', '3','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094295.0','1044452.0','1', '1','1','2611.37', '1','0','0.0', '1','1','2611.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2000177.0','1018885.0','22', '18','8','9199.1', '18','4','6473.18', '8','4','2725.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2088441.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006032.0','1018885.0','122', '117','74','137462.79', '113','51','87571.01', '75','43','49891.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094296.0','1044452.0','179', '139','61','98060.3', '130','27','35312.18', '84','46','62748.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006033.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094297.0','1044452.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006034.0','1018885.0','1331', '1245','831','2131441.39', '1191','661','1235391.76', '859','473','896049.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094298.0','1044452.0','100', '90','57','89717.48', '87','32','56712.6', '53','36','33004.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006035.0','1018885.0','1', '1','1','2578.99', '1','1','2152.0', '1','1','426.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094299.0','1044452.0','390', '361','188','363850.49', '353','116','214002.25', '203','110','149848.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006036.0','1018885.0','1043', '951','422','827364.82', '926','302','520561.77', '427','204','306803.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094300.0','1044452.0','3', '3','2','2667.39', '3','2','2238.92', '1','1','428.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006037.0','1018885.0','11', '11','6','13708.93', '11','4','4800.4', '6','4','8908.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094301.0','1044452.0','8', '8','6','11135.46', '8','4','6598.62', '4','4','4536.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006038.0','1018885.0','2734', '2560','1711','4906970.91', '2471','1335','2594377.71', '1685','1021','2312593.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094302.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006039.0','1018885.0','2', '2','2','6430.0', '2','2','6430.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094303.0','1044452.0','1', '1','1','869.77', '1','0','0.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2000028.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2088292.0','1044452.0','496', '457','229','219251.35', '440','67','73281.1', '248','183','145970.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006040.0','1018885.0','75', '68','50','163597.83', '65','42','121937.13', '49','30','41660.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094304.0','1044452.0','496', '461','273','560373.49', '448','154','331466.4', '239','165','228907.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000171.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088435.0','1044452.0','1', '1','1','2890.0', '1','1','2890.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006041.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094305.0','1044452.0','1', '1','1','886.67', '1','0','0.0', '1','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000143.0','1018885.0','352', '322','173','398701.61', '312','118','251623.43', '171','98','147078.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088407.0','1044452.0','27', '25','15','29060.97', '24','7','10757.41', '15','12','18303.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006042.0','1018885.0','996', '942','552','1464493.27', '922','421','994204.61', '542','274','470288.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094306.0','1044452.0','14', '13','8','12831.04', '13','5','10712.6', '5','3','2118.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006043.0','1018885.0','1', '1','1','1330.0', '1','1','1330.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094307.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006044.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094308.0','1044452.0','105', '94','32','49679.93', '90','16','36920.58', '51','20','12759.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006045.0','1018885.0','49', '40','14','12061.21', '39','3','3641.0', '20','12','8420.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094309.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006046.0','1018885.0','3', '3','2','5326.8', '3','1','5100.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094310.0','1044452.0','2549', '2405','1745','6420258.72', '2340','1170','2828159.75', '1770','1325','3592098.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006047.0','1018885.0','18', '17','6','11273.32', '16','6','7760.66', '5','1','3512.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094311.0','1044452.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006048.0','1018885.0','573', '523','186','272633.72', '509','78','137410.28', '261','136','135223.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094312.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006049.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094313.0','1044452.0','141', '133','89','83779.41', '133','18','23506.66', '95','77','60272.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006050.0','1018885.0','199', '182','133','351363.19', '173','94','211067.29', '133','96','140295.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094314.0','1044452.0','2442', '2243','1195','2808529.91', '2178','899','1940031.1', '1141','573','868498.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006051.0','1018885.0','1', '1','1','19410.71', '1','1','11574.0', '1','1','7836.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094315.0','1044452.0','419', '372','197','497530.08', '358','159','387259.37', '180','84','110270.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2000167.0','1018885.0','1640', '1478','800','1930291.97', '1426','528','925684.49', '918','501','1004607.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2088431.0','1044452.0','1', '1','1','2580.62', '1','1','2580.62', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006052.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094316.0','1044452.0','16', '8','2','4654.42', '6','1','3810.0', '3','1','844.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006053.0','1018885.0','20', '17','8','7870.23', '16','3','2835.27', '11','6','5034.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094317.0','1044452.0','36', '32','20','52365.22', '30','16','39713.94', '20','12','12651.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006054.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094318.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006055.0','1018885.0','355', '319','170','403815.48', '305','127','213731.63', '212','84','190083.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094319.0','1044452.0','1', '1','1','1933.97', '1','1','1098.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006056.0','1018885.0','143', '123','60','136042.1', '120','52','106418.6', '50','16','29623.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094320.0','1044452.0','33', '27','16','19073.86', '27','9','10781.56', '14','10','8292.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006057.0','1018885.0','40', '38','16','34732.7', '35','11','20009.31', '18','11','14723.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094321.0','1044452.0','3', '3','1','1640.0', '3','1','1640.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006058.0','1018885.0','4487', '4171','2501','5079942.18', '4055','1245','2175462.55', '2612','1875','2904479.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094322.0','1044452.0','2568', '2392','1023','2184401.06', '2292','623','1066207.51', '1490','711','1118193.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000169.0','1018885.0','1819', '1675','814','1666890.0', '1611','499','887942.13', '968','533','778947.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088433.0','1044452.0','814', '760','243','354453.71', '732','106','202599.25', '343','169','151854.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006059.0','1018885.0','156', '144','48','60763.68', '140','13','27379.71', '82','40','33383.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094323.0','1044452.0','867', '825','382','804555.24', '799','204','423310.39', '465','252','381244.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006060.0','1018885.0','516', '443','221','516983.91', '419','135','260403.31', '273','152','256580.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094324.0','1044452.0','3', '3','2','2472.97', '3','1','1275.0', '1','1','1197.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006061.0','1018885.0','1', '1','1','4339.24', '1','1','1374.0', '1','1','2965.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094325.0','1044452.0','3', '2','1','1640.0', '2','1','1640.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006062.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094326.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006063.0','1018885.0','823', '713','381','943876.5', '669','242','414354.83', '454','244','529521.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094327.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006064.0','1018885.0','7', '7','1','76.05', '7','0','0.0', '4','1','76.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094328.0','1044452.0','1100', '1006','529','1084488.72', '963','342','685933.78', '553','298','398554.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000178.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088442.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006065.0','1018885.0','203', '152','63','137238.34', '145','55','117937.5', '55','21','19300.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094329.0','1044452.0','1', '1','1','731.15', '1','1','731.15', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006066.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094330.0','1044452.0','1', '1','1','5954.05', '1','1','1646.0', '1','1','4308.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006067.0','1018885.0','1781', '1650','691','857420.23', '1602','184','260472.64', '873','581','596947.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094331.0','1044452.0','1', '1','1','1646.0', '1','1','1646.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006068.0','1018885.0','98', '86','42','67413.72', '82','17','34518.66', '53','32','32895.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094332.0','1044452.0','3', '3','3','11311.57', '3','2','8910.0', '3','3','2401.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006069.0','1018885.0','345', '315','123','408428.12', '310','104','301729.9', '128','51','106698.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094333.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006070.0','1018885.0','116', '102','51','93243.68', '100','33','68685.98', '46','24','24557.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094334.0','1044452.0','1', '1','1','3789.0', '1','1','3789.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006071.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094335.0','1044452.0','61', '54','18','39125.42', '51','10','21870.9', '20','10','17254.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000241.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088505.0','1044452.0','89', '81','35','92896.38', '79','28','61521.77', '41','16','31374.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001508.0', '2006072.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005901.0', '2094336.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006073.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094337.0','1044452.0','2897', '2546','1521','3185609.53', '2470','893','1785906.82', '1472','1003','1399702.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006074.0','1018885.0','1', '1','1','866.39', '1','0','0.0', '1','1','866.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094338.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006075.0','1018885.0','5', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094339.0','1044452.0','1', '1','1','16260.94', '1','1','1016.0', '1','1','15244.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006076.0','1018885.0','798', '749','410','999501.4', '731','243','466304.75', '439','270','533196.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094340.0','1044452.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006077.0','1018885.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094341.0','1044452.0','480', '431','195','336181.63', '414','110','203137.41', '241','116','133044.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006078.0','1018885.0','1', '1','1','1577.02', '1','1','665.0', '1','1','912.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094342.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006079.0','1018885.0','414', '373','180','184086.76', '364','53','59453.45', '203','146','124633.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094343.0','1044452.0','3', '3','2','22469.46', '3','1','5174.0', '3','2','17295.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006080.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094344.0','1044452.0','786', '755','446','995253.58', '739','232','535144.18', '457','320','460109.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006081.0','1018885.0','3', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094345.0','1044452.0','4', '1','1','510.92', '1','1','10.92', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006082.0','1018885.0','139', '131','50','61314.5', '128','20','32464.84', '72','37','28849.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094346.0','1044452.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006083.0','1018885.0','1352', '1233','798','2153382.91', '1187','630','1149580.09', '769','459','1003802.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094347.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006084.0','1018885.0','228', '208','120','369984.57', '201','85','251951.31', '117','72','118033.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094348.0','1044452.0','17', '9','1','1560.0', '8','1','1560.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006085.0','1018885.0','1', '1','1','1501.8', '1','1','1275.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094349.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006086.0','1018885.0','118', '110','73','143119.69', '103','52','108688.77', '79','45','34430.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094350.0','1044452.0','258', '217','106','138555.7', '207','49','72304.25', '127','72','66251.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006087.0','1018885.0','4', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094351.0','1044452.0','4', '4','2','1330.0', '4','2','1330.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006088.0','1018885.0','1', '1','1','1524.66', '1','1','687.0', '1','1','837.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094352.0','1044452.0','1', '1','1','2152.0', '1','1','2152.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006089.0','1018885.0','906', '801','404','705598.66', '778','210','367120.14', '405','271','338478.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094353.0','1044452.0','323', '278','84','112508.05', '267','49','73576.32', '115','43','38931.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006090.0','1018885.0','88', '76','50','75615.72', '72','28','41282.44', '51','32','34333.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094354.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006091.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094355.0','1044452.0','240', '214','109','193647.7', '205','65','113784.75', '104','60','79862.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006092.0','1018885.0','10', '9','4','1361.47', '9','2','629.6', '4','2','731.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094356.0','1044452.0','4', '3','2','1431.4', '3','1','1330.0', '3','1','101.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006093.0','1018885.0','126', '117','68','197827.65', '114','35','90863.1', '74','45','106964.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094357.0','1044452.0','1743', '1495','867','2258042.76', '1429','678','1378893.58', '801','423','879149.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006094.0','1018885.0','284', '240','97','192145.96', '234','70','121609.87', '105','48','70536.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094358.0','1044452.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006095.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094359.0','1044452.0','548', '483','193','490943.14', '473','145','280892.59', '226','97','210050.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006096.0','1018885.0','1', '1','1','2642.74', '1','1','1226.0', '1','1','1416.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094360.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006097.0','1018885.0','1', '1','1','1628.48', '1','1','1260.0', '1','1','368.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094361.0','1044452.0','125', '110','44','95382.59', '102','30','66546.92', '53','22','28835.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006098.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094362.0','1044452.0','98', '85','24','58288.94', '85','17','45938.22', '27','11','12350.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006099.0','1018885.0','11', '9','4','3448.48', '9','0','0.0', '6','4','3448.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094363.0','1044452.0','28', '25','13','31746.34', '24','10','20637.79', '13','7','11108.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006100.0','1018885.0','103', '84','40','85301.96', '75','24','37433.0', '60','30','47868.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094364.0','1044452.0','1', '1','1','549.0', '1','1','549.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006101.0','1018885.0','391', '366','131','257532.16', '353','70','156029.46', '169','90','101502.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094365.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006102.0','1018885.0','817', '779','384','875615.94', '761','269','503418.26', '467','220','372197.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094366.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006103.0','1018885.0','60', '56','26','87113.06', '52','23','55958.12', '30','12','31154.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094367.0','1044452.0','1', '1','1','2110.97', '1','1','1275.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006104.0','1018885.0','60', '44','19','49363.98', '39','17','21647.03', '16','6','27716.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094368.0','1044452.0','3201', '2905','1770','4383574.61', '2803','1315','2433071.32', '1828','1063','1950503.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006105.0','1018885.0','12', '10','4','6191.11', '10','4','5715.0', '2','2','476.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094369.0','1044452.0','7', '6','4','13419.46', '6','3','9351.0', '3','3','4068.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006106.0','1018885.0','1', '1','1','2532.7', '1','1','1527.73', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094370.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006107.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094371.0','1044452.0','1964', '1782','1002','2174021.92', '1710','680','1252412.6', '1041','604','921609.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000039.0','1018885.0','88', '79','40','48933.31', '71','10','18046.82', '48','33','30886.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088303.0','1044452.0','1', '1','1','2425.99', '1','1','1330.0', '1','1','1095.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006108.0','1018885.0','31', '29','15','32050.86', '28','9','21276.94', '12','7','10773.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094372.0','1044452.0','7', '4','3','2660.0', '4','3','2660.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006109.0','1018885.0','380', '343','168','269914.58', '334','71','115977.32', '199','119','153937.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094373.0','1044452.0','2', '2','2','1669.97', '2','1','665.0', '2','2','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000243.0','1018885.0','221', '206','120','242722.59', '203','75','147010.3', '139','82','95712.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088507.0','1044452.0','2', '1','1','1330.0', '1','1','1330.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006110.0','1018885.0','863', '779','367','807887.68', '759','213','423622.0', '426','236','384265.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094374.0','1044452.0','1', '1','1','235.25', '1','0','0.0', '1','1','235.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006111.0','1018885.0','21', '21','16','42312.71', '20','9','28944.04', '16','11','13368.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094375.0','1044452.0','2', '1','1','2074.0', '1','1','2074.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000245.0','1018885.0','231', '206','48','74297.71', '199','26','49327.69', '66','30','24970.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088509.0','1044452.0','5', '5','5','10006.74', '5','4','9120.07', '3','1','886.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006112.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094376.0','1044452.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006113.0','1018885.0','18', '15','3','9118.44', '15','2','7650.0', '4','2','1468.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094377.0','1044452.0','396', '343','211','477379.26', '330','137','307045.27', '235','145','170333.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006114.0','1018885.0','1', '1','1','2518.23', '1','1','1646.0', '1','1','872.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094378.0','1044452.0','21', '19','13','13106.75', '19','1','324.75', '13','13','12782.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006115.0','1018885.0','3', '2','2','898.72', '1','1','293.43', '1','1','605.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094379.0','1044452.0','11', '9','6','15447.62', '8','6','11133.21', '5','3','4314.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006116.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094380.0','1044452.0','2', '1','1','665.0', '1','1','665.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006117.0','1018885.0','1', '1','1','1366.0', '1','1','1366.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094381.0','1044452.0','2', '2','2','6342.88', '2','0','0.0', '2','2','6342.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006118.0','1018885.0','1', '1','1','665.0', '1','1','665.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094382.0','1044452.0','2065', '1908','942','2225578.35', '1868','751','1420259.39', '893','434','805318.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006119.0','1018885.0','168', '153','101','316604.98', '146','78','251317.98', '100','52','65287.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094383.0','1044452.0','38', '35','22','38692.21', '34','11','29101.07', '21','13','9591.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000122.0','1018885.0','101', '80','37','59368.61', '76','24','41635.71', '36','17','17732.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088386.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006120.0','1018885.0','3402', '3166','2150','5380998.46', '3085','1309','2649307.66', '2115','1536','2731690.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094384.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006121.0','1018885.0','149', '137','38','50714.78', '134','23','31511.34', '57','19','19203.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094385.0','1044452.0','6', '5','2','3260.64', '5','0','0.0', '2','2','3260.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006122.0','1018885.0','4', '3','2','5700.76', '3','1','3016.0', '2','2','2684.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094386.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006123.0','1018885.0','827', '744','218','325633.49', '725','82','118528.34', '292','162','207105.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094387.0','1044452.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006124.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094388.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006125.0','1018885.0','1', '1','1','500.0', '0','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094389.0','1044452.0','3', '3','3','2660.01', '3','0','0.0', '3','3','2660.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006126.0','1018885.0','89', '69','25','50193.52', '66','17','36735.8', '25','10','13457.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094390.0','1044452.0','2', '2','1','937.37', '2','0','0.0', '1','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006127.0','1018885.0','92', '82','18','21096.08', '79','10','13449.67', '23','10','7646.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094391.0','1044452.0','1', '1','1','9243.43', '1','1','2152.0', '1','1','7091.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006128.0','1018885.0','1045', '982','447','844265.1', '945','233','470614.06', '542','307','373651.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094392.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006129.0','1018885.0','59', '47','19','19750.45', '47','7','8239.22', '28','16','11511.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094393.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006130.0','1018885.0','172', '143','56','97843.78', '139','36','73347.43', '64','29','24496.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094394.0','1044452.0','3119', '2983','2176','6682827.9', '2803','1162','2413379.43', '2338','1751','4269448.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006131.0','1018885.0','10', '7','6','13389.93', '7','6','9727.0', '6','3','3662.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094395.0','1044452.0','1', '1','1','1646.0', '1','1','1646.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006132.0','1018885.0','2', '2','1','1062.77', '2','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094396.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006133.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094397.0','1044452.0','1104', '998','467','807380.24', '958','199','319071.43', '594','354','488308.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006134.0','1018885.0','1', '1','1','4142.81', '1','0','0.0', '1','1','4142.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094398.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006135.0','1018885.0','139', '117','53','90045.69', '106','31','59853.2', '67','28','30192.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094399.0','1044452.0','55', '50','15','36612.88', '48','9','24329.0', '17','8','12283.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006136.0','1018885.0','761', '705','420','1000155.57', '674','291','498974.22', '468','258','501181.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094400.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006137.0','1018885.0','4', '3','1','878.22', '2','0','0.0', '2','1','878.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094401.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006138.0','1018885.0','148', '141','49','57804.21', '140','19','29509.55', '75','39','28294.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094402.0','1044452.0','251', '231','108','127208.42', '223','33','61637.61', '134','86','65570.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006139.0','1018885.0','111', '105','41','69594.54', '105','23','42557.6', '59','25','27036.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094403.0','1044452.0','1', '1','1','9058.53', '1','1','1646.0', '1','1','7412.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006140.0','1018885.0','1', '1','1','5120.58', '1','1','2184.0', '1','1','2936.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094404.0','1044452.0','1599', '1476','696','1666050.1', '1416','510','936748.72', '920','376','729301.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000076.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088340.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006141.0','1018885.0','1', '1','1','878.22', '1','0','0.0', '1','1','878.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094405.0','1044452.0','157', '140','69','175435.26', '133','44','101693.66', '93','47','73741.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006142.0','1018885.0','1', '1','1','1330.0', '1','1','1330.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094406.0','1044452.0','1', '1','1','3238.15', '1','1','2152.0', '1','1','1086.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006143.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094407.0','1044452.0','161', '136','53','66827.94', '131','22','34717.36', '63','39','32110.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006144.0','1018885.0','2', '2','1','1275.0', '2','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094408.0','1044452.0','181', '131','66','170398.1', '127','48','83771.09', '77','37','86627.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006145.0','1018885.0','4', '3','1','122.03', '3','0','0.0', '2','1','122.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094409.0','1044452.0','2618', '2368','1062','1507815.5', '2308','453','731380.17', '1227','776','776435.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006146.0','1018885.0','1', '1','1','3104.68', '1','1','2604.68', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094410.0','1044452.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006147.0','1018885.0','1598', '1494','901','1186332.56', '1434','300','527099.88', '1036','785','659232.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094411.0','1044452.0','67', '56','31','44298.92', '55','14','24632.17', '27','21','19666.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006148.0','1018885.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094412.0','1044452.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006149.0','1018885.0','2', '2','1','137.1', '2','1','137.1', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094413.0','1044452.0','3', '3','1','835.97', '3','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006150.0','1018885.0','6', '4','2','2230.25', '4','2','1995.0', '3','1','235.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094414.0','1044452.0','2', '2','1','852.87', '2','0','0.0', '1','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006151.0','1018885.0','6', '4','4','22304.2', '4','4','12606.7', '3','2','9697.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094415.0','1044452.0','106', '102','44','33795.5', '102','11','11532.41', '46','33','22263.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006152.0','1018885.0','474', '434','223','675742.29', '420','175','415960.7', '201','109','259781.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094416.0','1044452.0','594', '548','260','576859.18', '518','151','276182.7', '377','170','300676.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006153.0','1018885.0','266', '236','122','309030.67', '230','95','236425.68', '103','57','72604.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094417.0','1044452.0','749', '704','230','405517.39', '685','117','231489.19', '326','151','174028.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006154.0','1018885.0','21', '17','10','17633.92', '16','9','10813.72', '9','3','6820.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094418.0','1044452.0','401', '331','176','325321.68', '314','84','172256.01', '217','131','153065.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006155.0','1018885.0','11', '10','10','22076.81', '10','8','12739.37', '6','6','9337.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094419.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000392.0','1018885.0','31', '28','12','12729.33', '27','8','7130.64', '15','6','5598.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088656.0','1044452.0','160', '132','35','48573.0', '127','14','26520.93', '46','24','22052.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006156.0','1018885.0','984', '896','460','972110.87', '864','318','654229.17', '513','255','317881.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094420.0','1044452.0','1', '1','1','3040.33', '1','0','0.0', '1','1','3040.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006157.0','1018885.0','82', '77','47','100375.83', '72','35','66323.41', '59','28','34052.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094421.0','1044452.0','1', '1','1','1585.47', '1','1','665.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006158.0','1018885.0','1080', '1038','468','1150360.2', '1012','322','589410.41', '651','294','560949.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094422.0','1044452.0','1575', '1453','606','837365.76', '1411','196','391932.51', '764','486','445433.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006159.0','1018885.0','11', '11','9','28427.42', '11','6','19913.09', '8','7','8514.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094423.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006160.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094424.0','1044452.0','1', '1','1','3615.82', '1','1','1330.0', '1','1','2285.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006161.0','1018885.0','572', '512','316','916567.69', '499','224','539064.67', '334','194','377503.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094425.0','1044452.0','2', '2','2','3841.46', '2','2','3270.0', '2','1','571.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000345.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088609.0','1044452.0','160', '142','77','130006.72', '136','33','71620.38', '91','58','58386.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006162.0','1018885.0','18', '14','3','2256.09', '14','2','1420.12', '3','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094426.0','1044452.0','108', '103','48','97954.3', '101','30','70432.06', '55','30','27522.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006163.0','1018885.0','20', '17','9','11948.34', '17','5','4425.0', '10','5','7523.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094427.0','1044452.0','16', '16','5','6436.21', '15','2','3810.0', '7','3','2626.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006164.0','1018885.0','136', '122','74','189421.04', '121','55','84619.93', '79','48','104801.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094428.0','1044452.0','30', '26','12','11125.95', '25','2','3318.8', '12','10','7807.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006165.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094429.0','1044452.0','1074', '990','404','749509.3', '955','210','377225.66', '554','279','372283.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006166.0','1018885.0','984', '909','396','892285.01', '849','259','459002.56', '543','236','433282.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094430.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006167.0','1018885.0','11', '11','8','15655.67', '11','7','9830.78', '5','2','5824.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094431.0','1044452.0','171', '149','54','48493.71', '136','11','18231.09', '79','45','30262.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006168.0','1018885.0','178', '140','53','76856.74', '139','20','28513.18', '62','36','48343.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094432.0','1044452.0','159', '137','67','157255.95', '133','41','97034.93', '64','40','60221.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006169.0','1018885.0','1078', '992','491','1011967.42', '959','324','591937.99', '519','281','420029.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094433.0','1044452.0','172', '163','107','272576.56', '160','91','206569.12', '81','52','66007.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006170.0','1018885.0','17', '15','9','8575.26', '15','3','3845.47', '9','6','4729.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094434.0','1044452.0','1762', '1576','938','2334820.58', '1502','683','1130862.19', '988','533','1203958.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006171.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094435.0','1044452.0','8', '8','1','852.87', '8','0','0.0', '2','1','852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006172.0','1018885.0','222', '202','129','264744.56', '196','88','181913.39', '128','78','82831.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094436.0','1044452.0','89', '82','33','51823.82', '75','14','27704.1', '48','26','24119.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006173.0','1018885.0','82', '75','35','52097.64', '72','24','34689.95', '44','19','17407.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094437.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006174.0','1018885.0','1', '1','1','115.05', '1','1','115.05', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094438.0','1044452.0','259', '229','110','175439.56', '223','52','91620.54', '130','83','83819.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006175.0','1018885.0','2012', '1910','625','1237916.68', '1861','366','680551.4', '918','396','557365.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094439.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006176.0','1018885.0','55', '49','34','78859.3', '47','25','53656.49', '36','22','25202.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094440.0','1044452.0','260', '245','168','735521.22', '240','138','420985.5', '146','91','314535.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006177.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094441.0','1044452.0','157', '133','54','64682.24', '122','19','18904.29', '78','41','45777.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006178.0','1018885.0','824', '736','437','1079539.66', '705','290','524512.11', '486','280','555027.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094442.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006179.0','1018885.0','2', '2','1','9378.99', '2','0','0.0', '2','1','9378.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094443.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006180.0','1018885.0','556', '530','239','223074.68', '515','68','93133.57', '295','201','129941.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094444.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006181.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094445.0','1044452.0','89', '75','22','32261.57', '67','9','10430.72', '36','16','21830.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006182.0','1018885.0','87', '79','26','62594.86', '74','15','43846.92', '37','16','18747.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094446.0','1044452.0','2', '2','1','1260.0', '2','1','1260.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006183.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094447.0','1044452.0','6', '6','3','8998.43', '5','2','2649.0', '5','2','6349.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006184.0','1018885.0','167', '154','121','449036.84', '149','91','226751.6', '98','72','222285.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094448.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006185.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094449.0','1044452.0','11', '10','6','13094.1', '10','5','10381.41', '5','4','2712.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006186.0','1018885.0','1550', '1391','729','1635695.99', '1345','498','745902.11', '779','424','889793.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094450.0','1044452.0','654', '613','370','767164.81', '598','185','479256.02', '414','287','287908.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006187.0','1018885.0','1', '1','1','1330.0', '1','1','1330.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094451.0','1044452.0','1666', '1601','1173','4852657.18', '1536','756','1818996.25', '1272','920','3033660.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006188.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094452.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006189.0','1018885.0','1546', '1486','1006','1044344.53', '1428','221','345285.0', '1115','921','699059.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094453.0','1044452.0','1', '1','1','6500.0', '1','0','0.0', '1','1','6500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000191.0','1018885.0','13', '10','7','8707.28', '8','6','7480.92', '8','4','1226.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088455.0','1044452.0','466', '433','219','216585.06', '424','44','71822.84', '262','192','144762.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006190.0','1018885.0','82', '69','34','78815.56', '65','27','44345.7', '30','17','34469.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094454.0','1044452.0','1', '1','1','630.0', '1','1','630.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006191.0','1018885.0','426', '400','266','619757.66', '382','151','252133.78', '306','201','367623.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094455.0','1044452.0','176', '158','111','295442.78', '152','80','216423.35', '92','68','79019.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006192.0','1018885.0','1200', '1110','548','931382.7', '1073','304','582703.7', '623','358','348679.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094456.0','1044452.0','82', '71','41','83022.37', '69','26','60414.19', '40','20','22608.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006193.0','1018885.0','17', '13','9','31774.02', '13','8','25828.16', '8','3','5945.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094457.0','1044452.0','68', '57','11','18000.09', '57','7','10431.72', '21','7','7568.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006194.0','1018885.0','18', '16','7','23038.33', '13','5','18551.02', '7','3','4487.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094458.0','1044452.0','12', '12','2','1599.17', '11','0','0.0', '3','2','1599.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006195.0','1018885.0','34', '32','24','109366.99', '31','24','27365.96', '15','11','82001.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094459.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006196.0','1018885.0','1041', '886','473','774944.44', '853','223','351810.56', '497','333','423133.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094460.0','1044452.0','1', '1','1','2140.0', '1','1','1640.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006197.0','1018885.0','17', '17','9','13360.73', '17','3','6573.0', '11','8','6787.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094461.0','1044452.0','584', '561','197','505675.68', '541','134','260448.55', '283','111','245227.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006198.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094462.0','1044452.0','1125', '1052','576','1213407.96', '1022','348','694817.31', '676','372','518590.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006199.0','1018885.0','26', '22','3','6155.67', '22','1','5100.0', '7','2','1055.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094463.0','1044452.0','1', '1','1','665.0', '1','1','665.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006200.0','1018885.0','112', '93','35','37031.5', '90','25','26369.92', '32','14','10661.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094464.0','1044452.0','1', '1','1','4175.89', '1','1','1646.0', '1','1','2529.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006201.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094465.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006202.0','1018885.0','4', '2','1','937.37', '2','0','0.0', '1','1','937.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094466.0','1044452.0','346', '327','171','247472.61', '314','82','113532.67', '218','127','133939.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006203.0','1018885.0','133', '116','52','157595.81', '111','38','100191.58', '49','23','57404.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094467.0','1044452.0','29', '27','16','35979.34', '27','9','25105.11', '17','10','10874.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006204.0','1018885.0','83', '71','40','86035.31', '65','24','60818.58', '43','21','25216.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094468.0','1044452.0','19', '17','4','3907.17', '17','1','2550.0', '6','3','1357.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006205.0','1018885.0','5', '5','3','2776.8', '5','2','2550.0', '3','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094469.0','1044452.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006206.0','1018885.0','1', '1','1','277.5', '1','0','0.0', '1','1','277.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094470.0','1044452.0','1611', '1505','816','2250905.29', '1436','499','778069.83', '1080','555','1472835.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006207.0','1018885.0','94', '87','48','48042.57', '82','16','18493.77', '58','39','29548.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094471.0','1044452.0','2', '1','1','1374.0', '1','1','1374.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006208.0','1018885.0','1', '1','1','687.0', '1','1','687.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094472.0','1044452.0','135', '106','48','86054.18', '94','25','44225.47', '58','31','41828.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006209.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094473.0','1044452.0','43', '39','14','26371.25', '37','4','8417.0', '24','11','17954.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006210.0','1018885.0','1386', '1287','547','1273271.82', '1263','348','759846.73', '634','328','513425.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094474.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006211.0','1018885.0','26', '22','12','19347.34', '20','6','8452.0', '13','7','10895.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094475.0','1044452.0','2', '2','1','954.27', '2','0','0.0', '1','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000559.0','1018885.0','1', '1','1','918.63', '1','0','0.0', '1','1','918.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088823.0','1044452.0','1', '1','1','1486.8', '1','1','1260.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006212.0','1018885.0','13', '10','4','2337.05', '10','0','0.0', '4','4','2337.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094476.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006213.0','1018885.0','182', '161','51','60145.9', '158','13','26753.05', '77','41','33392.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094477.0','1044452.0','1', '1','1','148.72', '1','1','114.92', '1','1','33.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000411.0','1018885.0','45', '38','27','30576.32', '37','5','11397.32', '25','23','19179.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088675.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006214.0','1018885.0','648', '591','295','616559.79', '561','171','303466.97', '333','181','313092.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094478.0','1044452.0','1', '1','1','470.71', '1','1','470.71', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006215.0','1018885.0','2', '2','1','1374.0', '1','1','1374.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094479.0','1044452.0','1', '1','1','2255.36', '1','1','2255.36', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006216.0','1018885.0','132', '113','32','33159.19', '109','11','14992.85', '47','24','18166.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094480.0','1044452.0','238', '206','63','107449.4', '200','33','40031.72', '86','38','67417.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000121.0','1018885.0','5', '4','2','2915.64', '4','1','881.7', '4','2','2033.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088385.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006217.0','1018885.0','457', '393','131','211310.29', '377','64','112541.64', '190','95','98768.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094481.0','1044452.0','1', '1','1','1064.46', '1','0','0.0', '1','1','1064.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006218.0','1018885.0','1', '1','1','1795.37', '1','1','665.0', '1','1','1130.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094482.0','1044452.0','11', '8','4','6708.65', '7','3','4984.32', '4','2','1724.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000102.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088366.0','1044452.0','12', '8','4','4961.36', '8','3','4091.59', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006219.0','1018885.0','5', '4','2','2505.27', '3','1','1646.0', '3','2','859.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094483.0','1044452.0','444', '395','239','526382.87', '371','152','349559.45', '245','142','176823.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006220.0','1018885.0','1', '1','1','5730.0', '1','1','5730.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094484.0','1044452.0','12', '10','2','2129.77', '9','1','1260.0', '4','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006221.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094485.0','1044452.0','152', '133','61','144616.62', '130','48','107647.05', '57','25','36969.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006222.0','1018885.0','1596', '1436','762','1377795.1', '1393','407','774097.93', '783','503','603697.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094486.0','1044452.0','30', '26','12','19437.39', '26','7','15452.3', '12','7','3985.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000123.0','1018885.0','342', '296','178','456504.95', '290','135','235643.14', '177','102','220861.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088387.0','1044452.0','10', '8','0','0.0', '8','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006223.0','1018885.0','278', '250','101','262093.71', '245','73','178920.25', '110','48','83173.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094487.0','1044452.0','271', '236','111','278933.53', '227','88','168034.19', '109','53','110899.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006224.0','1018885.0','1', '1','1','2749.0', '1','1','1562.0', '1','1','1187.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094488.0','1044452.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006225.0','1018885.0','39', '25','12','36482.18', '25','12','18349.0', '10','4','18133.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094489.0','1044452.0','184', '153','47','90219.58', '150','35','65603.56', '64','19','24616.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006226.0','1018885.0','176', '166','49','60379.39', '164','30','39492.91', '69','25','20886.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094490.0','1044452.0','4', '4','3','7368.42', '4','2','5423.0', '4','3','1945.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006227.0','1018885.0','1', '1','1','2852.27', '1','1','2852.27', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094491.0','1044452.0','15', '13','7','34651.62', '13','7','9574.6', '9','5','25077.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006228.0','1018885.0','8', '8','8','25277.97', '8','7','21702.89', '5','4','3575.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094492.0','1044452.0','868', '796','572','2161913.4', '773','412','999712.03', '602','410','1162201.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006229.0','1018885.0','9', '9','5','16208.9', '9','3','3108.0', '8','5','13100.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094493.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006230.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094494.0','1044452.0','50', '47','16','21616.14', '47','5','8957.74', '25','13','12658.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006231.0','1018885.0','1876', '1758','1091','2662413.93', '1708','702','1345747.95', '1156','748','1316665.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094495.0','1044452.0','507', '470','329','1005394.16', '456','227','508215.58', '334','227','497178.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006232.0','1018885.0','1', '1','1','630.0', '1','1','630.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094496.0','1044452.0','1', '1','1','84.5', '1','0','0.0', '1','1','84.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006233.0','1018885.0','1', '1','1','906.95', '1','0','0.0', '1','1','906.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094497.0','1044452.0','1', '1','1','846.11', '1','0','0.0', '1','1','846.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006234.0','1018885.0','2298', '2153','1373','3779440.44', '2084','911','1648106.87', '1461','944','2131333.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094498.0','1044452.0','2', '1','1','2351.91', '1','1','918.0', '1','1','1433.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006235.0','1018885.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094499.0','1044452.0','2999', '2825','1687','5064862.59', '2730','1099','1873154.84', '1930','1218','3191707.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000064.0','1018885.0','1', '1','1','272.81', '1','0','0.0', '1','1','272.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088328.0','1044452.0','59', '53','13','25270.61', '50','10','14373.72', '21','6','10896.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006236.0','1018885.0','37', '35','17','30565.49', '33','9','21661.76', '13','9','8903.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094500.0','1044452.0','472', '421','161','143284.46', '405','27','43525.95', '215','148','99758.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006237.0','1018885.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094501.0','1044452.0','1534', '1425','664','747285.55', '1374','247','326743.93', '780','498','420541.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006238.0','1018885.0','1', '1','1','869.77', '1','0','0.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094502.0','1044452.0','7', '6','4','5230.12', '6','2','1954.0', '6','4','3276.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006239.0','1018885.0','2', '1','1','164.59', '1','1','159.52', '1','1','5.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094503.0','1044452.0','53', '44','16','32986.95', '40','8','17757.31', '22','11','15229.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006240.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094504.0','1044452.0','4', '2','1','1275.0', '2','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006241.0','1018885.0','5', '5','0','0.0', '4','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094505.0','1044452.0','6', '5','3','9664.41', '5','2','6936.0', '3','3','2728.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000496.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088760.0','1044452.0','1', '1','1','918.0', '1','1','918.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006242.0','1018885.0','60', '54','36','126856.88', '53','31','64004.17', '29','14','62852.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094506.0','1044452.0','1', '1','1','1036.0', '1','1','1036.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006243.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094507.0','1044452.0','114', '110','84','250694.09', '109','69','135200.19', '79','51','115493.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006244.0','1018885.0','28', '24','14','37407.38', '22','10','23877.07', '14','8','13530.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094508.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006245.0','1018885.0','250', '232','151','379705.08', '225','82','165592.91', '159','116','214112.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094509.0','1044452.0','1', '1','1','1260.0', '1','1','1260.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006246.0','1018885.0','92', '88','58','153460.85', '85','43','86824.76', '53','38','66636.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094510.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006247.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094511.0','1044452.0','1', '1','1','4898.56', '1','1','918.0', '1','1','3980.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006248.0','1018885.0','2161', '1947','1098','2533326.84', '1871','775','1247166.85', '1188','671','1286159.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094512.0','1044452.0','1', '1','1','1431.96', '1','0','0.0', '1','1','1431.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006249.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094513.0','1044452.0','125', '114','67','147320.29', '108','48','106586.63', '66','40','40733.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006250.0','1018885.0','21', '16','8','17184.33', '16','7','14642.35', '7','3','2541.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094514.0','1044452.0','7', '6','1','51.0', '5','1','51.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006251.0','1018885.0','31', '28','18','44206.26', '28','14','28887.45', '16','11','15318.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094515.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006252.0','1018885.0','1764', '1621','949','2336960.71', '1573','683','1162468.81', '1020','598','1174491.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094516.0','1044452.0','30', '27','21','85984.16', '27','18','44312.61', '20','14','41671.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006253.0','1018885.0','3088', '2867','1749','3888886.32', '2764','1004','1663450.13', '1979','1332','2225436.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094517.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006254.0','1018885.0','27', '23','9','10141.62', '23','2','2712.12', '14','7','7429.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094518.0','1044452.0','17', '16','7','12871.38', '16','4','8496.82', '8','5','4374.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006255.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094519.0','1044452.0','23', '22','13','51633.65', '19','9','15751.18', '15','10','35882.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006256.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094520.0','1044452.0','1883', '1767','992','1787295.65', '1707','552','1055753.23', '1057','661','731542.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006257.0','1018885.0','6', '5','2','10232.23', '5','2','6384.0', '3','2','3848.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094521.0','1044452.0','45', '44','22','65683.21', '44','12','27930.26', '27','14','37752.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006258.0','1018885.0','1324', '1266','876','2433143.78', '1211','557','1248355.58', '913','629','1184788.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094522.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006259.0','1018885.0','13', '12','8','10444.07', '11','5','5636.95', '8','6','4807.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094523.0','1044452.0','156', '129','72','258353.35', '125','56','133852.35', '76','44','124501.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006260.0','1018885.0','701', '663','401','931995.27', '633','294','525026.27', '447','236','406969.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094524.0','1044452.0','1', '1','1','459.0', '1','1','459.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006261.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094525.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006262.0','1018885.0','178', '163','87','194405.14', '155','51','87927.31', '105','59','106477.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094526.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006263.0','1018885.0','365', '331','201','508955.32', '319','140','248548.7', '212','128','260406.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094527.0','1044452.0','2', '2','1','4073.39', '2','1','702.0', '1','1','3371.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006264.0','1018885.0','1091', '1023','690','2130212.73', '1002','493','779694.1', '760','462','1350518.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094528.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006265.0','1018885.0','597', '566','336','732255.5', '538','232','417857.9', '369','206','314397.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094529.0','1044452.0','29', '25','8','23209.04', '22','7','7343.4', '11','5','15865.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006266.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094530.0','1044452.0','54', '47','13','12200.66', '47','5','5994.5', '21','9','6206.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006267.0','1018885.0','198', '190','125','391445.15', '188','72','162587.99', '134','96','228857.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094531.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006268.0','1018885.0','20', '16','11','24921.7', '16','9','14478.37', '11','8','10443.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094532.0','1044452.0','1', '1','1','1157.41', '1','0','0.0', '1','1','1157.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006269.0','1018885.0','1', '1','1','972.86', '1','0','0.0', '1','1','972.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094533.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006270.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094534.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006271.0','1018885.0','1', '1','1','27.57', '1','0','0.0', '1','1','27.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094535.0','1044452.0','542', '513','362','1142742.62', '501','280','659673.62', '335','222','483069.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006272.0','1018885.0','15', '10','5','3795.84', '10','1','459.0', '5','4','3336.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094536.0','1044452.0','128', '107','56','111083.86', '99','29','67939.18', '75','40','43144.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006273.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094537.0','1044452.0','7', '7','4','2661.36', '7','1','94.3', '4','3','2567.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006274.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094538.0','1044452.0','1', '1','1','3569.12', '1','1','3569.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000141.0','1018885.0','1', '1','1','3659.69', '1','1','918.0', '1','1','2741.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088405.0','1044452.0','1', '1','1','920.47', '1','0','0.0', '1','1','920.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006275.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094539.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006276.0','1018885.0','103', '91','55','120821.39', '77','27','50002.37', '63','42','70819.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094540.0','1044452.0','6', '6','6','7795.78', '6','2','2651.49', '6','5','5144.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006277.0','1018885.0','1', '1','1','5100.0', '1','1','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094541.0','1044452.0','654', '623','360','1010638.58', '586','201','335842.38', '478','286','674796.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006278.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094542.0','1044452.0','1', '1','1','6637.09', '1','1','5998.0', '1','1','639.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006279.0','1018885.0','1', '1','1','235.25', '1','0','0.0', '1','1','235.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094543.0','1044452.0','109', '104','42','77215.02', '102','17','39289.63', '56','30','37925.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006280.0','1018885.0','1012', '890','451','757391.56', '846','259','385205.23', '492','282','372186.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094544.0','1044452.0','20', '15','5','10624.93', '15','4','6068.0', '6','3','4556.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006281.0','1018885.0','480', '449','173','182686.91', '430','49','73906.2', '226','142','108780.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094545.0','1044452.0','9', '9','6','13019.33', '9','2','6235.66', '6','6','6783.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006282.0','1018885.0','53', '48','23','23115.3', '45','6','5205.93', '26','20','17909.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094546.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006283.0','1018885.0','15', '9','6','17928.73', '9','6','16730.76', '8','1','1197.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094547.0','1044452.0','3', '3','2','10368.01', '2','2','2948.0', '3','1','7420.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006284.0','1018885.0','1', '1','1','10420.17', '1','1','918.0', '1','1','9502.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094548.0','1044452.0','168', '139','51','84035.84', '134','21','52131.42', '58','36','31904.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006285.0','1018885.0','19', '19','10','17693.29', '15','4','5774.93', '13','9','11918.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094549.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006286.0','1018885.0','39', '31','19','60223.57', '31','13','24605.47', '22','12','35618.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094550.0','1044452.0','1', '1','1','1422.0', '1','1','1422.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006287.0','1018885.0','202', '190','109','190659.29', '182','59','102414.42', '118','83','88244.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094551.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006288.0','1018885.0','4', '3','3','7344.9', '3','3','7344.9', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094552.0','1044452.0','7', '6','5','3734.27', '6','1','114.92', '5','4','3619.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006289.0','1018885.0','1', '1','1','543.15', '1','0','0.0', '1','1','543.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094553.0','1044452.0','8', '7','1','1004.97', '7','0','0.0', '2','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006290.0','1018885.0','125', '108','38','67841.3', '102','24','50224.54', '52','26','17616.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094554.0','1044452.0','22', '21','14','47789.17', '20','7','23353.9', '12','10','24435.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006291.0','1018885.0','58', '52','22','38445.51', '52','16','22535.75', '28','12','15909.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094555.0','1044452.0','10', '10','6','3233.48', '8','3','2111.56', '6','3','1121.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000462.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088726.0','1044452.0','7', '7','6','9670.67', '7','3','6834.0', '3','3','2836.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006292.0','1018885.0','399', '342','141','208409.01', '332','86','101510.46', '154','77','106898.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094556.0','1044452.0','76', '74','61','208179.47', '73','51','119876.11', '61','46','88303.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006293.0','1018885.0','2', '2','2','13216.21', '2','2','11223.77', '1','1','1992.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094557.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006294.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094558.0','1044452.0','1', '1','1','6086.67', '1','1','5023.9', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006295.0','1018885.0','94', '78','47','56106.42', '68','16','28944.04', '55','39','27162.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094559.0','1044452.0','22', '18','5','3463.07', '17','1','1275.0', '9','4','2188.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006296.0','1018885.0','40', '35','14','48621.63', '32','9','25265.55', '18','9','23356.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094560.0','1044452.0','152', '142','62','75159.77', '135','35','49323.86', '74','42','25835.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006297.0','1018885.0','22', '20','16','59852.88', '19','13','38394.31', '15','12','21458.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094561.0','1044452.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006298.0','1018885.0','1', '1','1','1275.0', '1','1','1275.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094562.0','1044452.0','7', '7','4','8590.66', '6','1','5998.0', '4','3','2592.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006299.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094563.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006300.0','1018885.0','8', '8','5','17171.56', '8','4','13475.52', '4','3','3696.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094564.0','1044452.0','15', '12','4','2969.57', '10','1','241.96', '7','4','2727.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006301.0','1018885.0','56', '49','19','30630.93', '47','9','12732.78', '26','15','17898.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094565.0','1044452.0','159', '138','97','312072.44', '133','71','188798.05', '101','71','123274.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006302.0','1018885.0','1962', '1826','1264','4850917.55', '1741','871','1569421.33', '1394','950','3281496.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094566.0','1044452.0','123', '105','58','186201.61', '103','43','69629.66', '55','34','116571.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006303.0','1018885.0','1', '1','1','1264.95', '1','0','0.0', '1','1','1264.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094567.0','1044452.0','5', '3','1','1275.0', '3','1','1275.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006304.0','1018885.0','145', '130','88','79951.21', '119','7','9960.64', '106','85','69990.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094568.0','1044452.0','24', '21','16','33312.83', '21','9','24232.67', '14','10','9080.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006305.0','1018885.0','1843', '1587','974','4436597.77', '1542','817','2247264.63', '832','539','2189333.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094569.0','1044452.0','1', '1','1','3922.72', '1','0','0.0', '1','1','3922.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006306.0','1018885.0','1', '1','1','549.0', '1','1','549.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094570.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006307.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094571.0','1044452.0','514', '463','313','771211.35', '440','198','424820.99', '308','205','346390.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006308.0','1018885.0','1', '1','1','2550.0', '1','1','2550.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094572.0','1044452.0','1', '1','1','1403.82', '1','1','1370.02', '1','1','33.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006309.0','1018885.0','3', '3','3','5100.0', '3','3','5100.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094573.0','1044452.0','459', '365','171','333635.41', '352','118','149040.1', '219','108','184595.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006310.0','1018885.0','4', '3','3','10524.73', '3','3','7054.0', '2','2','3470.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094574.0','1044452.0','4', '2','1','971.17', '2','0','0.0', '2','1','971.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006311.0','1018885.0','65', '61','34','53116.62', '54','14','20666.51', '42','27','32450.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094575.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006312.0','1018885.0','5', '4','1','930.68', '3','0','0.0', '3','1','930.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094576.0','1044452.0','1', '1','1','749.0', '0','0','0.0', '1','1','749.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006313.0','1018885.0','1', '1','1','844.42', '1','0','0.0', '1','1','844.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094577.0','1044452.0','1124', '1059','493','624089.34', '1010','161','231934.97', '692','409','392154.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000492.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088756.0','1044452.0','1', '1','1','370.26', '1','0','0.0', '1','1','370.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006314.0','1018885.0','1', '1','1','1106.03', '1','1','984.0', '1','1','122.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094578.0','1044452.0','24', '18','9','37057.61', '18','5','20524.02', '8','6','16533.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006118.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094382.0','1044452.0','349', '279','170','444748.56', '264','107','278877.98', '184','106','165870.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006315.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094579.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006316.0','1018885.0','41', '36','22','59272.06', '35','20','40545.41', '24','10','18726.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094580.0','1044452.0','680', '585','241','361476.92', '558','105','185452.67', '306','178','176024.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006317.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094581.0','1044452.0','2', '2','2','1353.51', '1','1','687.0', '2','1','666.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006318.0','1018885.0','2808', '2610','1705','3488671.34', '2510','890','1458652.61', '1799','1284','2030018.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094582.0','1044452.0','1', '1','1','1986.0', '1','1','1986.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006319.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094583.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006320.0','1018885.0','462', '430','255','626901.38', '414','144','270702.28', '276','193','356199.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094584.0','1044452.0','1443', '1369','699','849521.51', '1341','272','331534.67', '800','531','517986.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000324.0','1018885.0','1', '1','1','2153.77', '1','1','1284.0', '1','1','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088588.0','1044452.0','204', '198','142','600595.14', '194','108','224933.75', '169','104','375661.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006321.0','1018885.0','85', '83','56','100565.33', '80','36','68650.77', '59','39','31914.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094585.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006322.0','1018885.0','1', '1','1','928.92', '1','0','0.0', '1','1','928.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094586.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006323.0','1018885.0','285', '265','152','338531.83', '247','89','178544.07', '173','107','159987.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094587.0','1044452.0','1', '1','1','538.91', '0','0','0.0', '1','1','538.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006324.0','1018885.0','585', '546','332','667055.29', '527','221','389302.44', '368','213','277752.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094588.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006325.0','1018885.0','1', '1','1','605.75', '1','0','0.0', '1','1','605.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094589.0','1044452.0','404', '350','173','339860.91', '338','78','144022.49', '205','134','195838.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006326.0','1018885.0','59', '56','39','91042.28', '52','24','62233.73', '47','33','28808.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094590.0','1044452.0','663', '598','301','577930.77', '561','147','286903.04', '388','224','291027.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006327.0','1018885.0','128', '108','75','120645.27', '96','39','66382.42', '86','57','54262.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094591.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006328.0','1018885.0','8', '6','1','16.9', '5','0','0.0', '4','1','16.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094592.0','1044452.0','2', '1','1','1920.23', '1','1','1098.0', '1','1','822.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006329.0','1018885.0','88', '86','47','41503.16', '78','7','9822.14', '67','43','31681.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094593.0','1044452.0','1', '1','1','549.0', '1','1','549.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006330.0','1018885.0','1', '1','1','1147.27', '1','0','0.0', '1','1','1147.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094594.0','1044452.0','162', '152','65','90513.49', '148','25','38953.0', '89','50','51560.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006331.0','1018885.0','252', '217','106','176753.0', '203','45','88587.5', '118','79','88165.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094595.0','1044452.0','2', '2','2','12366.37', '2','1','11236.0', '2','2','1130.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006332.0','1018885.0','4', '3','2','4887.96', '2','2','4746.0', '2','1','141.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094596.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006333.0','1018885.0','64', '60','27','49425.16', '59','11','22121.59', '31','22','27303.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094597.0','1044452.0','894', '850','531','1202860.24', '834','339','756374.12', '535','362','446486.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006334.0','1018885.0','199', '178','124','153453.63', '167','25','65655.04', '139','113','87798.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094598.0','1044452.0','1', '1','1','1113.47', '1','0','0.0', '1','1','1113.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006335.0','1018885.0','3435', '3198','2036','5572003.32', '3128','1315','2778799.66', '2097','1383','2793203.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094599.0','1044452.0','146', '130','72','121235.88', '115','39','56788.17', '93','50','64447.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006336.0','1018885.0','211', '197','130','372208.21', '191','82','275325.18', '146','97','96883.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094600.0','1044452.0','59', '52','31','81589.88', '49','17','36734.14', '41','24','44855.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006337.0','1018885.0','23', '19','10','20324.92', '17','9','19455.15', '8','2','869.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094601.0','1044452.0','1564', '1409','891','1879291.11', '1273','455','680719.5', '1035','694','1198571.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006338.0','1018885.0','107', '96','62','95731.72', '95','27','44710.64', '62','47','51021.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094602.0','1044452.0','5', '4','3','8939.91', '4','3','7985.64', '3','1','954.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006339.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094603.0','1044452.0','1', '1','1','1374.0', '1','1','1374.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006340.0','1018885.0','482', '453','324','987044.9', '440','207','378660.62', '318','240','608384.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094604.0','1044452.0','122', '116','77','158520.95', '110','48','69620.31', '79','54','88900.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000040.0','1018885.0','1', '1','1','1098.0', '1','1','1098.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088304.0','1044452.0','12', '12','9','30324.08', '11','4','10840.48', '10','7','19483.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006341.0','1018885.0','1', '1','1','13070.08', '1','1','1098.0', '1','1','11972.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094605.0','1044452.0','1332', '1244','628','1071773.86', '1201','356','705873.46', '654','406','365900.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000196.0','1018885.0','104', '93','68','164554.81', '89','51','119949.96', '57','40','44604.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088460.0','1044452.0','1267', '1157','663','1210364.43', '1112','386','754850.36', '745','474','455514.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006342.0','1018885.0','336', '297','155','300549.88', '276','97','163435.06', '193','95','137114.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094606.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006343.0','1018885.0','6', '6','3','3751.02', '6','2','2311.0', '5','2','1440.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094607.0','1044452.0','12', '11','6','19771.14', '11','5','15034.0', '8','3','4737.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006344.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094608.0','1044452.0','18', '11','10','71668.08', '11','10','31458.69', '9','5','40209.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000413.0','1018885.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088677.0','1044452.0','7', '6','2','2710.57', '5','0','0.0', '5','2','2710.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006345.0','1018885.0','1', '1','1','649.85', '1','0','0.0', '1','1','649.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094609.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000464.0','1018885.0','6', '3','1','863.01', '3','0','0.0', '2','1','863.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088728.0','1044452.0','94', '85','54','164112.06', '81','29','49425.67', '65','41','114686.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006346.0','1018885.0','1', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094610.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006347.0','1018885.0','1', '1','1','715.83', '1','0','0.0', '1','1','715.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094611.0','1044452.0','6', '5','4','2624.52', '5','0','0.0', '4','4','2624.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006348.0','1018885.0','1721', '1623','1187','5927439.44', '1596','929','2995737.57', '1142','786','2931701.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094612.0','1044452.0','806', '750','415','924668.82', '730','288','610945.15', '449','249','313723.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000463.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088727.0','1044452.0','69', '62','42','82352.94', '60','34','45543.97', '41','22','36808.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006349.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094613.0','1044452.0','1049', '970','584','1277653.44', '935','429','686690.87', '609','345','590962.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000519.0','1018885.0','1', '1','1','459.0', '1','1','459.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088783.0','1044452.0','7', '6','4','4231.79', '6','2','2906.75', '3','2','1325.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000147.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088411.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006350.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094614.0','1044452.0','160', '150','68','62500.48', '144','10','12927.54', '95','66','49572.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006351.0','1018885.0','102', '94','49','47133.03', '89','18','16637.41', '64','39','30495.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094615.0','1044452.0','12', '10','7','9026.18', '10','7','7096.98', '4','2','1929.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006352.0','1018885.0','1', '1','1','226.8', '0','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094616.0','1044452.0','289', '267','167','262550.47', '252','90','135822.08', '177','122','126728.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006353.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094617.0','1044452.0','1', '1','1','5328.46', '1','1','2979.85', '1','1','2348.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006354.0','1018885.0','56', '51','23','48335.16', '47','9','13797.0', '30','21','34538.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094618.0','1044452.0','1058', '970','570','1023991.64', '919','243','428373.1', '655','459','595618.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006355.0','1018885.0','34', '32','24','51914.99', '29','13','27440.77', '23','15','24474.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094619.0','1044452.0','6', '5','4','6555.81', '5','3','4963.0', '2','1','1592.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006356.0','1018885.0','5', '5','2','988.42', '5','0','0.0', '3','2','988.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094620.0','1044452.0','2', '2','2','1838.46', '2','0','0.0', '2','2','1838.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006357.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094621.0','1044452.0','138', '115','69','160030.91', '111','53','111270.02', '65','41','48760.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006358.0','1018885.0','528', '509','208','387308.78', '497','129','206128.21', '289','130','181180.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094622.0','1044452.0','2', '1','1','68.62', '1','1','68.62', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006359.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094623.0','1044452.0','2', '2','1','2627.45', '2','0','0.0', '1','1','2627.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006360.0','1018885.0','1', '1','1','1036.0', '1','1','1036.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094624.0','1044452.0','367', '326','189','311284.51', '297','127','183845.07', '233','128','127439.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006361.0','1018885.0','13', '13','10','42111.66', '13','10','25290.85', '8','4','16820.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094625.0','1044452.0','9', '7','3','11085.21', '7','3','7885.0', '4','1','3200.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006362.0','1018885.0','77', '60','37','71973.83', '55','21','36020.72', '41','27','35953.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094626.0','1044452.0','33', '29','15','16919.41', '27','3','3228.58', '17','15','13690.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006363.0','1018885.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094627.0','1044452.0','1342', '1253','688','939451.71', '1214','247','428180.61', '755','545','511271.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006364.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094628.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006365.0','1018885.0','2', '2','1','1403.18', '2','0','0.0', '2','1','1403.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094629.0','1044452.0','644', '597','229','326530.54', '580','89','173217.3', '327','173','153313.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000151.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088415.0','1044452.0','679', '635','271','361880.44', '612','93','174886.24', '370','215','186994.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006366.0','1018885.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094630.0','1044452.0','1', '1','1','1091.45', '0','0','0.0', '1','1','1091.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000126.0','1018885.0','1', '1','1','2619.97', '1','1','1784.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088390.0','1044452.0','1', '1','1','549.0', '1','1','549.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006367.0','1018885.0','630', '587','232','243676.01', '568','72','93586.95', '317','189','150089.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094631.0','1044452.0','1399', '1297','729','1532123.51', '1209','414','790699.24', '912','506','741424.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006368.0','1018885.0','1', '1','1','563.95', '1','0','0.0', '1','1','563.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094632.0','1044452.0','1', '1','1','561.0', '1','1','561.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000149.0','1018885.0','716', '620','377','1224119.85', '609','337','875395.84', '278','150','348724.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088413.0','1044452.0','530', '495','337','834310.93', '479','196','419345.35', '354','255','414965.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000396.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088660.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006369.0','1018885.0','23', '23','12','15353.72', '23','3','4753.54', '14','11','10600.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094633.0','1044452.0','4153', '3926','2258','3441691.7', '3825','964','1380360.24', '2493','1758','2061331.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006370.0','1018885.0','370', '332','221','395597.76', '317','135','286584.59', '202','126','109013.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094634.0','1044452.0','14', '12','5','4253.42', '12','1','1275.0', '5','5','2978.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000124.0','1018885.0','1', '1','1','931.55', '1','1','79.2', '1','1','852.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088388.0','1044452.0','57', '45','30','79736.85', '42','24','65607.7', '18','12','14129.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000127.0','1018885.0','57', '51','29','80925.56', '48','22','44178.04', '24','15','36747.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088391.0','1044452.0','736', '624','347','774620.57', '578','229','305004.46', '439','223','469616.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006371.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094635.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006372.0','1018885.0','1', '1','1','6360.0', '1','1','6360.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094636.0','1044452.0','195', '179','116','240351.27', '172','74','143837.49', '115','68','96513.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000353.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088617.0','1044452.0','4', '3','2','5429.77', '3','2','5429.77', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006373.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094637.0','1044452.0','1', '1','1','1174.2', '1','1','1174.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006374.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094638.0','1044452.0','66', '57','37','84867.97', '57','24','65982.84', '34','24','18885.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006375.0','1018885.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094639.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006376.0','1018885.0','216', '196','122','193599.68', '178','43','84790.58', '151','107','108809.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094640.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000217.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088481.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006377.0','1018885.0','19', '15','9','32789.2', '15','6','24285.03', '7','5','8504.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094641.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006378.0','1018885.0','515', '467','205','203288.28', '445','51','77302.39', '270','176','125985.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094642.0','1044452.0','6', '5','3','17316.0', '4','3','16116.0', '2','1','1200.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006379.0','1018885.0','3', '3','2','11676.24', '2','1','11184.0', '2','1','492.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094643.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006380.0','1018885.0','26', '25','12','37145.61', '22','7','19342.53', '16','11','17803.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094644.0','1044452.0','4156', '3963','2193','2952976.18', '3857','894','1211952.88', '2429','1661','1741023.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006381.0','1018885.0','2', '2','1','879.91', '2','0','0.0', '1','1','879.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094645.0','1044452.0','2', '2','1','3729.73', '2','1','1954.0', '2','1','1775.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006382.0','1018885.0','8', '7','5','4319.87', '7','3','1647.0', '5','3','2672.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094646.0','1044452.0','3', '1','1','1782.0', '1','1','1782.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006383.0','1018885.0','5158', '4717','2252','4172845.4', '4623','1363','2258146.94', '2454','1339','1914698.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094647.0','1044452.0','145', '121','97','465441.42', '115','90','368961.11', '75','47','96480.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006384.0','1018885.0','118', '112','55','91923.68', '108','34','59528.59', '65','32','32395.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094648.0','1044452.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006385.0','1018885.0','46', '42','25','51546.39', '40','15','38941.03', '21','13','12605.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094649.0','1044452.0','484', '439','248','333186.35', '411','97','169064.28', '310','192','164122.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006386.0','1018885.0','5', '3','2','1601.25', '3','2','1601.25', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094650.0','1044452.0','17', '16','10','18929.74', '16','5','11888.87', '11','8','7040.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006387.0','1018885.0','2', '2','2','1557.47', '2','2','645.45', '1','1','912.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094651.0','1044452.0','6', '5','1','131.25', '4','1','131.25', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006388.0','1018885.0','3', '2','1','6477.52', '2','1','5418.59', '1','1','1058.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094652.0','1044452.0','1', '1','1','2259.0', '1','1','2259.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006389.0','1018885.0','23', '17','10','11525.61', '14','6','7945.0', '10','5','3580.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094653.0','1044452.0','3553', '3304','2336','9064666.46', '3149','1588','2684421.39', '2578','1779','6380245.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006390.0','1018885.0','177', '164','81','83072.44', '153','18','21424.05', '118','75','61648.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094654.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006391.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094655.0','1044452.0','9', '9','3','2687.01', '9','2','1824.0', '4','1','863.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000080.0','1018885.0','197', '176','89','111470.0', '167','43','58036.5', '108','62','53433.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088344.0','1044452.0','40', '39','24','66512.54', '38','14','31265.83', '25','18','35246.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000502.0','1018885.0','1', '1','1','506.79', '1','1','232.44', '1','1','274.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088766.0','1044452.0','4', '4','3','7159.75', '4','3','5535.5', '3','2','1624.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006392.0','1018885.0','1', '1','1','1004.97', '1','0','0.0', '1','1','1004.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094656.0','1044452.0','36', '32','23','83429.76', '27','19','26567.45', '25','14','56862.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006393.0','1018885.0','1', '1','1','6048.0', '1','1','3648.0', '1','1','2400.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094657.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006394.0','1018885.0','6', '5','3','5017.77', '4','2','2948.0', '3','2','2069.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094658.0','1044452.0','560', '514','364','1127440.98', '492','243','616285.67', '369','258','511155.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006395.0','1018885.0','1', '1','1','1275.0', '1','1','1275.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094659.0','1044452.0','9', '9','6','25775.94', '6','3','13269.0', '8','5','12506.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006396.0','1018885.0','1611', '1556','303','255346.83', '1434','133','124368.73', '1290','217','130978.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094660.0','1044452.0','905', '814','307','407408.45', '787','111','134938.3', '374','247','272470.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000078.0','1018885.0','10', '9','0','0.0', '8','0','0.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088342.0','1044452.0','57', '51','27','69568.33', '50','22','50335.4', '24','12','19232.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006397.0','1018885.0','1', '1','1','7240.0', '1','1','7240.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094661.0','1044452.0','2', '2','2','9308.92', '2','2','7958.2', '2','2','1350.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006398.0','1018885.0','113', '104','76','140262.96', '100','47','73138.97', '77','56','67123.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094662.0','1044452.0','1', '1','1','1105.02', '1','0','0.0', '1','1','1105.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006399.0','1018885.0','63', '55','45','164214.67', '53','45','152497.0', '23','10','11717.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094663.0','1044452.0','205', '194','115','285343.65', '187','87','177960.93', '117','60','107382.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006400.0','1018885.0','3', '3','3','13460.22', '3','3','13284.65', '2','1','175.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094664.0','1044452.0','10', '9','5','4525.97', '9','1','549.0', '7','5','3976.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006401.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094665.0','1044452.0','10', '9','7','14673.22', '9','3','8043.1', '7','6','6630.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006402.0','1018885.0','2', '2','1','3775.3', '2','1','3775.3', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094666.0','1044452.0','13', '12','8','17365.88', '12','5','9195.8', '7','5','8170.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006403.0','1018885.0','81', '71','46','102926.15', '69','37','77480.66', '41','24','25445.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094667.0','1044452.0','1', '1','1','100.06', '1','1','100.06', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006404.0','1018885.0','1', '1','1','984.0', '1','1','984.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094668.0','1044452.0','57', '54','21','37630.5', '51','14','18468.58', '41','14','19161.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000561.0','1018885.0','385', '341','171','201217.41', '327','52','74778.9', '212','148','126438.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088825.0','1044452.0','15', '15','3','2176.44', '12','0','0.0', '11','3','2176.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000153.0','1018885.0','399', '342','168','245107.28', '329','62','114346.31', '220','135','130760.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088417.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006405.0','1018885.0','315', '282','161','280530.71', '269','80','144005.5', '188','110','136525.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094669.0','1044452.0','3', '3','3','6544.62', '3','3','6186.0', '2','1','358.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006406.0','1018885.0','4', '1','1','5200.0', '1','1','5200.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094670.0','1044452.0','7', '7','6','11012.84', '7','6','10550.83', '2','1','462.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000193.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088457.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000349.0','1018885.0','3', '2','1','4104.74', '2','1','4104.74', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088613.0','1044452.0','2', '2','2','10773.83', '2','2','9563.62', '2','2','1210.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000338.0','1018885.0','47', '42','29','36137.27', '40','14','22078.53', '30','22','14058.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088602.0','1044452.0','7', '5','3','16382.21', '5','3','12515.62', '3','3','3866.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000065.0','1018885.0','1', '1','1','3566.0', '1','1','3566.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088329.0','1044452.0','1', '1','1','1231.77', '1','0','0.0', '1','1','1231.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006407.0','1018885.0','1004', '947','441','573353.06', '906','132','191040.53', '611','368','382312.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094671.0','1044452.0','322', '250','100','144101.35', '234','56','76500.24', '125','64','67601.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006408.0','1018885.0','4', '4','2','646.1', '4','0','0.0', '3','2','646.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094672.0','1044452.0','165', '155','99','234368.7', '150','68','159260.16', '94','58','75108.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006409.0','1018885.0','1', '1','1','327.04', '1','1','327.04', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094673.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006410.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094674.0','1044452.0','607', '587','124','116693.97', '539','49','47754.7', '491','86','68939.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006411.0','1018885.0','109', '102','65','105141.13', '98','34','71700.69', '70','48','33440.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094675.0','1044452.0','33', '33','18','30443.52', '32','15','29594.21', '19','4','849.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006412.0','1018885.0','1', '1','1','6206.03', '1','1','6084.0', '1','1','122.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094676.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006413.0','1018885.0','3', '3','2','4950.93', '3','2','4950.93', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094677.0','1044452.0','2', '2','1','6832.8', '2','1','6832.8', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006414.0','1018885.0','504', '456','246','445904.87', '441','140','278628.09', '255','138','167276.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094678.0','1044452.0','76', '66','35','109461.83', '58','20','62799.43', '43','24','46662.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006415.0','1018885.0','2', '2','2','13025.12', '2','2','13025.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094679.0','1044452.0','1', '1','1','1724.0', '1','1','1724.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006416.0','1018885.0','3', '3','2','4020.12', '3','2','4020.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094680.0','1044452.0','13', '10','3','2632.97', '9','0','0.0', '4','3','2632.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006417.0','1018885.0','19', '12','9','51062.23', '12','9','45672.53', '6','3','5389.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094681.0','1044452.0','4', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006418.0','1018885.0','1', '1','1','1054.96', '1','1','1054.96', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094682.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000560.0','1018885.0','2', '1','1','4230.57', '1','1','4001.66', '1','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088824.0','1044452.0','42', '42','31','48685.25', '41','31','47234.19', '24','5','1451.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006419.0','1018885.0','2390', '2254','1210','2216389.92', '2211','728','1063121.72', '1206','770','1153268.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094683.0','1044452.0','17', '17','10','22250.26', '17','10','21623.28', '10','2','626.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006420.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094684.0','1044452.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006421.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094685.0','1044452.0','18', '14','4','3247.11', '13','4','3247.11', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000347.0','1018885.0','1', '1','1','1544.03', '1','1','1422.0', '1','1','122.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088611.0','1044452.0','3', '3','1','384.01', '3','0','0.0', '1','1','384.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006422.0','1018885.0','1', '1','1','9191.45', '1','1','6198.0', '1','1','2993.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094686.0','1044452.0','30', '25','14','15958.97', '24','13','15574.96', '10','2','384.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000247.0','1018885.0','530', '484','295','771787.86', '462','175','335622.66', '304','200','436165.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088511.0','1044452.0','12', '8','7','28348.55', '8','7','27942.94', '5','2','405.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006423.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094687.0','1044452.0','7', '5','1','2373.0', '4','1','2373.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000414.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088678.0','1044452.0','129', '122','90','226994.4', '117','75','153517.85', '74','49','73476.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000192.0','1018885.0','17', '14','12','16894.32', '14','8','11452.48', '7','5','5441.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088456.0','1044452.0','589', '537','320','402570.95', '516','108','172979.63', '362','262','229591.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006424.0','1018885.0','1', '1','1','1091.37', '1','1','864.57', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094688.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006425.0','1018885.0','49', '40','14','17295.15', '40','7','12118.25', '19','8','5176.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094689.0','1044452.0','1', '1','1','3588.0', '1','1','3588.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000517.0','1018885.0','14', '12','6','5886.17', '12','4','4746.0', '6','2','1140.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088781.0','1044452.0','1', '1','1','1300.0', '1','1','1300.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000104.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088368.0','1044452.0','9', '7','5','29865.86', '7','5','26355.3', '5','4','3510.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006426.0','1018885.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094690.0','1044452.0','846', '742','484','976278.82', '701','245','531331.25', '526','372','444947.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006427.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094691.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006428.0','1018885.0','1', '1','1','903.57', '1','0','0.0', '1','1','903.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094692.0','1044452.0','57', '51','36','57017.26', '49','25','40463.29', '26','18','16553.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006429.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094693.0','1044452.0','3', '3','1','235.25', '3','0','0.0', '1','1','235.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006430.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094694.0','1044452.0','332', '296','152','300965.47', '276','83','181133.0', '172','97','119832.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000103.0','1018885.0','1', '1','1','4238.53', '1','0','0.0', '1','1','4238.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088367.0','1044452.0','27', '23','6','9036.75', '22','2','4204.75', '11','5','4832.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000145.0','1018885.0','3', '3','1','1475.57', '3','1','1300.0', '1','1','175.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088409.0','1044452.0','1', '1','1','1256.0', '1','1','1256.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000500.0','1018885.0','684', '624','370','687039.53', '578','188','362837.75', '423','282','324201.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088764.0','1044452.0','6', '6','1','610.2', '6','1','610.2', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000195.0','1018885.0','747', '668','350','464348.15', '630','136','244114.18', '423','261','220233.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088459.0','1044452.0','1', '1','1','5428.91', '1','1','5200.0', '1','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000562.0','1018885.0','2', '2','2','8832.8', '2','2','8832.8', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088826.0','1044452.0','38', '36','20','45943.39', '34','17','30914.8', '27','13','15028.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000351.0','1018885.0','1', '1','1','1300.0', '1','1','1300.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088615.0','1044452.0','2', '2','1','2030.69', '2','1','2030.69', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006431.0','1018885.0','3', '3','3','18425.72', '3','3','9980.84', '2','2','8444.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094695.0','1044452.0','1', '1','1','7240.0', '1','1','7240.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006432.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094696.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000128.0','1018885.0','11', '9','4','10492.13', '8','3','1665.2', '4','3','8826.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088392.0','1044452.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006433.0','1018885.0','4', '4','4','11910.21', '4','4','11680.17', '4','1','230.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094697.0','1044452.0','28', '25','17','71066.81', '24','15','51509.34', '14','7','19557.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006434.0','1018885.0','38', '32','23','93228.41', '32','20','47726.77', '16','12','45501.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094698.0','1044452.0','1', '1','1','3187.68', '1','1','3187.68', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000404.0','1018885.0','1', '1','1','5200.0', '1','1','5200.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088668.0','1044452.0','2', '1','1','1302.99', '1','1','1302.99', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006435.0','1018885.0','5', '4','3','6704.58', '4','0','0.0', '3','3','6704.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094699.0','1044452.0','20', '19','6','6524.55', '18','5','6369.45', '12','1','155.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006436.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094700.0','1044452.0','4', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006437.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094701.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006438.0','1018885.0','24', '22','14','9188.05', '21','12','7590.53', '15','6','1597.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094702.0','1044452.0','5', '4','3','11685.56', '4','3','10255.07', '2','1','1430.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006439.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094703.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000198.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088462.0','1044452.0','3', '3','3','11513.0', '3','3','7071.38', '3','1','4441.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000498.0','1018885.0','1', '1','1','4780.32', '1','1','3212.0', '1','1','1568.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088762.0','1044452.0','16', '14','6','25396.28', '13','6','15653.6', '7','1','9742.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006440.0','1018885.0','45', '43','4','1784.85', '37','0','0.0', '34','4','1784.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094704.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000146.0','1018885.0','2', '2','1','195.95', '2','0','0.0', '2','1','195.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088410.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006441.0','1018885.0','6', '5','5','20488.13', '5','5','20113.1', '3','1','375.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094705.0','1044452.0','18', '17','15','39505.71', '16','15','36588.79', '12','9','2916.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006442.0','1018885.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094706.0','1044452.0','358', '333','127','162407.51', '326','58','82868.77', '177','87','79538.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006443.0','1018885.0','8', '7','7','21774.67', '7','7','16827.21', '3','2','4947.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094707.0','1044452.0','6', '6','3','11703.78', '5','3','10318.0', '5','2','1385.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006444.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094708.0','1044452.0','1', '1','1','5200.0', '1','1','5200.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000326.0','1018885.0','4', '4','1','195.95', '4','0','0.0', '2','1','195.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088590.0','1044452.0','3', '2','2','5192.9', '2','2','5192.9', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006445.0','1018885.0','1', '1','1','841.21', '1','1','81.01', '1','1','760.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094709.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000066.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088330.0','1044452.0','7', '7','6','10474.88', '7','6','10017.06', '5','2','457.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006446.0','1018885.0','76', '65','42','102390.27', '61','21','61203.08', '46','34','41187.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094710.0','1044452.0','1138', '1105','281','331152.11', '1005','126','159763.16', '901','201','171388.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006447.0','1018885.0','1', '1','1','8427.74', '1','1','7536.0', '1','1','891.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094711.0','1044452.0','52', '45','25','42316.69', '38','25','29666.18', '26','8','12650.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000125.0','1018885.0','3', '3','2','3429.77', '3','2','3429.77', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088389.0','1044452.0','4', '3','3','16845.08', '3','3','16040.48', '2','1','804.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000194.0','1018885.0','3', '3','1','1271.28', '3','1','874.11', '2','1','397.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088458.0','1044452.0','1', '1','1','1035.34', '1','1','1035.34', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006448.0','1018885.0','7', '7','4','21814.45', '5','4','15786.21', '5','2','6028.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094712.0','1044452.0','2', '2','1','732.0', '2','1','732.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006449.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094713.0','1044452.0','135', '122','89','234310.09', '114','67','149749.55', '90','54','84560.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006450.0','1018885.0','144', '129','85','220443.87', '123','57','123550.84', '95','62','96893.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094714.0','1044452.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006451.0','1018885.0','20', '15','10','36854.1', '14','9','32439.0', '9','6','4415.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094715.0','1044452.0','11', '11','5','5133.23', '11','5','4978.13', '5','1','155.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006452.0','1018885.0','2', '2','2','6281.84', '2','2','6281.84', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094716.0','1044452.0','2', '2','2','2787.57', '2','2','2558.66', '1','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006453.0','1018885.0','7', '2','2','20168.95', '2','2','11136.7', '2','1','9032.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094717.0','1044452.0','14', '10','6','24329.75', '9','6','21531.6', '4','1','2798.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006454.0','1018885.0','2', '2','1','4021.41', '2','1','4021.41', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094718.0','1044452.0','3', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006455.0','1018885.0','9', '8','3','6288.2', '6','1','1374.0', '6','2','4914.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094719.0','1044452.0','4', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006456.0','1018885.0','162', '158','35','20165.85', '144','9','3153.77', '130','29','17012.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094720.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006457.0','1018885.0','1', '1','1','1059.28', '1','1','1059.28', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094721.0','1044452.0','1', '1','1','1300.0', '1','1','1300.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006458.0','1018885.0','3', '3','2','2696.66', '3','1','1568.0', '2','2','1128.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094722.0','1044452.0','6', '5','4','7586.87', '5','4','7356.83', '1','1','230.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006459.0','1018885.0','3', '3','1','4284.0', '3','1','4284.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094723.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006460.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094724.0','1044452.0','748', '719','256','290532.42', '680','113','120159.55', '555','181','170372.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000362.0','1018885.0','2', '2','1','548.46', '2','1','548.46', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088626.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006461.0','1018885.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094725.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006462.0','1018885.0','1', '1','1','1300.0', '1','1','1300.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094726.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006463.0','1018885.0','2', '2','1','1241.88', '1','1','1012.97', '2','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094727.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000148.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088412.0','1044452.0','79', '65','37','163373.22', '64','37','127410.61', '26','7','35962.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006464.0','1018885.0','72', '49','39','149362.55', '47','38','129987.13', '24','15','19375.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094728.0','1044452.0','4', '4','0','0.0', '3','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006465.0','1018885.0','4', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094729.0','1044452.0','5', '5','4','8846.18', '4','4','8388.36', '5','2','457.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006466.0','1018885.0','97', '95','11','6994.24', '88','2','1628.32', '72','9','5365.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094730.0','1044452.0','632', '612','135','147191.27', '553','69','71264.56', '497','87','75926.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006467.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094731.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006468.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094732.0','1044452.0','3', '2','2','10431.92', '2','2','10431.92', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006469.0','1018885.0','2', '1','1','1606.64', '1','1','1606.64', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094733.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006470.0','1018885.0','1', '1','1','6424.5', '1','1','5200.0', '1','1','1224.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094734.0','1044452.0','1', '1','1','2456.99', '1','1','2456.99', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006471.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094735.0','1044452.0','4', '4','3','10672.04', '4','3','10516.94', '1','1','155.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000106.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088370.0','1044452.0','1', '1','1','6428.0', '1','1','6428.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000416.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088680.0','1044452.0','41', '36','30','108958.97', '35','28','80201.8', '20','10','28757.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006472.0','1018885.0','2', '2','2','2325.39', '2','2','2325.39', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094736.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006473.0','1018885.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094737.0','1044452.0','508', '496','133','156938.03', '443','70','88857.02', '412','87','68081.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000252.0','1018885.0','13', '12','3','4848.49', '12','3','4333.64', '6','1','514.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088516.0','1044452.0','3', '2','2','1476.77', '2','2','1476.77', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006474.0','1018885.0','154', '136','54','81284.46', '127','32','42594.55', '73','33','38689.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094738.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006475.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094739.0','1044452.0','4', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006476.0','1018885.0','1', '1','1','840.0', '1','1','840.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094740.0','1044452.0','1', '1','1','11638.01', '1','1','984.0', '1','1','10654.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006477.0','1018885.0','4', '4','3','3194.81', '3','3','3194.81', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094741.0','1044452.0','2', '1','1','2470.62', '1','1','2470.62', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006478.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094742.0','1044452.0','1', '1','1','146.59', '1','0','0.0', '1','1','146.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006479.0','1018885.0','221', '197','105','200528.06', '186','56','92764.18', '129','77','107763.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094743.0','1044452.0','19', '18','9','13252.46', '17','8','12558.25', '12','3','694.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000383.0','1018885.0','19', '19','7','4341.27', '18','5','3241.52', '13','5','1099.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088647.0','1044452.0','8', '7','4','9612.58', '7','4','9089.82', '4','1','522.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006480.0','1018885.0','2', '2','2','3690.52', '2','2','3147.17', '1','1','543.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094744.0','1044452.0','9', '7','4','9446.93', '7','1','6766.0', '6','4','2680.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006481.0','1018885.0','6', '5','5','11668.91', '5','4','8821.99', '4','2','2846.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094745.0','1044452.0','3', '3','3','8105.18', '3','3','6771.92', '3','2','1333.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000408.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088672.0','1044452.0','4', '3','3','25928.56', '3','3','14512.74', '1','1','11415.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000131.0','1018885.0','2', '2','1','715.79', '2','1','715.79', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088395.0','1044452.0','5', '5','3','4261.66', '4','2','2713.0', '4','2','1548.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000434.0','1018885.0','40', '37','17','20047.53', '33','10','14957.81', '26','11','5089.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088698.0','1044452.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006482.0','1018885.0','1', '1','1','1476.75', '1','1','1476.75', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094746.0','1044452.0','8', '7','4','7943.22', '6','4','6464.71', '3','2','1478.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000410.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088674.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006483.0','1018885.0','3', '3','3','16958.95', '3','3','16740.66', '1','1','218.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094747.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000202.0','1018885.0','24', '23','12','22614.4', '21','12','21179.24', '14','6','1435.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088466.0','1044452.0','447', '440','158','190824.46', '403','79','110633.92', '358','105','80190.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006484.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094748.0','1044452.0','1', '1','1','1513.81', '1','1','1513.81', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000298.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088562.0','1044452.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000251.0','1018885.0','2', '2','2','18956.32', '2','2','7103.28', '1','1','11853.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088515.0','1044452.0','3', '3','2','3387.63', '3','2','3387.63', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006485.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094749.0','1044452.0','15', '11','8','34868.47', '11','8','30185.01', '6','3','4683.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006486.0','1018885.0','2', '2','2','3580.0', '2','2','3580.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094750.0','1044452.0','1', '1','1','521.16', '1','1','521.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006487.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094751.0','1044452.0','1', '1','1','2051.35', '1','1','1143.62', '1','1','907.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006488.0','1018885.0','1015', '988','256','227843.73', '893','103','119645.38', '782','183','108198.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094752.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006489.0','1018885.0','1', '1','1','758.42', '1','1','758.42', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094753.0','1044452.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006490.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094754.0','1044452.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006491.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094755.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006492.0','1018885.0','11', '7','4','10798.27', '7','4','10798.27', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094756.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006493.0','1018885.0','6', '6','4','4178.82', '6','4','4178.82', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094757.0','1044452.0','46', '43','22','34530.82', '39','18','28642.1', '33','14','5888.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006494.0','1018885.0','13', '12','8','16713.18', '12','8','15325.66', '9','5','1387.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094758.0','1044452.0','4', '3','3','11994.72', '3','3','8963.07', '3','2','3031.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006495.0','1018885.0','29', '25','17','41363.37', '24','14','40204.65', '13','4','1158.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094759.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006496.0','1018885.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094760.0','1044452.0','19', '15','13','44797.47', '15','13','35870.28', '5','1','8927.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006497.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094761.0','1044452.0','80', '71','51','155834.4', '71','50','114422.24', '28','12','41412.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006498.0','1018885.0','7', '3','2','3558.58', '3','2','3558.58', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094762.0','1044452.0','43', '41','27','49244.57', '40','25','46654.51', '18','7','2590.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006499.0','1018885.0','1', '1','1','687.39', '1','1','687.39', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094763.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006500.0','1018885.0','1', '1','1','1692.21', '1','1','807.12', '1','1','885.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094764.0','1044452.0','33', '27','12','24835.28', '25','12','22460.74', '8','3','2374.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006501.0','1018885.0','4', '3','2','7618.9', '3','2','7618.9', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094765.0','1044452.0','179', '173','87','197780.62', '171','85','176372.6', '82','20','21408.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006502.0','1018885.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094766.0','1044452.0','4', '2','1','5200.0', '1','1','5200.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006503.0','1018885.0','1', '1','1','1074.76', '1','1','1074.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094767.0','1044452.0','4', '4','1','2263.51', '4','1','2263.51', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000273.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088537.0','1044452.0','35', '29','14','33580.95', '27','11','12256.23', '19','6','21324.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006504.0','1018885.0','4', '4','1','877.1', '4','1','877.1', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094768.0','1044452.0','7', '4','1','7108.0', '3','1','7108.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006505.0','1018885.0','4', '2','2','2650.5', '2','2','2650.5', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094769.0','1044452.0','5', '4','2','1667.84', '4','2','1512.74', '1','1','155.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006506.0','1018885.0','8', '8','3','7469.02', '8','2','7272.57', '4','2','196.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094770.0','1044452.0','1', '1','1','687.39', '1','1','687.39', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006507.0','1018885.0','7', '4','4','17122.51', '4','4','17122.51', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094771.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006508.0','1018885.0','9', '7','2','877.51', '6','1','648.6', '3','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094772.0','1044452.0','2', '2','1','2674.0', '2','1','2674.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006509.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094773.0','1044452.0','1', '1','1','1300.0', '1','1','1300.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006510.0','1018885.0','1', '1','1','3464.06', '1','1','3464.06', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094774.0','1044452.0','1', '1','1','3375.76', '1','1','3375.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006511.0','1018885.0','4', '4','2','6947.33', '4','2','6947.33', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094775.0','1044452.0','45', '44','17','23418.99', '43','13','16220.06', '29','7','7198.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000516.0','1018885.0','18', '12','7','25631.87', '11','5','9990.61', '7','4','15641.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088780.0','1044452.0','5', '4','3','12145.18', '4','3','11595.18', '2','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006512.0','1018885.0','2', '2','1','1545.91', '2','1','1545.91', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094776.0','1044452.0','2', '1','1','3230.92', '1','1','3230.92', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006513.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094777.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006514.0','1018885.0','3', '2','2','6338.32', '2','2','5842.88', '1','1','495.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094778.0','1044452.0','29', '28','19','23895.6', '26','16','18011.43', '17','9','5884.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006515.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094779.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006516.0','1018885.0','2', '1','1','5599.16', '1','1','5200.0', '1','1','399.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094780.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006517.0','1018885.0','31', '16','4','12292.15', '15','4','12292.15', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094781.0','1044452.0','3', '3','1','3271.01', '2','1','3271.01', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006518.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094782.0','1044452.0','13', '9','6','16054.67', '9','6','15825.76', '2','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006519.0','1018885.0','9', '9','6','12293.52', '9','6','9619.66', '7','4','2673.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094783.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006520.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094784.0','1044452.0','8', '6','3','3647.01', '5','3','3580.11', '3','1','66.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006521.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094785.0','1044452.0','18', '17','12','25422.11', '17','10','22718.52', '11','5','2703.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006522.0','1018885.0','12', '5','5','12161.17', '5','5','11577.71', '2','2','583.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094786.0','1044452.0','22', '21','10','30523.81', '21','9','19195.59', '13','5','11328.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000525.0','1018885.0','24', '18','11','31437.84', '18','11','30724.69', '6','2','713.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088789.0','1044452.0','4', '3','1','2207.76', '3','1','2011.43', '3','1','196.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000203.0','1018885.0','1', '1','1','2384.86', '1','1','2384.86', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088467.0','1044452.0','5', '2','1','467.4', '2','1','467.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006523.0','1018885.0','9', '6','2','7673.15', '6','1','3239.0', '2','2','4434.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094787.0','1044452.0','27', '22','12','62923.15', '22','11','37341.84', '13','7','25581.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000250.0','1018885.0','2', '2','1','440.23', '2','1','440.23', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088514.0','1044452.0','68', '67','29','29141.65', '65','28','26549.1', '31','4','2592.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006524.0','1018885.0','1', '1','1','4957.06', '1','1','4957.06', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094788.0','1044452.0','33', '32','13','28232.14', '31','13','26883.12', '15','2','1349.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000465.0','1018885.0','13', '13','4','2337.46', '12','2','1260.97', '9','2','1076.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088729.0','1044452.0','9', '6','1','2429.48', '6','1','2429.48', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006525.0','1018885.0','1', '1','1','2639.95', '1','1','2411.04', '1','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094789.0','1044452.0','5', '2','1','2878.56', '2','1','2878.56', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000129.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088393.0','1044452.0','23', '15','8','21496.11', '14','8','18365.77', '4','1','3130.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000382.0','1018885.0','1', '1','1','2271.2', '1','1','2271.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088646.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000466.0','1018885.0','12', '12','11','11034.55', '12','11','11034.55', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088730.0','1044452.0','80', '78','44','111200.35', '77','43','108097.71', '46','9','3102.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006526.0','1018885.0','8', '7','3','1328.7', '6','2','778.7', '3','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094790.0','1044452.0','1', '1','1','1300.0', '1','1','1300.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006527.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094791.0','1044452.0','3', '2','2','3932.81', '2','2','3932.81', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000467.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088731.0','1044452.0','2', '1','1','3571.7', '1','1','3571.7', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006528.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094792.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006529.0','1018885.0','5', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094793.0','1044452.0','3', '2','2','5758.57', '2','2','5248.92', '1','1','509.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006530.0','1018885.0','3', '3','2','5686.84', '3','2','5686.84', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094794.0','1044452.0','59', '49','40','120538.69', '49','39','106227.59', '19','10','14311.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006531.0','1018885.0','2', '2','2','311.74', '2','1','156.64', '1','1','155.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094795.0','1044452.0','7', '4','2','1939.35', '4','2','1939.35', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006532.0','1018885.0','3', '3','3','10774.74', '3','3','8805.97', '3','1','1968.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094796.0','1044452.0','48', '48','32','62163.47', '48','32','56293.27', '24','3','5870.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000418.0','1018885.0','1', '1','1','5585.84', '1','1','5585.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088682.0','1044452.0','5', '5','4','5443.71', '5','4','5288.61', '3','1','155.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006533.0','1018885.0','27', '21','15','46940.53', '20','14','46408.17', '5','4','532.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094797.0','1044452.0','7', '3','3','2653.5', '3','3','2424.59', '1','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006534.0','1018885.0','1', '1','1','228.91', '1','0','0.0', '1','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094798.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006535.0','1018885.0','96', '78','55','258027.54', '75','49','159299.02', '46','31','98728.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094799.0','1044452.0','3', '1','1','500.0', '0','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006536.0','1018885.0','1', '1','1','525.53', '1','1','525.53', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094800.0','1044452.0','20', '19','11','14209.84', '19','11','13280.21', '8','2','929.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006537.0','1018885.0','3', '3','2','3647.77', '3','2','3481.76', '1','1','166.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094801.0','1044452.0','1', '1','1','687.39', '1','1','687.39', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006538.0','1018885.0','1', '1','1','1992.82', '1','1','1992.82', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094802.0','1044452.0','1', '1','1','6478.91', '1','1','6250.0', '1','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006539.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094803.0','1044452.0','44', '34','26','138298.8', '34','23','80700.13', '18','10','57598.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006540.0','1018885.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094804.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006541.0','1018885.0','17', '17','16','50169.38', '17','13','34426.09', '11','5','15743.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094805.0','1044452.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000384.0','1018885.0','2', '2','2','8836.0', '2','2','8225.76', '2','1','610.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088648.0','1044452.0','4', '4','3','3900.0', '4','3','3900.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006542.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094806.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006543.0','1018885.0','9', '7','4','8759.38', '7','3','7732.0', '3','1','1027.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094807.0','1044452.0','20', '9','6','32875.61', '9','5','18955.29', '5','4','13920.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006544.0','1018885.0','82', '63','53','228028.83', '63','53','175483.43', '28','18','52545.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094808.0','1044452.0','2', '2','1','960.96', '2','1','153.24', '1','1','807.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006545.0','1018885.0','1', '1','1','4002.67', '1','1','4002.67', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094809.0','1044452.0','5', '3','2','2658.85', '3','2','2233.61', '2','2','425.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006546.0','1018885.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094810.0','1044452.0','5', '5','2','5477.5', '4','1','5200.0', '3','1','277.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006547.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094811.0','1044452.0','2', '2','1','1240.96', '2','1','855.21', '2','1','385.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000364.0','1018885.0','5', '5','3','2137.17', '5','2','1029.28', '5','2','1107.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088628.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006548.0','1018885.0','54', '53','22','37438.21', '52','20','34189.64', '27','5','3248.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094812.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006549.0','1018885.0','1', '1','1','866.83', '1','1','866.83', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094813.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006550.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094814.0','1044452.0','31', '18','7','9267.35', '17','7','8683.89', '5','2','583.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006551.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094815.0','1044452.0','45', '31','14','27261.96', '26','14','24979.96', '13','4','2282.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006552.0','1018885.0','52', '46','24','38861.7', '44','22','32563.04', '15','6','6298.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094816.0','1044452.0','48', '40','20','32220.3', '38','20','30361.43', '18','4','1858.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006553.0','1018885.0','1', '1','1','1177.46', '1','1','1177.46', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094817.0','1044452.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006554.0','1018885.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094818.0','1044452.0','4', '4','1','384.01', '4','0','0.0', '1','1','384.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000469.0','1018885.0','9', '6','3','1784.34', '6','2','1342.4', '3','2','441.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088733.0','1044452.0','4', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006555.0','1018885.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094819.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006556.0','1018885.0','68', '66','50','101077.36', '66','48','82728.51', '26','16','18348.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094820.0','1044452.0','1', '1','1','1813.72', '1','1','1813.72', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006557.0','1018885.0','2', '2','1','1138.0', '2','1','1138.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094821.0','1044452.0','148', '139','71','103254.34', '136','60','89322.98', '83','22','13931.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006558.0','1018885.0','7', '6','1','1300.0', '5','1','1300.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094822.0','1044452.0','1', '1','1','3561.31', '1','1','3561.31', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006559.0','1018885.0','6', '2','2','6145.73', '2','2','6145.73', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094823.0','1044452.0','4', '3','2','919.36', '3','2','919.36', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006560.0','1018885.0','1', '1','1','228.91', '1','0','0.0', '1','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094824.0','1044452.0','29', '29','15','28116.31', '29','14','26070.58', '11','5','2045.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006561.0','1018885.0','4', '4','0','0.0', '4','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094825.0','1044452.0','1', '1','1','2313.15', '1','1','2313.15', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006562.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094826.0','1044452.0','1', '1','1','1569.68', '1','1','1569.68', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006563.0','1018885.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094827.0','1044452.0','6', '5','3','3554.14', '5','3','3331.8', '3','1','222.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006564.0','1018885.0','99', '94','42','55138.61', '93','36','38826.23', '44','15','16312.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094828.0','1044452.0','3', '1','1','4356.76', '1','1','1004.0', '1','1','3352.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000271.0','1018885.0','51', '49','9','13656.83', '49','9','13253.37', '25','1','403.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088535.0','1044452.0','1', '1','1','4209.75', '1','1','3428.99', '1','1','780.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006565.0','1018885.0','1', '1','1','1224.97', '1','0','0.0', '1','1','1224.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094829.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006566.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094830.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000565.0','1018885.0','31', '30','13','15755.78', '30','13','13075.3', '14','5','2680.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088829.0','1044452.0','1', '1','1','2932.06', '1','1','2932.06', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006567.0','1018885.0','167', '161','73','81510.47', '161','69','74785.68', '76','15','6724.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094831.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006568.0','1018885.0','4', '2','2','3594.05', '2','2','3445.81', '1','1','148.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094832.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006569.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094833.0','1044452.0','52', '51','17','30554.21', '51','16','29481.5', '18','2','1072.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006570.0','1018885.0','11', '9','8','31361.61', '9','8','30977.51', '5','2','384.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094834.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006571.0','1018885.0','7', '7','5','10079.0', '7','5','10079.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094835.0','1044452.0','6', '6','5','10709.05', '6','5','10240.12', '4','3','468.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006572.0','1018885.0','22', '21','9','27963.31', '20','6','15599.11', '13','6','12364.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094836.0','1044452.0','1', '1','1','24408.71', '1','1','7200.0', '1','1','17208.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000333.0','1018885.0','4', '4','2','17532.0', '4','2','6500.0', '4','1','11032.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088597.0','1044452.0','42', '39','26','53111.05', '38','26','47140.18', '21','8','5970.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006573.0','1018885.0','2', '2','1','461.91', '2','1','461.91', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094837.0','1044452.0','25', '25','8','7763.8', '25','8','7763.8', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006574.0','1018885.0','29', '28','12','21974.95', '28','11','21075.73', '14','3','899.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094838.0','1044452.0','3', '3','2','2112.16', '3','1','1876.3', '1','1','235.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006575.0','1018885.0','1', '1','1','1223.31', '1','1','1223.31', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094839.0','1044452.0','5', '5','4','46682.65', '5','4','15064.82', '3','3','31617.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000521.0','1018885.0','10', '10','7','17694.94', '10','7','17341.82', '2','1','353.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088785.0','1044452.0','12', '12','4','6131.75', '12','4','6131.75', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006576.0','1018885.0','306', '295','73','91264.94', '293','71','84583.13', '130','7','6681.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094840.0','1044452.0','16', '16','4','4144.12', '15','4','4144.12', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006577.0','1018885.0','4', '3','2','1800.0', '2','1','1300.0', '2','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094841.0','1044452.0','8', '6','4','17840.79', '5','4','17456.69', '4','2','384.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006578.0','1018885.0','12', '12','10','17104.37', '11','8','16214.12', '4','2','890.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094842.0','1044452.0','20', '19','16','46961.49', '19','16','35934.66', '10','8','11026.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006579.0','1018885.0','5', '4','3','4602.19', '4','3','4602.19', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094843.0','1044452.0','5', '5','4','7981.44', '5','3','7833.2', '1','1','148.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006580.0','1018885.0','2', '2','2','4820.55', '2','2','4608.0', '1','1','212.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094844.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006581.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094845.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000564.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088828.0','1044452.0','18', '18','8','13683.93', '18','6','7690.38', '8','4','5993.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006582.0','1018885.0','14', '14','8','11234.15', '14','7','9270.71', '4','1','1963.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094846.0','1044452.0','5', '5','3','6808.57', '5','3','5944.22', '3','2','864.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006583.0','1018885.0','45', '43','13','10115.46', '43','12','9762.08', '20','2','353.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094847.0','1044452.0','6', '5','3','2473.1', '5','3','2473.1', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000255.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088519.0','1044452.0','136', '131','52','61874.88', '131','45','52247.18', '75','13','9627.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006584.0','1018885.0','4', '3','1','1293.38', '3','0','0.0', '2','1','1293.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094848.0','1044452.0','4', '4','2','693.87', '4','2','693.87', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006585.0','1018885.0','3', '3','3','2494.99', '3','3','1599.26', '1','1','895.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094849.0','1044452.0','7', '6','3','36051.74', '5','1','1250.0', '6','3','34801.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006586.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094850.0','1044452.0','34', '34','9','6708.83', '33','8','6450.54', '13','1','258.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006587.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094851.0','1044452.0','58', '52','37','90088.43', '51','34','82281.95', '18','14','7806.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006588.0','1018885.0','1', '1','1','1003.13', '1','1','1003.13', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094852.0','1044452.0','43', '39','33','76352.78', '39','28','63189.11', '19','17','13163.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006589.0','1018885.0','22', '21','17','56288.94', '21','16','35993.7', '11','7','20295.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094853.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006590.0','1018885.0','4', '4','4','9898.19', '4','4','9271.51', '2','2','626.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094854.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006591.0','1018885.0','6', '6','5','9410.05', '6','5','8687.71', '2','1','722.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094855.0','1044452.0','55', '47','19','29000.01', '45','17','27143.81', '17','5','1856.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006592.0','1018885.0','106', '104','49','48892.76', '103','39','36863.2', '49','16','12029.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094856.0','1044452.0','1', '1','1','205.94', '1','0','0.0', '1','1','205.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006593.0','1018885.0','167', '166','86','116423.48', '164','76','98151.02', '85','25','18272.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094857.0','1044452.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000522.0','1018885.0','18', '18','7','9839.33', '18','5','4296.03', '11','5','5543.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088786.0','1044452.0','1', '1','1','1142.03', '1','1','1142.03', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006594.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094858.0','1044452.0','2', '2','1','3732.64', '2','1','2109.37', '2','1','1623.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006595.0','1018885.0','8', '8','7','22082.51', '8','6','10029.23', '3','2','12053.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094859.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006596.0','1018885.0','4', '3','2','2660.08', '3','2','2118.73', '2','1','541.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094860.0','1044452.0','4', '4','2','1847.96', '4','2','1662.63', '4','1','185.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000041.0','1018885.0','121', '117','51','61346.25', '116','42','46188.98', '58','18','15157.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088305.0','1044452.0','9', '9','8','27889.0', '9','8','26275.13', '6','4','1613.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006597.0','1018885.0','5', '5','5','39893.99', '5','5','21228.31', '4','4','18665.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094861.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006598.0','1018885.0','46', '41','34','74471.27', '41','33','57292.37', '28','12','17178.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094862.0','1044452.0','4', '4','4','14610.72', '4','4','9120.48', '2','1','5490.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006599.0','1018885.0','2', '2','2','7005.89', '2','2','6770.03', '2','1','235.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094863.0','1044452.0','7', '6','4','19673.0', '5','2','1796.0', '6','3','17877.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006600.0','1018885.0','8', '8','4','6672.52', '8','4','6559.08', '3','1','113.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094864.0','1044452.0','1', '1','1','3726.24', '1','1','3726.24', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006601.0','1018885.0','12', '12','7','14740.61', '12','7','13320.57', '11','2','1420.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094865.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006602.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094866.0','1044452.0','88', '88','60','78159.09', '86','43','52003.05', '61','25','26156.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006603.0','1018885.0','6', '5','3','9573.79', '5','3','9573.79', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094867.0','1044452.0','13', '12','6','35751.91', '12','6','17914.72', '5','2','17837.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006604.0','1018885.0','15', '12','11','34535.73', '12','9','25911.71', '6','4','8624.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094868.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000197.0','1018885.0','1', '1','1','1562.42', '1','1','1562.42', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088461.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006605.0','1018885.0','36', '28','17','51227.54', '26','16','50125.89', '11','2','1101.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094869.0','1044452.0','30', '23','23','81264.43', '23','21','65302.51', '11','10','15961.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006606.0','1018885.0','12', '6','5','6734.74', '5','5','6734.74', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094870.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000155.0','1018885.0','22', '17','16','81139.45', '17','16','36831.76', '8','5','44307.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088419.0','1044452.0','14', '8','6','27182.45', '8','6','24373.96', '3','1','2808.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006607.0','1018885.0','1', '1','1','1808.77', '1','1','1808.77', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094871.0','1044452.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006608.0','1018885.0','65', '62','51','45475.42', '56','7','10128.37', '56','51','35347.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094872.0','1044452.0','8', '8','7','8309.09', '8','7','7697.84', '4','1','611.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006609.0','1018885.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094873.0','1044452.0','10', '4','3','9781.37', '4','3','5556.35', '1','1','4225.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006610.0','1018885.0','24', '20','14','95018.54', '19','14','63369.45', '11','8','31649.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094874.0','1044452.0','4', '4','2','8227.97', '4','2','8227.97', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000254.0','1018885.0','3', '3','3','6362.56', '3','1','3714.82', '3','3','2647.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088518.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006611.0','1018885.0','6', '3','1','1257.68', '3','1','874.0', '1','1','383.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094875.0','1044452.0','30', '29','25','23446.5', '28','4','5315.28', '28','25','18131.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006612.0','1018885.0','197', '191','88','134352.17', '189','82','125189.43', '95','12','9162.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094876.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006613.0','1018885.0','1', '1','1','643.4', '1','1','529.4', '1','1','114.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094877.0','1044452.0','17', '17','7','8567.47', '16','7','8567.47', '11','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006614.0','1018885.0','4', '4','1','931.79', '4','1','572.46', '2','1','359.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094878.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000355.0','1018885.0','5', '5','2','2313.41', '5','2','2313.41', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088619.0','1044452.0','15', '14','13','31802.68', '14','11','21624.42', '11','8','10178.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006615.0','1018885.0','6', '6','6','6811.28', '6','6','6811.28', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094879.0','1044452.0','47', '41','25','92747.98', '40','25','69124.82', '20','6','23623.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000218.0','1018885.0','13', '12','8','19463.75', '10','7','17738.75', '7','1','1725.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088482.0','1044452.0','115', '107','31','40161.16', '106','29','38781.15', '54','3','1380.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006616.0','1018885.0','33', '9','4','10096.03', '5','4','7640.88', '6','1','2455.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094880.0','1044452.0','16', '16','11','130574.26', '15','10','47202.81', '13','10','83371.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006617.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094881.0','1044452.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006618.0','1018885.0','1', '1','1','222.34', '1','0','0.0', '1','1','222.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094882.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006619.0','1018885.0','2', '2','1','3844.0', '2','1','3844.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094883.0','1044452.0','2', '2','1','1048.75', '2','0','0.0', '2','1','1048.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000199.0','1018885.0','374', '367','173','273601.14', '364','162','242848.51', '198','34','30752.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088463.0','1044452.0','11', '9','2','650.59', '9','1','493.6', '1','1','156.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006620.0','1018885.0','21', '21','4','4074.48', '21','4','3560.08', '10','1','514.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094884.0','1044452.0','2', '2','2','2035.83', '2','0','0.0', '2','2','2035.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006621.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094885.0','1044452.0','3', '3','2','5260.36', '3','2','5033.48', '3','2','226.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006622.0','1018885.0','16', '15','6','13633.51', '15','6','11439.48', '4','2','2194.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094886.0','1044452.0','1', '1','1','3494.22', '1','1','3494.22', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006623.0','1018885.0','131', '122','42','49581.33', '119','41','44975.15', '56','5','4606.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094887.0','1044452.0','69', '68','22','27777.19', '66','21','24913.7', '37','4','2863.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006624.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094888.0','1044452.0','67', '58','49','153901.05', '58','45','133272.38', '34','24','20628.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006625.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094889.0','1044452.0','1', '1','1','6832.92', '1','1','5200.0', '1','1','1632.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006626.0','1018885.0','5', '5','3','1870.41', '5','1','596.96', '3','2','1273.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094890.0','1044452.0','2', '1','1','369.15', '0','0','0.0', '1','1','369.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000356.0','1018885.0','3', '3','1','1091.63', '3','1','1091.63', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088620.0','1044452.0','17', '17','10','33645.31', '17','10','23423.87', '7','3','10221.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006627.0','1018885.0','1', '1','1','222.34', '1','0','0.0', '1','1','222.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094891.0','1044452.0','42', '35','16','38068.77', '35','15','34922.97', '19','5','3145.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006628.0','1018885.0','1011', '975','370','493121.56', '959','342','411211.76', '507','80','81909.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094892.0','1044452.0','4', '4','1','2600.0', '4','1','2600.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006629.0','1018885.0','2', '2','2','2599.89', '2','2','2599.89', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094893.0','1044452.0','1', '1','1','106.31', '1','1','106.31', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000067.0','1018885.0','5', '5','5','12597.71', '5','5','12358.08', '3','1','239.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088331.0','1044452.0','1', '1','1','517.27', '1','1','517.27', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006630.0','1018885.0','3', '3','1','3530.87', '3','1','3530.87', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094894.0','1044452.0','22', '19','6','10688.26', '19','4','6576.28', '9','3','4111.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006631.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094895.0','1044452.0','1', '1','1','2289.69', '1','1','2289.69', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006632.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094896.0','1044452.0','13', '12','2','1113.36', '12','2','1113.36', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000219.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088483.0','1044452.0','10', '9','3','3332.0', '9','3','3332.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006633.0','1018885.0','1', '1','1','2149.48', '1','1','1122.0', '1','1','1027.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094897.0','1044452.0','4', '3','2','4087.2', '3','2','4087.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006634.0','1018885.0','32', '32','12','16244.35', '32','8','12270.08', '17','4','3974.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094898.0','1044452.0','664', '650','305','530239.39', '646','259','385426.52', '350','110','144812.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006635.0','1018885.0','3', '2','2','2775.75', '2','2','2775.75', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094899.0','1044452.0','123', '120','38','46713.43', '119','33','41989.63', '56','9','4723.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006636.0','1018885.0','5', '5','5','12862.44', '5','4','12390.72', '2','2','471.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094900.0','1044452.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000089.0','1018885.0','2', '1','1','3154.47', '1','1','2918.61', '1','1','235.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088353.0','1044452.0','49', '49','20','95468.08', '49','20','61508.33', '21','9','33959.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006637.0','1018885.0','124', '119','64','87262.97', '118','61','84926.93', '60','5','2336.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094901.0','1044452.0','78', '75','40','62127.18', '75','37','53515.18', '41','10','8612.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006638.0','1018885.0','18', '17','12','12714.82', '17','12','11981.98', '9','2','732.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094902.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006639.0','1018885.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094903.0','1044452.0','3', '3','1','260.27', '3','1','260.27', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000221.0','1018885.0','13', '13','2','1288.59', '12','2','1288.59', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088485.0','1044452.0','3', '2','1','560.18', '2','1','560.18', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006640.0','1018885.0','32', '28','22','55346.86', '28','21','47780.95', '15','11','7565.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094904.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006641.0','1018885.0','7', '6','6','11369.52', '5','4','5322.93', '4','4','6046.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094905.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000231.0','1018885.0','11', '10','8','11740.4', '10','8','10778.94', '5','1','961.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088495.0','1044452.0','5', '4','1','1030.12', '3','1','1030.12', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006642.0','1018885.0','7', '7','3','5137.14', '7','3','5023.7', '2','1','113.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094906.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000341.0','1018885.0','1', '1','1','6025.05', '1','1','5200.0', '1','1','825.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088605.0','1044452.0','2', '1','1','2889.93', '1','1','1494.24', '1','1','1395.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006643.0','1018885.0','59', '56','28','60527.22', '55','26','47813.72', '22','11','12713.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094907.0','1044452.0','18', '18','11','17535.73', '18','7','10761.79', '10','8','6773.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006644.0','1018885.0','40', '38','21','28329.74', '37','17','25666.39', '18','6','2663.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094908.0','1044452.0','220', '209','78','107385.31', '204','66','76420.0', '99','22','30965.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000520.0','1018885.0','13', '11','8','18366.13', '11','8','17941.19', '5','3','424.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088784.0','1044452.0','2', '2','1','359.26', '2','1','359.26', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006645.0','1018885.0','26', '24','4','7202.82', '24','4','4561.61', '11','2','2641.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094909.0','1044452.0','2', '2','1','1122.0', '2','1','1122.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006646.0','1018885.0','1', '1','1','931.32', '1','1','672.03', '1','1','259.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094910.0','1044452.0','44', '42','13','29116.16', '42','12','10798.96', '23','2','18317.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006647.0','1018885.0','344', '305','275','853636.12', '301','252','594846.65', '193','148','258789.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094911.0','1044452.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006648.0','1018885.0','4', '4','3','7142.66', '4','3','6903.03', '1','1','239.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094912.0','1044452.0','13', '11','6','14325.98', '11','6','12628.65', '4','1','1697.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006649.0','1018885.0','1', '1','1','5200.0', '1','1','5200.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094913.0','1044452.0','1', '1','1','823.25', '1','1','823.25', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006650.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094914.0','1044452.0','254', '241','73','90242.72', '237','66','81463.32', '107','15','8779.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000329.0','1018885.0','3', '3','3','4393.48', '3','2','1802.74', '3','3','2590.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088593.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006651.0','1018885.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094915.0','1044452.0','3', '3','3','26862.34', '3','3','15586.74', '2','1','11275.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006652.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094916.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006653.0','1018885.0','129', '128','75','95272.61', '127','71','91200.62', '76','9','4071.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094917.0','1044452.0','3', '3','2','3324.06', '3','2','2729.07', '2','1','594.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006654.0','1018885.0','3', '2','1','3111.05', '2','1','3111.05', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094918.0','1044452.0','18', '17','13','43577.72', '17','13','38096.0', '9','2','5481.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006655.0','1018885.0','3', '3','1','512.31', '3','1','512.31', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094919.0','1044452.0','28', '25','12','18424.9', '25','12','17470.86', '10','2','954.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006656.0','1018885.0','7', '7','4','7154.57', '7','4','4319.82', '5','1','2834.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094920.0','1044452.0','53', '53','23','33002.62', '52','23','31462.71', '31','1','1539.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006657.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094921.0','1044452.0','1', '1','1','853.33', '1','1','853.33', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006658.0','1018885.0','4', '3','1','102.2', '3','1','102.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094922.0','1044452.0','1', '1','1','3084.02', '1','1','2935.78', '1','1','148.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006659.0','1018885.0','1', '1','1','1138.0', '1','1','1138.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094923.0','1044452.0','3', '2','1','402.82', '2','1','402.82', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000068.0','1018885.0','5', '5','3','15065.29', '5','3','11049.69', '1','1','4015.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088332.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006660.0','1018885.0','2', '1','1','1804.37', '1','1','1804.37', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094924.0','1044452.0','35', '34','15','43725.81', '34','14','40191.67', '18','3','3534.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006661.0','1018885.0','34', '34','18','30704.87', '33','15','17466.82', '20','10','13238.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094925.0','1044452.0','274', '259','43','61553.32', '258','40','46222.12', '131','11','15331.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006662.0','1018885.0','5', '4','3','4745.94', '4','3','4595.94', '2','1','150.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094926.0','1044452.0','148', '143','84','157123.22', '135','74','109610.68', '81','33','47512.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006663.0','1018885.0','21', '20','14','29077.35', '20','14','27455.46', '9','4','1621.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094927.0','1044452.0','7', '4','1','2284.41', '4','1','2284.41', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000329.0','1018885.0','3', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088593.0','1044452.0','62', '56','22','59704.66', '55','16','19658.58', '30','12','40046.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006664.0','1018885.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094928.0','1044452.0','273', '268','123','165376.32', '266','116','146359.85', '130','24','19016.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006665.0','1018885.0','2', '1','1','920.32', '1','1','920.32', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094929.0','1044452.0','110', '103','87','258115.61', '101','79','212084.4', '63','42','46031.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006666.0','1018885.0','112', '110','44','45797.15', '108','40','39815.29', '52','10','5981.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094930.0','1044452.0','1', '1','1','641.37', '1','1','641.37', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006667.0','1018885.0','8', '7','7','21108.62', '7','7','20724.52', '3','1','384.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094931.0','1044452.0','124', '122','84','198386.95', '122','82','172429.36', '69','18','25957.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000294.0','1018885.0','6', '6','6','11915.66', '6','5','11295.7', '4','2','619.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088558.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006668.0','1018885.0','6', '6','3','7699.58', '6','3','7440.29', '3','1','259.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094932.0','1044452.0','308', '291','152','241312.23', '284','139','189612.86', '150','42','51699.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000213.0','1018885.0','422', '356','289','1054491.78', '337','257','619014.25', '217','147','435477.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088477.0','1044452.0','17', '17','3','6098.08', '17','3','6098.08', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000258.0','1018885.0','1', '1','1','5584.1', '1','1','5200.0', '1','1','384.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088522.0','1044452.0','17', '12','11','32546.36', '12','11','29222.15', '7','2','3324.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006669.0','1018885.0','3', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094933.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006670.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094934.0','1044452.0','1', '1','1','8734.57', '1','0','0.0', '1','1','8734.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006671.0','1018885.0','87', '77','64','147105.23', '74','62','140064.48', '33','13','7040.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094935.0','1044452.0','21', '17','7','17389.29', '17','7','17267.39', '6','1','121.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006672.0','1018885.0','18', '15','9','14764.08', '15','7','12359.54', '9','3','2404.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094936.0','1044452.0','5', '5','2','2616.7', '4','2','2442.15', '2','1','174.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006673.0','1018885.0','13', '13','10','17281.38', '13','10','16782.17', '4','3','499.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094937.0','1044452.0','105', '103','49','66895.13', '101','40','50980.9', '63','21','15914.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000087.0','1018885.0','333', '322','268','229390.93', '292','45','35500.66', '290','256','193890.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088351.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006674.0','1018885.0','2', '2','1','435.76', '2','1','435.76', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094938.0','1044452.0','1', '1','1','7017.91', '1','1','1189.9', '1','1','5828.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006675.0','1018885.0','1', '1','1','323.9', '1','1','323.9', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094939.0','1044452.0','30', '29','15','24296.55', '28','15','16949.32', '17','5','7347.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006676.0','1018885.0','3', '3','1','265.89', '3','1','265.89', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094940.0','1044452.0','39', '38','19','28545.6', '37','12','23952.98', '31','10','4592.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006677.0','1018885.0','131', '129','71','109362.84', '126','67','88122.02', '70','12','21240.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094941.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006678.0','1018885.0','2', '2','1','3622.82', '2','1','3622.82', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094942.0','1044452.0','6', '6','3','7916.42', '6','3','3638.47', '2','1','4277.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006679.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094943.0','1044452.0','1', '1','1','1432.0', '1','1','1432.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006680.0','1018885.0','4', '4','1','807.94', '4','1','585.6', '1','1','222.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094944.0','1044452.0','16', '16','5','2936.65', '16','4','2679.45', '7','1','257.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006681.0','1018885.0','106', '103','40','42940.53', '99','32','35066.72', '59','13','7873.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094945.0','1044452.0','6', '4','2','4122.34', '4','2','3900.0', '2','1','222.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006682.0','1018885.0','69', '65','18','40812.27', '63','17','33524.78', '25','6','7287.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094946.0','1044452.0','1', '1','1','2754.0', '1','1','2754.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006683.0','1018885.0','8', '5','4','10813.22', '5','4','9285.59', '3','1','1527.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094947.0','1044452.0','223', '215','79','68650.73', '214','74','62872.21', '97','12','5778.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006684.0','1018885.0','5', '5','5','15087.14', '5','5','12521.72', '2','2','2565.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094948.0','1044452.0','6', '6','6','24729.57', '4','4','14644.0', '4','4','10085.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000256.0','1018885.0','1', '1','1','251.85', '1','1','251.85', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088520.0','1044452.0','95', '94','40','52868.02', '93','39','50658.04', '44','5','2209.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006685.0','1018885.0','23', '22','16','38064.56', '21','14','32729.69', '13','6','5334.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094949.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006686.0','1018885.0','2', '2','2','1844.0', '2','2','1844.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094950.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006687.0','1018885.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094951.0','1044452.0','54', '51','25','56603.25', '50','24','51101.92', '26','5','5501.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006688.0','1018885.0','2', '2','1','480.12', '2','1','480.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094952.0','1044452.0','9', '9','3','5764.12', '9','2','1003.74', '4','1','4760.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006689.0','1018885.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094953.0','1044452.0','1', '1','1','5473.79', '1','1','5295.03', '1','1','178.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000366.0','1018885.0','7', '4','4','2576.94', '4','3','2428.7', '2','1','148.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088630.0','1044452.0','1', '1','1','2154.36', '1','1','1818.58', '1','1','335.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006690.0','1018885.0','3', '2','2','14199.45', '2','2','6779.25', '1','1','7420.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094954.0','1044452.0','84', '83','47','85358.83', '82','45','59006.0', '42','13','26352.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006691.0','1018885.0','5', '5','4','16418.4', '5','4','9836.46', '1','1','6581.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094955.0','1044452.0','2', '2','1','3848.66', '2','1','2988.28', '1','1','860.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006692.0','1018885.0','121', '117','60','106273.52', '116','56','91431.63', '56','15','14841.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094956.0','1044452.0','11', '8','7','23909.31', '8','7','21608.19', '5','2','2301.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006693.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094957.0','1044452.0','1', '1','1','3772.0', '1','1','3772.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006694.0','1018885.0','8', '8','2','1791.96', '8','2','1791.96', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094958.0','1044452.0','4', '4','1','493.01', '4','1','493.01', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006695.0','1018885.0','2', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094959.0','1044452.0','96', '95','32','48330.28', '95','30','38417.66', '52','7','9912.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006696.0','1018885.0','2', '2','1','3753.75', '2','1','3369.65', '1','1','384.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094960.0','1044452.0','4', '3','3','6371.73', '3','3','5090.44', '1','1','1281.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006697.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094961.0','1044452.0','14', '13','9','16280.81', '13','7','15332.0', '8','2','948.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006698.0','1018885.0','50', '48','25','55803.86', '47','23','52380.43', '27','7','3423.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094962.0','1044452.0','37', '32','27','46788.44', '32','25','44307.27', '12','7','2481.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006699.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094963.0','1044452.0','66', '58','52','208451.94', '56','50','138829.27', '34','25','69622.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006700.0','1018885.0','116', '111','49','70171.24', '110','38','39075.0', '53','19','31096.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094964.0','1044452.0','23', '22','22','62354.14', '22','22','60388.32', '4','3','1965.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006701.0','1018885.0','222', '215','67','101810.69', '215','66','74350.02', '91','5','27460.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094965.0','1044452.0','1', '1','1','540.4', '1','1','540.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000253.0','1018885.0','10', '10','9','9408.6', '10','6','5898.7', '7','6','3509.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088517.0','1044452.0','4', '4','3','7172.92', '4','3','5018.0', '2','1','2154.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006702.0','1018885.0','5', '5','4','6252.45', '5','3','4608.2', '4','2','1644.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094966.0','1044452.0','24', '22','13','34187.3', '21','10','19321.48', '10','5','14865.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000215.0','1018885.0','26', '24','22','67047.88', '24','18','42293.14', '14','7','24754.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088479.0','1044452.0','4', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000222.0','1018885.0','4', '4','2','4542.02', '4','2','2876.0', '2','1','1666.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088486.0','1044452.0','15', '15','5','7490.05', '15','5','6434.58', '6','2','1055.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006703.0','1018885.0','12', '11','11','28788.87', '11','11','27522.9', '5','2','1265.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094967.0','1044452.0','4', '3','3','9241.58', '3','3','8275.71', '1','1','965.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006704.0','1018885.0','1', '1','1','5200.0', '1','1','5200.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094968.0','1044452.0','2', '1','1','1800.0', '1','1','1300.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006705.0','1018885.0','300', '290','135','177712.52', '288','120','132138.44', '157','41','45574.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094969.0','1044452.0','13', '13','3','2170.71', '13','3','2170.71', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006706.0','1018885.0','3', '3','3','5746.34', '3','2','5024.0', '3','2','722.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094970.0','1044452.0','2', '2','1','1615.79', '2','1','1615.79', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006707.0','1018885.0','19', '18','6','7405.28', '18','4','6931.39', '9','2','473.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094971.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006708.0','1018885.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094972.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006709.0','1018885.0','3', '3','3','2901.13', '3','3','2901.13', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094973.0','1044452.0','1', '1','1','5151.6', '1','1','5151.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006710.0','1018885.0','7', '4','2','1846.84', '3','2','1846.84', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094974.0','1044452.0','1', '1','1','3822.02', '1','1','3822.02', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006711.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094975.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000296.0','1018885.0','7', '7','6','3596.88', '7','6','3064.54', '4','3','532.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088560.0','1044452.0','3', '2','2','8656.14', '2','2','8051.49', '1','1','604.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006712.0','1018885.0','5', '2','1','739.44', '2','1','739.44', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094976.0','1044452.0','5', '3','3','9085.98', '3','3','7733.06', '1','1','1352.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006713.0','1018885.0','1', '1','1','4432.29', '1','1','2472.0', '1','1','1960.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094977.0','1044452.0','8', '6','5','32587.63', '6','5','22457.26', '3','2','10130.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006714.0','1018885.0','10', '10','10','8478.87', '10','1','217.2', '10','10','8261.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094978.0','1044452.0','5', '3','3','7025.72', '3','3','6685.24', '3','1','340.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006715.0','1018885.0','2', '2','2','1552.53', '2','0','0.0', '2','2','1552.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094979.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006716.0','1018885.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094980.0','1044452.0','68', '56','43','204835.87', '52','40','115740.39', '33','21','89095.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006717.0','1018885.0','1', '1','1','365.65', '1','1','365.65', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094981.0','1044452.0','3', '2','2','3411.76', '2','2','3411.76', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006718.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094982.0','1044452.0','2', '2','1','1326.47', '2','1','1113.42', '2','1','213.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006719.0','1018885.0','8', '8','6','20270.73', '7','6','16817.37', '7','4','3453.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094983.0','1044452.0','1113', '1033','791','678036.35', '954','186','163000.23', '869','710','515036.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006720.0','1018885.0','5', '4','3','9776.89', '4','3','9480.41', '2','2','296.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094984.0','1044452.0','11', '11','10','25269.16', '11','10','21193.61', '8','6','4075.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006721.0','1018885.0','2', '2','2','2959.62', '2','2','2959.62', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094985.0','1044452.0','5', '3','2','6024.0', '3','2','6024.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006722.0','1018885.0','168', '156','111','112100.04', '146','38','54331.41', '112','79','57768.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094986.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006723.0','1018885.0','3', '3','3','15586.61', '3','2','14818.41', '3','2','768.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094987.0','1044452.0','26', '26','21','50540.41', '26','21','47578.31', '19','3','2962.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006724.0','1018885.0','6', '5','5','12211.17', '5','5','12211.17', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094988.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006725.0','1018885.0','1', '1','1','1517.92', '1','1','1517.92', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094989.0','1044452.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006726.0','1018885.0','4', '3','2','4900.83', '3','2','4900.83', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094990.0','1044452.0','1', '1','1','215.57', '1','0','0.0', '1','1','215.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000564.0','1018885.0','1', '1','1','661.92', '1','1','661.92', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088828.0','1044452.0','1', '1','1','1626.21', '1','1','1626.21', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006727.0','1018885.0','267', '242','200','865139.37', '231','193','407505.31', '145','62','457634.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094991.0','1044452.0','6', '5','4','3898.0', '5','4','3898.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000301.0','1018885.0','281', '265','202','180368.1', '229','22','22222.28', '224','190','158145.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088565.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006728.0','1018885.0','4', '2','2','3022.67', '2','2','2809.0', '1','1','213.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094992.0','1044452.0','77', '69','55','207680.48', '69','55','140159.77', '38','11','67520.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006729.0','1018885.0','1', '1','1','9726.71', '1','1','6331.37', '1','1','3395.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094993.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006730.0','1018885.0','193', '179','152','127053.76', '168','23','22340.32', '158','144','104713.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094994.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000331.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088595.0','1044452.0','6', '6','3','6443.3', '6','3','4792.14', '5','2','1651.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006731.0','1018885.0','64', '60','47','39967.11', '53','8','6662.15', '55','45','33304.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094995.0','1044452.0','1', '1','1','882.58', '1','0','0.0', '1','1','882.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006732.0','1018885.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094996.0','1044452.0','37', '36','22','13557.4', '26','16','7664.34', '22','7','5893.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000260.0','1018885.0','2', '1','1','235.86', '1','0','0.0', '1','1','235.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088524.0','1044452.0','1', '1','1','4319.96', '1','1','4319.96', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006733.0','1018885.0','4', '3','1','4307.03', '3','1','4307.03', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094997.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006734.0','1018885.0','1', '1','1','431.52', '1','1','431.52', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094998.0','1044452.0','172', '162','141','431512.13', '160','134','336251.16', '91','65','95260.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006735.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2094999.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006736.0','1018885.0','5', '5','4','37763.42', '4','4','11726.2', '5','2','26037.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095000.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006737.0','1018885.0','6', '6','4','4571.54', '5','3','4041.88', '3','1','529.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095001.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006738.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095002.0','1044452.0','1', '1','1','4021.0', '1','1','4021.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006739.0','1018885.0','3', '3','3','6275.4', '3','1','3864.3', '3','3','2411.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095003.0','1044452.0','2', '2','1','1300.0', '2','1','1300.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006740.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095004.0','1044452.0','1', '1','1','1160.25', '1','1','287.17', '1','1','873.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006741.0','1018885.0','1', '1','1','7364.1', '1','1','6439.0', '1','1','925.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095005.0','1044452.0','1', '1','1','713.14', '1','0','0.0', '1','1','713.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006742.0','1018885.0','2', '2','2','9544.23', '2','2','6419.4', '2','1','3124.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095006.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006743.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095007.0','1044452.0','4', '4','1','5200.0', '4','1','5200.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006744.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095008.0','1044452.0','187', '179','152','122467.27', '157','17','16195.84', '161','144','106271.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006745.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095009.0','1044452.0','12', '9','7','27312.57', '8','6','19114.41', '5','4','8198.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006746.0','1018885.0','21', '19','16','38008.81', '19','16','35010.09', '9','4','2998.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095010.0','1044452.0','3', '3','3','1626.46', '3','0','0.0', '3','3','1626.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006747.0','1018885.0','2', '2','2','7800.98', '2','2','4445.31', '2','2','3355.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095011.0','1044452.0','8', '7','7','9009.05', '7','7','8240.85', '4','4','768.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006748.0','1018885.0','7', '6','5','8738.56', '6','5','8738.56', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095012.0','1044452.0','1', '1','1','995.66', '1','1','995.66', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006749.0','1018885.0','81', '81','68','189756.2', '78','67','138226.05', '61','22','51530.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095013.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006750.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095014.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006751.0','1018885.0','1', '1','1','800.88', '1','0','0.0', '1','1','800.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095015.0','1044452.0','3', '3','3','7475.9', '3','3','7475.9', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000272.0','1018885.0','1', '1','1','1764.51', '1','1','1764.51', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088536.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006752.0','1018885.0','1', '1','1','455.89', '1','1','379.89', '1','1','76.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095016.0','1044452.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000232.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088496.0','1044452.0','29', '21','18','105022.3', '20','18','56313.25', '15','8','48709.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006753.0','1018885.0','2', '2','2','3284.48', '2','2','3284.48', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095017.0','1044452.0','5', '5','2','551.09', '5','1','503.59', '2','1','47.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006754.0','1018885.0','22', '22','14','9558.18', '19','1','100.0', '20','13','9458.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095018.0','1044452.0','6', '5','3','7120.72', '5','3','6619.6', '3','2','501.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006755.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095019.0','1044452.0','1', '1','1','474.6', '1','1','474.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006756.0','1018885.0','6', '6','4','3271.92', '4','0','0.0', '6','4','3271.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095020.0','1044452.0','6', '5','3','2791.74', '5','2','969.09', '5','3','1822.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006757.0','1018885.0','16', '12','10','26356.68', '12','9','21070.42', '5','3','5286.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095021.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006758.0','1018885.0','19', '13','10','19292.93', '13','10','19171.82', '7','1','121.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095022.0','1044452.0','8', '8','7','41076.61', '8','7','18304.2', '4','3','22772.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006759.0','1018885.0','6', '5','4','10594.09', '4','3','9963.32', '4','2','630.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095023.0','1044452.0','7', '7','6','19233.63', '7','6','11299.84', '3','1','7933.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006760.0','1018885.0','7', '4','3','3660.13', '4','3','3040.17', '4','2','619.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095024.0','1044452.0','3', '3','3','9565.17', '3','3','9340.0', '1','1','225.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006761.0','1018885.0','4', '4','3','8510.62', '3','3','8510.62', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095025.0','1044452.0','2', '2','2','1845.18', '2','2','1845.18', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006762.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095026.0','1044452.0','3', '3','2','2105.0', '2','1','345.8', '3','2','1759.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006763.0','1018885.0','5', '2','1','4009.12', '1','1','898.0', '2','1','3111.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095027.0','1044452.0','8', '8','6','5465.56', '8','2','762.99', '6','5','4702.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006764.0','1018885.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095028.0','1044452.0','5', '5','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006765.0','1018885.0','1', '1','1','835.08', '1','0','0.0', '1','1','835.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095029.0','1044452.0','5', '4','3','4023.76', '4','2','3263.82', '3','1','759.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006766.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095030.0','1044452.0','11', '9','6','42848.87', '9','6','25362.6', '4','3','17486.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000234.0','1018885.0','1', '1','1','137.02', '1','0','0.0', '1','1','137.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088498.0','1044452.0','6', '6','6','7844.55', '6','4','3620.49', '6','5','4224.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000566.0','1018885.0','2', '1','1','5444.82', '1','1','5200.0', '1','1','244.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088830.0','1044452.0','42', '33','27','243858.69', '31','27','140538.32', '19','14','103320.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006767.0','1018885.0','3', '2','2','816.76', '2','1','580.9', '1','1','235.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095031.0','1044452.0','2', '2','2','2092.26', '2','2','2092.26', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006768.0','1018885.0','31', '23','19','63625.05', '23','19','56894.04', '10','3','6731.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095032.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006769.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095033.0','1044452.0','3', '3','3','12611.36', '3','3','12611.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006770.0','1018885.0','1', '1','1','835.08', '1','0','0.0', '1','1','835.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095034.0','1044452.0','15', '14','11','36337.13', '13','11','27760.65', '10','4','8576.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006771.0','1018885.0','3', '2','2','3415.84', '2','2','3415.84', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095035.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000255.0','1018885.0','1', '1','1','2359.27', '1','1','2359.27', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088519.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006772.0','1018885.0','3', '3','1','4412.0', '3','1','4412.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095036.0','1044452.0','7', '7','5','8099.73', '7','5','8099.73', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006773.0','1018885.0','47', '40','18','11160.56', '35','6','5396.74', '33','15','5763.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095037.0','1044452.0','1', '1','1','2600.0', '1','1','2600.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006774.0','1018885.0','1', '1','1','1132.98', '1','1','1132.98', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095038.0','1044452.0','914', '850','616','530488.62', '760','173','147872.76', '703','544','382615.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006775.0','1018885.0','17', '17','15','12598.19', '17','5','3055.11', '15','14','9543.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095039.0','1044452.0','1', '1','1','3074.08', '1','1','3074.08', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006776.0','1018885.0','15', '14','12','20259.81', '13','2','5002.71', '13','12','15257.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095040.0','1044452.0','69', '66','48','42420.27', '63','17','15265.05', '51','35','27155.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006777.0','1018885.0','2', '2','2','2655.52', '2','1','2430.35', '1','1','225.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095041.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006778.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095042.0','1044452.0','2', '2','2','2143.82', '2','2','2143.82', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006779.0','1018885.0','8', '7','4','2740.75', '7','1','919.62', '6','3','1821.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095043.0','1044452.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006780.0','1018885.0','2', '2','2','915.6', '2','2','915.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095044.0','1044452.0','11', '9','7','11631.23', '9','6','10927.73', '5','2','703.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006781.0','1018885.0','4', '3','1','1380.0', '3','1','1380.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095045.0','1044452.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006782.0','1018885.0','15', '15','14','11354.47', '15','3','1018.11', '13','12','10336.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095046.0','1044452.0','4', '3','2','911.17', '2','1','778.11', '1','1','133.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006783.0','1018885.0','137', '132','118','108263.19', '122','29','28261.03', '122','109','80002.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095047.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006784.0','1018885.0','5', '3','2','2082.57', '3','2','1802.92', '2','1','279.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095048.0','1044452.0','1', '1','1','228.7', '1','1','228.7', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006785.0','1018885.0','4', '4','1','299.45', '4','1','299.45', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095049.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006786.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095050.0','1044452.0','3', '3','2','3813.3', '2','2','2695.63', '3','1','1117.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006787.0','1018885.0','22', '20','15','17874.92', '20','11','14551.67', '10','6','3323.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095051.0','1044452.0','205', '197','155','129878.32', '177','27','21555.53', '179','149','108322.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006788.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095052.0','1044452.0','1206', '1131','842','795938.31', '1028','272','240889.33', '946','744','555048.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006789.0','1018885.0','2', '2','2','1276.13', '2','2','1276.13', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095053.0','1044452.0','57', '54','38','29339.71', '44','7','4695.11', '43','33','24644.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000420.0','1018885.0','1', '1','1','9258.58', '1','1','6511.0', '1','1','2747.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088684.0','1044452.0','1', '1','1','816.08', '1','0','0.0', '1','1','816.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006790.0','1018885.0','1', '1','1','835.08', '1','0','0.0', '1','1','835.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095054.0','1044452.0','1', '1','1','2600.0', '1','1','2600.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006791.0','1018885.0','2', '2','1','887.32', '2','1','887.32', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095055.0','1044452.0','276', '263','211','191576.28', '238','38','44911.04', '230','197','146665.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006792.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095056.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006793.0','1018885.0','164', '154','124','105273.7', '136','17','17197.88', '139','115','88075.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095057.0','1044452.0','6', '6','5','5031.96', '6','3','2172.23', '3','3','2859.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006794.0','1018885.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095058.0','1044452.0','2', '2','1','977.58', '2','0','0.0', '2','1','977.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006795.0','1018885.0','1', '1','1','137.02', '1','0','0.0', '1','1','137.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095059.0','1044452.0','47', '39','30','50461.67', '39','19','34833.11', '26','18','15628.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006796.0','1018885.0','12', '12','9','26036.93', '12','8','25516.59', '6','3','520.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095060.0','1044452.0','1', '1','1','3520.76', '1','1','2600.0', '1','1','920.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006797.0','1018885.0','4', '4','3','3715.19', '4','3','2889.61', '1','1','825.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095061.0','1044452.0','39', '37','29','22777.95', '30','5','1900.2', '35','28','20877.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006798.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095062.0','1044452.0','2', '2','2','1774.66', '2','0','0.0', '2','2','1774.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006799.0','1018885.0','3', '3','2','987.08', '3','0','0.0', '2','2','987.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095063.0','1044452.0','4', '3','3','4297.64', '3','3','4297.64', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000438.0','1018885.0','1', '1','1','1321.42', '1','1','1096.25', '1','1','225.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088702.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006800.0','1018885.0','2', '2','2','1309.08', '2','2','1309.08', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095064.0','1044452.0','1', '1','1','129.15', '1','1','129.15', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006801.0','1018885.0','1', '1','1','10770.93', '1','1','6157.0', '1','1','4613.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095065.0','1044452.0','6', '6','4','4049.38', '6','4','3687.19', '5','1','362.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006802.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095066.0','1044452.0','5', '4','2','8232.52', '4','2','8232.52', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006803.0','1018885.0','10', '7','6','46461.8', '7','6','24810.47', '5','3','21651.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095067.0','1044452.0','100', '100','40','51616.88', '98','34','33797.55', '56','14','17819.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006804.0','1018885.0','4', '4','3','4751.25', '3','3','4751.25', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095068.0','1044452.0','19', '18','16','141779.98', '18','16','81053.99', '11','6','60725.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006805.0','1018885.0','71', '67','50','95606.0', '61','40','64883.82', '38','24','30722.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095069.0','1044452.0','2', '2','2','3814.47', '2','2','3698.0', '1','1','116.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006806.0','1018885.0','6', '6','3','5946.75', '6','3','5721.58', '1','1','225.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095070.0','1044452.0','174', '164','130','104831.8', '134','11','9801.65', '149','125','95030.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006807.0','1018885.0','75', '75','39','35399.26', '74','30','27356.62', '51','15','8042.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095071.0','1044452.0','3', '1','1','931.75', '1','1','569.56', '1','1','362.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000529.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088793.0','1044452.0','15', '14','10','15480.09', '14','9','14095.75', '8','4','1384.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006808.0','1018885.0','14', '12','9','19863.12', '12','6','12005.88', '8','5','7857.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095072.0','1044452.0','1', '1','1','2040.75', '1','1','2040.75', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006809.0','1018885.0','16', '13','12','118606.72', '12','12','45141.2', '10','7','73465.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095073.0','1044452.0','1', '1','1','189.83', '1','1','189.83', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006810.0','1018885.0','66', '64','24','20961.51', '64','21','15836.41', '37','8','5125.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095074.0','1044452.0','1', '1','1','2652.95', '1','1','2652.95', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006811.0','1018885.0','3', '3','3','4507.86', '3','3','4507.86', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095075.0','1044452.0','1', '1','1','1553.39', '1','1','1553.39', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006812.0','1018885.0','8', '6','5','7537.64', '6','5','6424.49', '4','2','1113.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095076.0','1044452.0','7', '6','6','13744.99', '5','4','12323.18', '5','5','1421.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006813.0','1018885.0','11', '11','6','8390.18', '10','5','6625.19', '5','3','1764.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095077.0','1044452.0','8', '8','5','8214.41', '6','1','5200.0', '5','4','3014.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006814.0','1018885.0','2', '2','1','3311.05', '1','1','3311.05', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095078.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006815.0','1018885.0','2', '2','1','835.08', '2','0','0.0', '1','1','835.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095079.0','1044452.0','2', '2','1','1210.4', '2','1','1210.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006816.0','1018885.0','8', '8','5','7432.21', '8','5','3969.16', '5','4','3463.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095080.0','1044452.0','1', '1','1','474.17', '1','1','474.17', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006817.0','1018885.0','34', '33','26','21583.34', '26','4','3239.0', '31','24','18344.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095081.0','1044452.0','218', '205','155','123593.42', '186','21','14568.05', '178','149','109025.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006818.0','1018885.0','11', '11','11','9461.59', '11','3','1212.46', '10','10','8249.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095082.0','1044452.0','3', '3','1','800.0', '3','1','800.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006819.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095083.0','1044452.0','19', '19','17','12480.85', '17','2','698.28', '18','16','11782.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006820.0','1018885.0','3', '2','2','4926.66', '2','2','4926.66', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095084.0','1044452.0','1', '1','1','6157.0', '1','1','6157.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006821.0','1018885.0','190', '184','158','143959.42', '173','19','17900.46', '175','155','126058.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095085.0','1044452.0','6', '6','4','3965.86', '6','4','3965.86', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006822.0','1018885.0','2', '2','1','3005.72', '2','1','3005.72', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095086.0','1044452.0','2', '1','1','387.97', '0','0','0.0', '1','1','387.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006823.0','1018885.0','3', '3','3','725.41', '3','3','500.24', '1','1','225.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095087.0','1044452.0','1', '1','1','2550.49', '1','1','2550.49', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006824.0','1018885.0','2', '1','1','564.46', '1','1','564.46', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095088.0','1044452.0','107', '93','45','42536.26', '86','26','28497.6', '47','27','14038.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000205.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088469.0','1044452.0','7', '5','4','3999.09', '5','4','3999.09', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006825.0','1018885.0','77', '68','47','39325.95', '64','17','12898.38', '52','38','26427.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095089.0','1044452.0','11', '9','3','6387.0', '7','3','6387.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006826.0','1018885.0','19', '19','11','17678.86', '19','10','16437.92', '13','3','1240.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095090.0','1044452.0','59', '55','26','21980.15', '55','19','16759.59', '29','13','5220.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006827.0','1018885.0','53', '50','37','31281.6', '45','5','3886.46', '46','36','27395.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095091.0','1044452.0','3', '3','3','4664.73', '3','3','4664.73', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006828.0','1018885.0','2', '1','1','5596.16', '1','1','1107.0', '1','1','4489.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095092.0','1044452.0','113', '104','71','133905.26', '95','52','87611.17', '59','35','46294.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006829.0','1018885.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095093.0','1044452.0','4', '4','3','4021.61', '4','3','3884.59', '2','1','137.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006830.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095094.0','1044452.0','181', '181','75','81120.71', '178','58','58023.83', '120','33','23096.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006831.0','1018885.0','6', '5','1','1300.0', '5','1','1300.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095095.0','1044452.0','3', '1','1','1366.48', '1','1','1366.48', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006832.0','1018885.0','16', '13','12','86899.71', '13','12','52323.69', '9','8','34576.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095096.0','1044452.0','1', '1','1','729.6', '1','1','729.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006833.0','1018885.0','7', '7','4','3926.19', '6','3','3185.25', '2','1','740.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095097.0','1044452.0','2', '2','2','3614.2', '2','2','3477.18', '1','1','137.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006834.0','1018885.0','1', '1','1','315.3', '1','1','239.3', '1','1','76.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095098.0','1044452.0','1', '1','1','2690.64', '1','1','2690.64', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006835.0','1018885.0','1', '1','1','2390.81', '1','1','2390.81', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095099.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006836.0','1018885.0','6', '5','5','4677.73', '5','2','672.57', '5','4','4005.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095100.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006837.0','1018885.0','4', '4','4','5491.07', '4','2','2532.05', '2','2','2959.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095101.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000385.0','1018885.0','4', '3','3','6537.39', '3','3','6321.11', '1','1','216.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088649.0','1044452.0','4', '4','4','3596.82', '4','0','0.0', '4','4','3596.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000436.0','1018885.0','15', '13','9','27534.18', '13','9','21608.46', '5','3','5925.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088700.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006838.0','1018885.0','11', '10','8','67341.91', '10','8','30509.53', '7','6','36832.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095102.0','1044452.0','1', '1','1','215.57', '1','0','0.0', '1','1','215.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006839.0','1018885.0','1', '1','1','441.44', '1','1','304.42', '1','1','137.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095103.0','1044452.0','8', '8','6','13235.01', '8','6','11370.89', '5','2','1864.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006840.0','1018885.0','51', '48','43','36921.66', '45','10','9073.26', '42','37','27848.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095104.0','1044452.0','1', '1','1','3429.89', '1','1','1098.0', '1','1','2331.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006841.0','1018885.0','23', '22','16','24050.23', '22','15','22824.92', '15','5','1225.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095105.0','1044452.0','2', '1','1','1291.09', '1','1','1291.09', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006842.0','1018885.0','8', '8','6','3111.54', '6','0','0.0', '8','6','3111.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095106.0','1044452.0','1', '1','1','2152.0', '1','1','2152.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006843.0','1018885.0','35', '35','20','10042.42', '35','12','3163.45', '21','11','6878.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095107.0','1044452.0','2', '1','1','780.3', '1','1','780.3', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006844.0','1018885.0','1', '1','1','18476.76', '1','1','6472.0', '1','1','12004.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095108.0','1044452.0','3', '3','3','25682.17', '3','3','15199.33', '1','1','10482.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006845.0','1018885.0','3', '3','2','1635.9', '3','2','1635.9', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095109.0','1044452.0','23', '22','12','13076.49', '22','10','8546.84', '12','4','4529.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000415.0','1018885.0','75', '70','61','48246.08', '64','4','2581.38', '68','59','45664.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088679.0','1044452.0','23', '13','9','31874.42', '13','9','22178.17', '8','6','9696.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006846.0','1018885.0','13', '12','9','13166.35', '12','8','10946.92', '6','4','2219.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095110.0','1044452.0','59', '53','34','40719.53', '48','10','12448.19', '36','30','28271.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006847.0','1018885.0','685', '660','512','451254.05', '580','103','121936.16', '573','460','329317.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095111.0','1044452.0','2', '2','2','1836.85', '2','2','1836.85', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006848.0','1018885.0','1', '1','1','2600.0', '1','1','2600.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095112.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006849.0','1018885.0','6', '5','5','9248.6', '5','5','9248.6', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095113.0','1044452.0','1', '1','1','2373.23', '1','1','2373.23', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006850.0','1018885.0','4', '4','0','0.0', '4','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095114.0','1044452.0','65', '58','39','32199.98', '51','9','7586.14', '51','35','24613.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006834.0','1018885.0','14', '11','9','7799.13', '10','1','522.03', '9','9','7277.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095098.0','1044452.0','1', '1','1','601.0', '1','1','601.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006851.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095115.0','1044452.0','1', '1','1','1106.42', '1','1','1106.42', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006852.0','1018885.0','18', '16','10','12395.15', '16','6','7851.5', '11','8','4543.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095116.0','1044452.0','1', '1','1','5771.48', '1','1','5695.48', '1','1','76.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006853.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095117.0','1044452.0','6', '6','6','10673.36', '6','5','6387.1', '4','4','4286.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006854.0','1018885.0','1', '1','1','1300.0', '1','1','1300.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095118.0','1044452.0','2', '2','2','7359.8', '2','2','7359.8', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006855.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095119.0','1044452.0','2', '2','1','2579.71', '2','1','2579.71', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000257.0','1018885.0','5', '5','4','7511.11', '5','4','7138.79', '3','1','372.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088521.0','1044452.0','133', '127','91','73854.33', '110','16','11809.65', '119','86','62044.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006856.0','1018885.0','320', '306','231','194415.77', '263','50','29805.15', '272','223','164610.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095120.0','1044452.0','3', '3','3','7780.19', '3','3','6257.59', '3','1','1522.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006857.0','1018885.0','2', '1','1','202.24', '1','1','202.24', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095121.0','1044452.0','14', '14','10','12433.58', '12','4','5287.39', '14','9','7146.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006858.0','1018885.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095122.0','1044452.0','10', '8','7','4590.55', '8','2','650.86', '7','6','3939.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006859.0','1018885.0','6', '4','3','2312.98', '4','1','715.02', '2','2','1597.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095123.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006860.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095124.0','1044452.0','2', '2','2','2204.23', '1','1','582.74', '2','2','1621.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006861.0','1018885.0','4', '3','2','3784.12', '2','2','3784.12', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095125.0','1044452.0','3', '3','1','563.48', '3','1','563.48', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006862.0','1018885.0','1', '1','1','1300.0', '1','1','1300.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095126.0','1044452.0','5', '4','4','13821.36', '4','4','13821.36', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006863.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095127.0','1044452.0','4', '2','1','6127.1', '2','1','690.0', '1','1','5437.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006864.0','1018885.0','5', '4','2','5304.87', '4','2','5120.61', '1','1','184.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095128.0','1044452.0','2', '2','1','413.36', '2','1','413.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006865.0','1018885.0','4', '4','2','1844.5', '4','2','1844.5', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095129.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006866.0','1018885.0','88', '76','58','391360.02', '74','57','193344.02', '56','25','198016.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095130.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006867.0','1018885.0','11', '6','2','4109.0', '5','2','4109.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095131.0','1044452.0','4', '1','1','94.7', '1','1','94.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006868.0','1018885.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095132.0','1044452.0','1', '1','1','680.91', '1','1','680.91', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006869.0','1018885.0','3', '3','3','5394.5', '3','2','5257.48', '3','1','137.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095133.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006870.0','1018885.0','5', '5','3','3362.3', '5','3','3362.3', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095134.0','1044452.0','1', '1','1','1300.0', '1','1','1300.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006871.0','1018885.0','1', '1','1','871.02', '1','1','657.35', '1','1','213.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095135.0','1044452.0','42', '38','28','62334.81', '38','27','45770.68', '18','6','16564.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006872.0','1018885.0','80', '71','50','279957.1', '70','49','140494.25', '36','21','139462.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095136.0','1044452.0','2', '2','2','2415.37', '2','2','2415.37', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006873.0','1018885.0','13', '12','12','9641.25', '12','0','0.0', '12','12','9641.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095137.0','1044452.0','1', '1','1','2151.49', '1','1','2151.49', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006874.0','1018885.0','4', '3','2','6549.38', '3','2','6549.38', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095138.0','1044452.0','9', '8','4','11354.07', '8','4','11160.03', '3','1','194.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006875.0','1018885.0','4', '4','3','5512.34', '4','2','1686.01', '2','1','3826.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095139.0','1044452.0','12', '12','10','11128.53', '12','10','10868.01', '4','2','260.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006876.0','1018885.0','3', '1','1','3229.89', '1','1','3229.89', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095140.0','1044452.0','1', '1','1','9.5', '1','0','0.0', '1','1','9.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006877.0','1018885.0','6', '4','4','22423.02', '4','4','11333.87', '4','2','11089.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095141.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000223.0','1018885.0','13', '9','6','9462.95', '9','5','7802.33', '4','2','1660.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088487.0','1044452.0','281', '267','85','154032.24', '264','72','136683.25', '108','20','17348.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006878.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095142.0','1044452.0','8', '8','4','8048.47', '8','4','8048.47', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006879.0','1018885.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095143.0','1044452.0','15', '12','6','11050.67', '12','6','10913.65', '6','1','137.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000471.0','1018885.0','1', '1','1','475.99', '1','1','475.99', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088735.0','1044452.0','4', '3','1','1610.19', '2','1','765.61', '2','1','844.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006880.0','1018885.0','5', '4','1','44.3', '4','1','44.3', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095144.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006881.0','1018885.0','4', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095145.0','1044452.0','1', '1','1','273.0', '1','1','273.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006882.0','1018885.0','1', '1','1','1432.0', '1','1','1432.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095146.0','1044452.0','11', '4','2','1984.41', '4','2','1346.89', '1','1','637.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006883.0','1018885.0','1', '1','1','408.85', '1','1','408.85', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095147.0','1044452.0','25', '22','18','93411.18', '22','17','49667.63', '17','13','43743.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006884.0','1018885.0','7', '7','6','20188.64', '7','6','16683.5', '7','2','3505.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095148.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006885.0','1018885.0','4', '4','2','2600.0', '4','2','2600.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095149.0','1044452.0','4', '4','0','0.0', '3','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006886.0','1018885.0','1', '1','1','230.2', '1','1','230.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095150.0','1044452.0','1', '1','1','3423.2', '1','1','1469.89', '1','1','1953.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006887.0','1018885.0','6', '5','3','13037.18', '5','3','10363.52', '2','1','2673.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095151.0','1044452.0','1', '1','1','2066.64', '1','1','2066.64', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006888.0','1018885.0','2', '2','2','3329.28', '2','2','3329.28', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095152.0','1044452.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006889.0','1018885.0','3', '2','1','16087.09', '2','1','1044.0', '2','1','15043.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095153.0','1044452.0','448', '430','129','198314.37', '414','99','150362.41', '291','48','47951.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006890.0','1018885.0','3', '3','2','2524.78', '3','2','2524.78', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095154.0','1044452.0','34', '27','8','15831.72', '26','8','15451.51', '10','1','380.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006891.0','1018885.0','5', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095155.0','1044452.0','1', '1','1','325.04', '1','1','325.04', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006892.0','1018885.0','9', '9','5','3457.23', '9','4','3144.56', '1','1','312.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095156.0','1044452.0','10', '7','5','5171.89', '7','5','5171.89', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006893.0','1018885.0','8', '7','3','3605.84', '7','3','3331.8', '5','2','274.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095157.0','1044452.0','3', '3','2','3666.42', '3','2','3666.42', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006894.0','1018885.0','1', '1','1','649.95', '0','0','0.0', '1','1','649.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095158.0','1044452.0','6', '4','2','2456.78', '4','2','2437.78', '1','1','19.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006895.0','1018885.0','4', '4','2','1711.65', '4','2','1486.48', '3','1','225.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095159.0','1044452.0','2', '2','2','5636.35', '2','2','2107.8', '1','1','3528.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006896.0','1018885.0','16', '15','9','5741.72', '14','5','1969.23', '12','6','3772.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095160.0','1044452.0','2', '2','2','5959.41', '2','1','4492.96', '2','2','1466.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006897.0','1018885.0','2', '2','1','806.58', '2','0','0.0', '1','1','806.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095161.0','1044452.0','5', '5','4','9999.62', '5','4','9999.62', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006898.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095162.0','1044452.0','9', '9','2','2403.36', '9','1','900.0', '3','1','1503.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006899.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095163.0','1044452.0','7', '7','2','1684.25', '5','1','878.32', '5','1','805.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006900.0','1018885.0','23', '21','10','23016.05', '21','9','19575.5', '11','5','3440.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095164.0','1044452.0','24', '20','14','12831.17', '17','1','2414.86', '16','13','10416.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006901.0','1018885.0','4', '4','4','7807.13', '4','4','6029.15', '3','1','1777.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095165.0','1044452.0','39', '38','21','40358.62', '38','21','40197.27', '14','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006902.0','1018885.0','2', '2','1','4300.86', '2','1','4300.86', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095166.0','1044452.0','12', '11','4','3389.57', '11','4','3228.22', '4','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006903.0','1018885.0','16', '15','10','11983.52', '14','10','10124.7', '7','2','1858.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095167.0','1044452.0','2', '2','2','3729.05', '2','1','1510.0', '2','2','2219.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006904.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095168.0','1044452.0','167', '162','79','90372.6', '159','54','56851.73', '118','46','33520.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006905.0','1018885.0','1', '1','1','137.02', '1','0','0.0', '1','1','137.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095169.0','1044452.0','237', '215','164','151663.87', '202','62','54324.0', '165','132','97339.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006906.0','1018885.0','11', '7','6','23298.43', '7','6','23073.26', '2','1','225.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095170.0','1044452.0','20', '18','13','25911.5', '18','13','16879.81', '10','5','9031.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006907.0','1018885.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095171.0','1044452.0','7', '6','4','5342.92', '6','4','5342.92', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006908.0','1018885.0','1', '1','1','475.62', '1','1','338.6', '1','1','137.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095172.0','1044452.0','12', '12','10','57854.28', '12','10','35514.39', '9','4','22339.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006909.0','1018885.0','690', '649','488','399240.85', '575','125','64215.17', '579','458','335025.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095173.0','1044452.0','1', '1','1','1012.75', '1','0','0.0', '1','1','1012.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006910.0','1018885.0','2', '1','1','4440.96', '1','1','4440.96', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095174.0','1044452.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2001754.0','1018885.0','7', '6','3','9067.59', '6','3','6052.54', '3','2','3015.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2090018.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006911.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095175.0','1044452.0','6', '5','5','3976.62', '4','0','0.0', '5','5','3976.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006912.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095176.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006913.0','1018885.0','2', '2','1','800.88', '2','0','0.0', '1','1','800.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095177.0','1044452.0','10', '9','9','13316.85', '9','9','13179.83', '3','1','137.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006914.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095178.0','1044452.0','5', '5','5','3650.98', '4','4','3013.96', '3','2','637.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006915.0','1018885.0','4', '4','3','5105.52', '4','3','4192.49', '1','1','913.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095179.0','1044452.0','4', '2','1','4591.43', '2','1','4591.43', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006916.0','1018885.0','25', '25','10','11700.2', '25','5','5869.98', '12','6','5830.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095180.0','1044452.0','1', '1','1','2600.0', '1','1','2600.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006917.0','1018885.0','1', '1','1','4078.91', '1','1','4078.91', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095181.0','1044452.0','44', '42','20','67819.79', '42','20','66906.76', '15','2','913.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006918.0','1018885.0','8', '7','6','15828.2', '6','6','15152.22', '4','2','675.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095182.0','1044452.0','3', '3','1','4170.88', '3','1','4170.88', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006919.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095183.0','1044452.0','17', '16','12','8999.63', '14','2','667.75', '14','12','8331.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006920.0','1018885.0','1', '1','1','255.53', '1','1','255.53', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095184.0','1044452.0','66', '62','45','111321.32', '61','42','90030.57', '30','13','21290.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006921.0','1018885.0','571', '538','438','392947.24', '506','122','110263.96', '450','381','282683.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095185.0','1044452.0','46', '43','34','120303.68', '42','31','66635.7', '23','11','53667.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006922.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095186.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006923.0','1018885.0','1', '1','1','1868.5', '1','1','1868.5', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095187.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2001780.0','1018885.0','1', '1','1','2161.52', '1','1','1821.67', '1','1','339.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2090044.0','1044452.0','9', '9','7','6082.12', '7','2','482.7', '9','7','5599.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006924.0','1018885.0','198', '182','138','103622.45', '163','20','9964.46', '165','129','93657.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095188.0','1044452.0','1', '1','1','3737.12', '1','1','3737.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006925.0','1018885.0','16', '16','12','71920.52', '16','12','40852.54', '12','9','31067.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095189.0','1044452.0','9', '8','4','19923.29', '7','4','5895.55', '5','2','14027.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006926.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095190.0','1044452.0','26', '22','21','168746.02', '22','21','95103.49', '11','9','73642.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006927.0','1018885.0','8', '7','6','6106.53', '7','3','1133.93', '4','4','4972.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095191.0','1044452.0','2', '2','2','2305.67', '2','2','2168.65', '1','1','137.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006928.0','1018885.0','155', '145','108','96768.32', '134','24','21513.6', '121','99','75254.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095192.0','1044452.0','6', '5','4','23690.57', '5','4','18845.56', '4','2','4845.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006929.0','1018885.0','3', '1','1','2538.0', '1','1','2538.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095193.0','1044452.0','48', '44','29','27269.01', '37','3','2424.72', '42','29','24844.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006930.0','1018885.0','2', '2','2','1378.87', '2','0','0.0', '2','2','1378.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095194.0','1044452.0','9', '8','2','2949.14', '8','2','2949.14', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006931.0','1018885.0','3', '3','3','3994.83', '3','3','3994.83', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095195.0','1044452.0','1', '1','1','645.21', '1','1','645.21', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006932.0','1018885.0','7', '6','3','3047.29', '6','2','2248.0', '3','1','799.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095196.0','1044452.0','1', '1','1','519.0', '1','1','519.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006933.0','1018885.0','74', '71','56','45815.0', '64','17','12435.65', '59','47','33379.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095197.0','1044452.0','1', '1','1','1300.0', '1','1','1300.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006934.0','1018885.0','3', '3','2','2449.12', '3','2','2449.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095198.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006935.0','1018885.0','3', '3','3','5516.02', '3','3','5379.0', '2','1','137.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095199.0','1044452.0','8', '6','4','10483.23', '6','4','9651.31', '3','1','831.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006936.0','1018885.0','3', '2','1','1300.0', '2','1','1300.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095200.0','1044452.0','12', '12','8','43973.31', '12','8','24659.07', '4','2','19314.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006937.0','1018885.0','1', '1','1','1543.71', '1','1','756.13', '1','1','787.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095201.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006938.0','1018885.0','9', '9','5','3540.81', '8','5','3403.79', '6','1','137.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095202.0','1044452.0','5', '5','5','48494.93', '5','5','28884.0', '4','4','19610.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006939.0','1018885.0','1', '1','1','1300.0', '1','1','1300.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095203.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006940.0','1018885.0','29', '22','19','45722.95', '21','17','35476.63', '14','9','10246.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095204.0','1044452.0','1', '1','1','7473.48', '1','1','932.0', '1','1','6541.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006941.0','1018885.0','25', '23','20','69123.05', '23','20','57454.27', '8','5','11668.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095205.0','1044452.0','73', '72','35','43670.77', '72','33','37033.86', '42','11','6636.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006942.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095206.0','1044452.0','8', '8','8','7661.28', '8','2','1207.11', '8','8','6454.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006943.0','1018885.0','4', '4','3','10797.88', '4','3','10797.88', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095207.0','1044452.0','1', '1','1','3100.1', '1','1','2084.7', '1','1','1015.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006944.0','1018885.0','2', '2','2','3803.13', '2','2','3803.13', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095208.0','1044452.0','1', '1','1','8203.85', '1','1','5200.0', '1','1','3003.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006945.0','1018885.0','59', '50','41','196207.49', '49','40','119834.77', '27','14','76372.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095209.0','1044452.0','14', '14','12','13392.17', '13','3','6812.33', '11','9','6579.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006946.0','1018885.0','7', '7','6','13655.51', '7','6','13655.51', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095210.0','1044452.0','145', '144','55','62274.84', '140','44','38593.21', '81','23','23681.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006947.0','1018885.0','2', '2','2','3175.35', '2','2','3175.35', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095211.0','1044452.0','2', '2','2','10081.98', '2','2','8573.98', '1','1','1508.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006948.0','1018885.0','8', '8','6','6178.21', '8','6','6178.21', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095212.0','1044452.0','39', '36','28','105421.62', '35','24','49790.01', '24','16','55631.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006949.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095213.0','1044452.0','2', '2','2','1499.66', '2','2','1499.66', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006950.0','1018885.0','1', '1','1','105.97', '1','1','105.97', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095214.0','1044452.0','275', '251','183','177738.14', '230','54','60905.22', '199','160','116832.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006951.0','1018885.0','6', '6','4','13615.7', '6','3','8743.87', '4','2','4871.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095215.0','1044452.0','4', '4','3','4086.17', '4','3','3389.62', '3','2','696.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006952.0','1018885.0','1', '1','1','2600.0', '1','1','2600.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095216.0','1044452.0','6', '5','4','8126.39', '5','4','7901.22', '1','1','225.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006953.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095217.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006954.0','1018885.0','6', '5','4','2859.39', '4','2','629.69', '4','4','2229.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095218.0','1044452.0','26', '25','14','41836.52', '25','13','16973.7', '18','8','24862.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006955.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095219.0','1044452.0','4', '4','3','3525.0', '4','2','1835.84', '2','2','1689.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006956.0','1018885.0','4', '4','3','5769.12', '4','2','5456.45', '2','1','312.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095220.0','1044452.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006957.0','1018885.0','620', '609','167','255221.21', '597','112','163140.44', '372','79','92080.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095221.0','1044452.0','14', '14','11','9629.05', '14','10','8877.37', '7','1','751.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006958.0','1018885.0','3', '3','3','10458.86', '3','3','8875.26', '1','1','1583.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095222.0','1044452.0','48', '41','32','125100.95', '41','31','98012.98', '22','8','27087.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006959.0','1018885.0','6', '4','2','9168.25', '4','2','9168.25', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095223.0','1044452.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006960.0','1018885.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095224.0','1044452.0','562', '547','193','290751.69', '528','131','184113.81', '343','90','106637.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006961.0','1018885.0','23', '20','2','1403.92', '20','2','1403.92', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095225.0','1044452.0','64', '63','30','44199.89', '62','28','40646.48', '20','7','3553.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006962.0','1018885.0','8', '8','3','6061.68', '8','2','4110.0', '4','1','1951.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095226.0','1044452.0','111', '103','68','214053.46', '103','65','202757.17', '45','14','11296.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006963.0','1018885.0','22', '21','11','11437.2', '20','1','1124.0', '19','10','10313.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095227.0','1044452.0','26', '26','10','22903.12', '25','9','18088.88', '11','3','4814.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006964.0','1018885.0','4', '3','2','2873.36', '3','2','2399.34', '2','1','474.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095228.0','1044452.0','46', '44','12','20387.47', '43','10','18752.77', '15','3','1634.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006965.0','1018885.0','4', '4','3','3851.9', '4','1','2240.64', '4','2','1611.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095229.0','1044452.0','4', '4','3','5127.62', '4','3','5127.62', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006966.0','1018885.0','30', '27','9','6102.67', '25','6','5422.34', '16','3','680.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095230.0','1044452.0','4', '3','1','900.0', '3','1','900.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006967.0','1018885.0','1', '1','1','3363.4', '1','1','3363.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095231.0','1044452.0','76', '73','35','128214.24', '73','34','123482.11', '28','5','4732.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006968.0','1018885.0','176', '158','98','295151.2', '154','95','243209.79', '87','15','51941.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095232.0','1044452.0','25', '25','5','7911.34', '25','2','5061.11', '21','3','2850.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006969.0','1018885.0','41', '38','17','46060.59', '38','17','44831.4', '12','3','1229.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095233.0','1044452.0','177', '169','74','104557.38', '158','35','39119.16', '135','53','65438.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006970.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095234.0','1044452.0','43', '41','20','69746.32', '40','16','64716.8', '22','7','5029.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006971.0','1018885.0','968', '933','445','514745.18', '869','177','225667.2', '732','337','289077.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095235.0','1044452.0','466', '445','252','416089.35', '434','149','217789.04', '301','158','198300.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006972.0','1018885.0','39', '35','20','48033.48', '31','18','37553.21', '17','6','10480.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095236.0','1044452.0','138', '129','55','134026.15', '127','50','106787.21', '62','16','27238.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006973.0','1018885.0','427', '413','196','296583.88', '405','150','192085.91', '257','80','104497.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095237.0','1044452.0','91', '77','41','123088.05', '77','36','111665.71', '27','11','11422.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006974.0','1018885.0','45', '43','21','35553.59', '41','19','31322.05', '19','4','4231.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095238.0','1044452.0','2', '1','1','1829.99', '1','1','1829.99', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006975.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095239.0','1044452.0','13', '12','5','10122.23', '12','2','2634.0', '9','5','7488.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006976.0','1018885.0','1', '1','1','599.11', '1','1','599.11', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095240.0','1044452.0','1', '1','1','959.7', '1','1','959.7', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006977.0','1018885.0','1', '1','1','3070.24', '1','1','2238.32', '1','1','831.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095241.0','1044452.0','14', '10','5','8012.58', '10','5','6377.5', '9','3','1635.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006978.0','1018885.0','7', '6','5','9960.91', '6','5','9885.91', '2','1','75.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095242.0','1044452.0','68', '65','28','51526.68', '65','26','46404.78', '22','5','5121.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006979.0','1018885.0','56', '53','27','75501.66', '53','23','66654.64', '25','8','8847.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095243.0','1044452.0','16', '13','4','7133.48', '13','4','7133.48', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006980.0','1018885.0','131', '125','24','41113.84', '119','13','18551.24', '78','17','22562.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095244.0','1044452.0','169', '163','89','147330.56', '154','29','57101.85', '118','69','90228.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2001684.0','1018885.0','7', '7','2','7053.35', '7','2','7053.35', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2089948.0','1044452.0','2', '2','1','900.0', '2','1','900.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006981.0','1018885.0','30', '26','12','38460.92', '26','12','38299.57', '10','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095245.0','1044452.0','11', '9','3','2855.92', '9','2','2024.0', '5','1','831.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006982.0','1018885.0','91', '89','43','80547.33', '87','39','76409.74', '33','8','4137.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095246.0','1044452.0','150', '142','47','64063.82', '138','25','33849.16', '94','28','30214.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006983.0','1018885.0','51', '39','28','138049.29', '39','28','138049.29', '14','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095247.0','1044452.0','28', '27','18','26820.13', '27','13','14886.73', '15','12','11933.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006984.0','1018885.0','46', '40','17','27296.49', '39','12','22634.94', '26','6','4661.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095248.0','1044452.0','19', '18','9','24216.69', '18','9','24216.69', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006985.0','1018885.0','4', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095249.0','1044452.0','52', '49','20','60472.88', '49','20','59204.32', '18','3','1268.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006986.0','1018885.0','27', '24','9','15245.94', '24','8','13346.19', '12','2','1899.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095250.0','1044452.0','5', '4','1','5009.0', '3','1','5009.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006987.0','1018885.0','6', '6','3','665.51', '6','2','539.97', '1','1','125.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095251.0','1044452.0','46', '40','17','47696.0', '40','17','46824.71', '7','2','871.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006988.0','1018885.0','13', '11','5','10893.79', '11','5','10732.44', '2','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095252.0','1044452.0','105', '100','48','67192.23', '96','33','41333.06', '66','25','25859.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006989.0','1018885.0','268', '262','102','172115.41', '248','40','52736.25', '214','83','119379.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095253.0','1044452.0','9', '9','5','6578.99', '9','5','6578.99', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006990.0','1018885.0','24', '22','11','14352.13', '21','7','7672.89', '15','6','6679.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095254.0','1044452.0','58', '57','32','76750.76', '57','31','75601.81', '19','3','1148.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006991.0','1018885.0','94', '89','54','210980.31', '89','53','202661.82', '30','7','8318.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095255.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006992.0','1018885.0','12', '11','7','8248.35', '11','6','7925.65', '4','2','322.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095256.0','1044452.0','1', '1','1','363.5', '1','0','0.0', '1','1','363.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006993.0','1018885.0','20', '19','6','15260.09', '15','5','10260.09', '14','1','5000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095257.0','1044452.0','2', '1','1','1800.0', '1','1','1800.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006994.0','1018885.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095258.0','1044452.0','3', '3','3','5451.2', '3','3','5451.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006995.0','1018885.0','80', '77','24','39809.51', '71','14','14978.29', '45','18','24831.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095259.0','1044452.0','43', '41','21','50653.22', '39','19','43957.97', '18','6','6695.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006996.0','1018885.0','138', '134','65','72963.21', '129','26','28068.84', '81','46','44894.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095260.0','1044452.0','27', '24','6','6061.74', '24','3','2814.31', '15','3','3247.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006997.0','1018885.0','7', '7','4','15232.88', '7','3','15071.53', '2','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095261.0','1044452.0','21', '21','7','15476.68', '20','4','3819.94', '15','5','11656.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006998.0','1018885.0','13', '12','5','6883.47', '12','2','2436.04', '4','3','4447.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095262.0','1044452.0','14', '13','3','3838.96', '13','3','2655.12', '7','1','1183.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006999.0','1018885.0','10', '10','8','24230.74', '10','8','22235.7', '3','2','1995.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095263.0','1044452.0','485', '472','209','301507.49', '454','105','126288.03', '365','155','175219.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2006994.0','1018885.0','147', '134','77','146094.47', '130','65','120808.93', '58','23','25285.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095258.0','1044452.0','615', '591','370','566270.49', '566','198','255242.96', '460','263','311027.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2001843.0','1018885.0','30', '29','22','31586.64', '26','8','7872.0', '26','19','23714.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2090107.0','1044452.0','10', '10','8','19242.4', '10','8','19242.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007000.0','1018885.0','23', '23','7','14080.28', '23','7','13918.93', '4','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095264.0','1044452.0','1', '1','1','1108.96', '1','1','1108.96', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007001.0','1018885.0','22', '20','8','10095.95', '19','6','8351.0', '14','3','1744.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095265.0','1044452.0','8', '8','6','25360.38', '8','6','24963.11', '5','1','397.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2007002.0','1018885.0','5', '5','3','3524.33', '5','3','3362.98', '2','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095266.0','1044452.0','8', '7','3','6727.65', '7','3','6727.65', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2006926.0','1018885.0','225', '213','101','188712.48', '211','82','122964.52', '141','46','65747.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095190.0','1044452.0','51', '47','14','35214.05', '45','13','34655.43', '17','2','558.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007003.0','1018885.0','40', '36','21','74230.24', '36','20','74068.89', '19','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095267.0','1044452.0','151', '145','74','83031.96', '129','25','26184.0', '122','55','56847.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007004.0','1018885.0','6', '6','1','1124.0', '6','1','1124.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095268.0','1044452.0','14', '13','6','11124.81', '13','6','11124.81', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007005.0','1018885.0','4', '2','2','1529.81', '2','2','1529.81', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095269.0','1044452.0','31', '31','7','6761.68', '31','6','6010.0', '20','1','751.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2007006.0','1018885.0','12', '11','7','16588.3', '11','7','11146.74', '4','2','5441.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095270.0','1044452.0','11', '11','2','3566.22', '11','2','3388.0', '4','1','178.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2007007.0','1018885.0','96', '88','32','72576.93', '87','29','70148.43', '18','7','2428.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095271.0','1044452.0','26', '24','17','28012.34', '22','11','10617.05', '15','12','17395.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007008.0','1018885.0','3', '3','2','2579.84', '3','1','192.72', '2','2','2387.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095272.0','1044452.0','17', '16','5','8459.8', '16','2','5578.96', '10','3','2880.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007009.0','1018885.0','28', '28','11','24767.42', '28','7','21817.18', '17','5','2950.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095273.0','1044452.0','16', '16','5','6727.26', '16','4','6178.67', '5','1','548.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007010.0','1018885.0','44', '42','31','53738.08', '40','21','27848.76', '32','19','25889.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095274.0','1044452.0','70', '69','37','53767.72', '66','27','47852.69', '31','12','5915.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2007011.0','1018885.0','65', '63','24','44440.89', '63','21','37252.22', '23','7','7188.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095275.0','1044452.0','31', '27','15','38909.14', '26','15','33084.85', '9','2','5824.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2007012.0','1018885.0','414', '400','204','323648.43', '387','128','188993.24', '256','112','134655.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095276.0','1044452.0','6', '6','2','5225.3', '6','2','5225.3', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007013.0','1018885.0','1649', '1594','525','756776.55', '1532','282','356259.1', '1127','354','400517.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095277.0','1044452.0','1', '1','1','1030.93', '1','1','1030.93', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2007014.0','1018885.0','3', '3','1','751.68', '3','0','0.0', '1','1','751.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095278.0','1044452.0','2', '2','1','1449.49', '2','1','1213.57', '1','1','235.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2001675.0','1018885.0','40', '38','12','22500.3', '38','10','21507.03', '15','2','993.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2089939.0','1044452.0','10', '9','4','6137.01', '9','2','3641.26', '4','2','2495.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2007015.0','1018885.0','7', '6','2','6737.32', '6','2','6737.32', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095279.0','1044452.0','1', '1','1','2949.43', '1','1','2949.43', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007016.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095280.0','1044452.0','3', '2','1','313.81', '2','1','313.81', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2000348.0','1018885.0','2', '2','2','21378.36', '2','2','13463.47', '1','1','7914.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2088612.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2007017.0','1018885.0','49', '48','8','10877.41', '47','3','6163.04', '22','6','4714.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095281.0','1044452.0','5', '5','1','831.92', '5','0','0.0', '2','1','831.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001455.0', '2007018.0','1018885.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005902.0', '2095282.0','1044452.0','13', '12','4','4387.15', '11','1','307.8', '8','3','4079.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007019.0','1018885.0','5', '5','4','5854.93', '5','1','2065.94', '5','3','3788.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095283.0','1044452.0','20', '16','12','53202.15', '16','12','52284.8', '7','1','917.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002288.0','1018885.0','7', '7','3','5671.43', '7','2','2424.0', '3','2','3247.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090552.0','1044452.0','28', '26','14','32238.82', '26','14','32077.47', '6','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002348.0','1018885.0','21', '21','10','38639.4', '20','10','38639.4', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090612.0','1044452.0','5', '5','2','3226.38', '5','2','3226.38', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002264.0','1018885.0','5', '5','3','7328.47', '5','2','6581.43', '3','1','747.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090528.0','1044452.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007020.0','1018885.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095284.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003989.0','1018885.0','1', '1','1','1253.88', '1','1','1253.88', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092253.0','1044452.0','59', '52','33','138907.85', '52','33','128645.39', '14','4','10262.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004155.0','1018885.0','25', '24','19','96360.12', '23','19','75682.35', '19','10','20677.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092419.0','1044452.0','47', '46','17','29659.54', '43','9','17311.92', '25','10','12347.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002470.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090734.0','1044452.0','4', '4','2','1663.84', '4','0','0.0', '3','2','1663.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002506.0','1018885.0','9', '9','3','1980.8', '9','3','1980.8', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090770.0','1044452.0','1115', '1076','381','511119.54', '1050','285','376950.54', '608','166','134169.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007021.0','1018885.0','17', '16','5','6916.21', '16','5','5906.07', '5','1','1010.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095285.0','1044452.0','38', '33','12','17068.89', '33','8','13239.25', '15','5','3829.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007022.0','1018885.0','1', '1','1','364.96', '1','1','364.96', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095286.0','1044452.0','5', '5','0','0.0', '5','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000094.0','1018885.0','25', '24','11','56427.94', '23','11','52986.42', '9','1','3441.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088358.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007023.0','1018885.0','1', '1','1','1300.0', '1','1','1300.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095287.0','1044452.0','1', '1','1','3327.66', '1','0','0.0', '1','1','3327.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007024.0','1018885.0','20', '18','6','11342.47', '17','5','11029.8', '3','1','312.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095288.0','1044452.0','550', '536','282','367535.83', '500','113','132292.81', '406','209','235243.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007025.0','1018885.0','46', '44','24','37543.82', '43','9','10464.13', '32','21','27079.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095289.0','1044452.0','54', '50','25','39976.21', '46','8','9498.8', '32','21','30477.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007026.0','1018885.0','10', '8','0','0.0', '8','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095290.0','1044452.0','143', '137','80','213094.02', '135','76','207046.03', '52','11','6047.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007027.0','1018885.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095291.0','1044452.0','111', '106','61','112381.88', '100','46','93466.19', '46','27','18915.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007028.0','1018885.0','29', '25','7','8573.76', '25','5','5078.16', '18','5','3495.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095292.0','1044452.0','6', '6','2','2827.43', '6','1','1124.0', '6','2','1703.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000269.0','1018885.0','8', '7','3','9465.56', '7','3','9229.64', '4','1','235.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088533.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007029.0','1018885.0','102', '96','70','406770.65', '95','67','330353.36', '53','24','76417.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095293.0','1044452.0','2', '2','2','4313.7', '2','2','4313.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007030.0','1018885.0','116', '109','44','77267.09', '107','40','56542.69', '62','16','20724.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095294.0','1044452.0','36', '32','13','36301.77', '32','11','21796.73', '13','4','14505.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000398.0','1018885.0','4', '3','1','1663.83', '3','0','0.0', '2','1','1663.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088662.0','1044452.0','17', '16','6','4145.37', '16','6','4145.37', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007031.0','1018885.0','1', '1','1','900.0', '1','1','900.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095295.0','1044452.0','7', '5','2','4609.35', '5','2','4448.0', '3','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007032.0','1018885.0','1', '1','1','2790.0', '1','1','2600.0', '1','1','190.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095296.0','1044452.0','151', '145','40','46969.95', '140','28','28442.13', '87','19','18527.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2000497.0','1018885.0','12', '7','4','13178.98', '7','4','10836.29', '4','3','2342.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2088761.0','1044452.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007033.0','1018885.0','1', '1','1','5200.0', '1','1','5200.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095297.0','1044452.0','2', '1','1','5200.0', '1','1','5200.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002316.0','1018885.0','10', '10','3','2384.66', '8','0','0.0', '7','3','2384.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090580.0','1044452.0','5', '5','3','8768.4', '5','3','8768.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2001777.0','1018885.0','68', '60','30','89236.92', '59','30','82258.9', '22','5','6978.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090041.0','1044452.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002317.0','1018885.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090581.0','1044452.0','7', '5','2','4132.86', '5','2','4132.86', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007034.0','1018885.0','6', '5','2','4975.85', '5','2','4975.85', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095298.0','1044452.0','12', '11','1','2915.66', '11','1','2915.66', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2004063.0','1018885.0','10', '8','5','14433.24', '8','5','12769.41', '5','1','1663.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2092327.0','1044452.0','5', '5','0','0.0', '5','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007035.0','1018885.0','1', '1','1','831.92', '1','0','0.0', '1','1','831.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095299.0','1044452.0','8', '8','4','15505.56', '8','4','12716.0', '4','3','2789.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003942.0','1018885.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092206.0','1044452.0','19', '18','14','74179.48', '17','13','43369.38', '13','9','30810.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002526.0','1018885.0','4', '3','2','1001.5', '3','2','1001.5', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090790.0','1044452.0','1', '1','1','7471.05', '1','1','3839.38', '1','1','3631.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007036.0','1018885.0','300', '284','151','247679.19', '275','91','136442.84', '193','93','111236.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095300.0','1044452.0','25', '23','7','16336.46', '23','7','15191.87', '5','2','1144.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004308.0','1018885.0','36', '36','5','5410.06', '33','4','4578.14', '16','1','831.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092572.0','1044452.0','177', '169','52','73887.26', '168','42','65266.27', '69','14','8620.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004292.0','1018885.0','4', '4','2','4325.65', '4','1','900.0', '2','2','3425.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092556.0','1044452.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007037.0','1018885.0','34', '34','6','13130.65', '29','5','11748.73', '18','2','1381.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095301.0','1044452.0','4', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002548.0','1018885.0','46', '43','17','35399.76', '42','14','31894.85', '20','7','3504.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090812.0','1044452.0','72', '69','20','52597.39', '66','17','34395.24', '56','10','18202.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007038.0','1018885.0','26', '22','18','81793.62', '20','18','63478.6', '12','5','18315.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095302.0','1044452.0','278', '268','110','157966.24', '262','57','73300.36', '190','70','84665.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007039.0','1018885.0','12', '9','8','16240.58', '9','6','7246.89', '7','6','8993.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095303.0','1044452.0','194', '187','54','73384.17', '185','29','37645.18', '129','35','35738.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007040.0','1018885.0','616', '597','186','259910.72', '562','82','112139.72', '463','132','147771.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095304.0','1044452.0','1', '1','1','197.64', '1','1','197.64', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007041.0','1018885.0','16', '16','3','1691.28', '16','1','900.0', '10','2','791.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095305.0','1044452.0','46', '41','20','57264.57', '41','19','56035.33', '15','5','1229.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007042.0','1018885.0','4', '4','0','0.0', '3','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095306.0','1044452.0','5', '5','2','520.61', '5','2','520.61', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007043.0','1018885.0','3', '3','1','345.36', '3','1','345.36', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095307.0','1044452.0','21', '20','7','6488.04', '16','1','1124.0', '16','6','5364.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007044.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095308.0','1044453.0','61', '56','15','18999.61', '54','9','10362.05', '36','8','8637.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007045.0','1018886.0','5', '5','1','161.35', '5','0','0.0', '3','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095309.0','1044453.0','17', '17','10','65682.32', '17','10','65446.4', '8','1','235.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002293.0','1018886.0','8', '8','0','0.0', '7','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090557.0','1044453.0','20', '18','6','21798.74', '17','6','21798.74', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002345.0','1018886.0','126', '124','17','17510.61', '121','10','11606.77', '57','8','5903.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090609.0','1044453.0','5', '5','1','500.0', '5','0','0.0', '5','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007046.0','1018886.0','3', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095310.0','1044453.0','2', '2','1','801.5', '2','0','0.0', '1','1','801.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004006.0','1018886.0','24', '23','14','22438.58', '20','6','6748.0', '18','13','15690.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092270.0','1044453.0','6', '5','3','12845.21', '5','2','10138.58', '3','2','2706.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004172.0','1018886.0','837', '811','362','566928.36', '795','227','327451.06', '475','208','239477.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092436.0','1044453.0','37', '35','22','53816.24', '35','21','46366.45', '17','6','7449.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007047.0','1018886.0','10', '9','3','13399.75', '9','3','10935.1', '6','1','2464.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095311.0','1044453.0','1', '1','1','2906.43', '1','1','2906.43', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002453.0','1018886.0','1', '1','1','774.4', '1','1','774.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090717.0','1044453.0','139', '131','26','42005.6', '123','17','25893.81', '96','16','16111.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002611.0','1018886.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090875.0','1044453.0','5', '5','3','3547.54', '5','3','3547.54', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002473.0','1018886.0','11', '11','6','6275.04', '11','5','5045.85', '6','2','1229.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090737.0','1044453.0','16', '15','6','9676.83', '14','5','4355.26', '3','2','5321.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000049.0','1018886.0','10', '9','2','4827.12', '8','1','3995.2', '4','1','831.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088313.0','1044453.0','23', '21','7','13158.72', '21','6','11823.44', '4','3','1335.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007048.0','1018886.0','2', '2','1','2390.26', '2','1','2390.26', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095312.0','1044453.0','16', '14','1','601.26', '14','0','0.0', '3','1','601.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007049.0','1018886.0','187', '176','145','129307.36', '159','35','23706.7', '160','137','105600.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095313.0','1044453.0','31', '30','13','26790.19', '30','8','11630.62', '17','10','15159.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007050.0','1018886.0','7', '7','5','11677.38', '7','5','11677.38', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095314.0','1044453.0','10', '9','3','3216.48', '9','2','2464.8', '2','1','751.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007051.0','1018886.0','6', '6','3','4164.21', '6','3','4164.21', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095315.0','1044453.0','13', '13','8','8207.06', '12','7','6155.71', '7','4','2051.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007052.0','1018886.0','1', '1','1','3136.15', '1','1','2910.98', '1','1','225.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095316.0','1044453.0','10', '10','10','6793.75', '9','1','128.74', '10','9','6665.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002456.0','1018886.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090720.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2001812.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090076.0','1044453.0','15', '15','7','10700.11', '15','3','4125.0', '10','5','6575.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007053.0','1018886.0','5', '5','0','0.0', '5','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095317.0','1044453.0','7', '7','1','1614.54', '7','1','1614.54', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007054.0','1018886.0','1', '1','1','1640.26', '1','1','1478.91', '1','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095318.0','1044453.0','4', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007055.0','1018886.0','308', '300','95','160008.43', '292','68','87643.41', '216','47','72365.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095319.0','1044453.0','265', '259','144','178372.85', '239','33','35090.92', '169','119','143281.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007056.0','1018886.0','31', '29','11','38124.78', '29','10','37292.86', '11','1','831.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095320.0','1044453.0','160', '152','50','98800.64', '146','42','78268.3', '97','18','20532.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007057.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095321.0','1044453.0','539', '526','183','264290.72', '506','73','111767.29', '394','131','152523.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002303.0','1018886.0','15', '14','6','9636.27', '14','6','9584.79', '7','1','51.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090567.0','1044453.0','46', '42','36','53053.9', '36','13','13312.63', '34','30','39741.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002292.0','1018886.0','4', '4','1','900.0', '4','1','900.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090556.0','1044453.0','387', '373','139','204757.15', '357','64','104079.91', '282','103','100677.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007058.0','1018886.0','38', '37','17','25994.72', '35','10','11631.7', '18','11','14363.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095322.0','1044453.0','45', '42','23','38788.06', '41','14','19604.35', '27','14','19183.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007059.0','1018886.0','29', '27','11','19199.56', '27','10','12825.6', '17','4','6373.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095323.0','1044453.0','30', '26','18','78108.42', '26','18','77237.13', '7','2','871.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004260.0','1018886.0','42', '41','17','21555.61', '39','6','7606.37', '34','12','13949.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092524.0','1044453.0','22', '21','8','13688.56', '21','8','13688.56', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004237.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092501.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007060.0','1018886.0','118', '102','80','337212.49', '98','80','308419.55', '49','17','28792.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095324.0','1044453.0','1', '1','1','225.17', '1','0','0.0', '1','1','225.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007061.0','1018886.0','166', '149','99','80290.57', '127','17','11795.97', '131','88','68494.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095325.0','1044453.0','1', '1','1','5474.18', '1','1','4565.0', '1','1','909.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007062.0','1018886.0','6', '6','2','2555.52', '5','1','1653.91', '4','1','901.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095326.0','1044453.0','76', '71','55','119986.65', '70','55','104522.98', '32','12','15463.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007063.0','1018886.0','17', '17','14','30345.61', '17','14','29989.86', '7','1','355.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095327.0','1044453.0','17', '16','9','6221.48', '16','8','6084.46', '5','1','137.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000042.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088306.0','1044453.0','2', '2','1','313.81', '2','1','313.81', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002290.0','1018886.0','2', '2','2','2024.0', '2','2','2024.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090554.0','1044453.0','2', '2','1','6545.59', '2','1','6545.59', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2000043.0','1018886.0','27', '26','12','23437.54', '26','12','23437.54', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2088307.0','1044453.0','4', '4','1','3388.08', '4','1','3388.08', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2004069.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2092333.0','1044453.0','2', '2','2','3900.0', '2','2','3900.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007064.0','1018886.0','1', '1','1','2999.57', '1','1','2999.57', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095328.0','1044453.0','1', '1','1','468.04', '1','1','468.04', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002475.0','1018886.0','13', '13','4','5931.92', '13','4','5180.24', '5','1','751.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090739.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007065.0','1018886.0','375', '371','186','247002.83', '349','72','80893.24', '311','147','166109.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095329.0','1044453.0','46', '43','22','91008.65', '42','20','90462.09', '14','3','546.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002390.0','1018886.0','11', '9','3','9883.79', '9','3','9883.79', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090654.0','1044453.0','17', '17','5','4629.0', '17','3','3561.16', '8','2','1067.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2001756.0','1018886.0','1', '1','1','558.43', '1','0','0.0', '1','1','558.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090020.0','1044453.0','97', '93','42','63299.93', '88','18','20185.36', '57','31','43114.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007066.0','1018886.0','38', '33','10','21082.3', '33','9','19337.35', '7','2','1744.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095330.0','1044453.0','3', '3','1','900.0', '3','1','900.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007067.0','1018886.0','1', '1','1','1124.0', '1','1','1124.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095331.0','1044453.0','35', '34','20','33066.92', '34','7','11042.91', '25','17','22024.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007068.0','1018886.0','19', '16','5','4610.38', '16','4','4213.11', '2','1','397.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095332.0','1044453.0','3', '3','1','5200.0', '3','1','5200.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007069.0','1018886.0','104', '102','45','57016.39', '95','24','24580.05', '73','28','32436.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095333.0','1044453.0','54', '49','25','59188.58', '49','20','35602.98', '24','12','23585.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007070.0','1018886.0','20', '18','6','14289.73', '18','6','14289.73', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095334.0','1044453.0','2', '2','1','1350.65', '2','1','1189.3', '1','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002323.0','1018886.0','23', '23','5','9547.37', '23','3','8886.02', '11','2','661.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090587.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007071.0','1018886.0','12', '12','2','2001.66', '12','1','1169.74', '10','1','831.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095335.0','1044453.0','7', '7','1','751.68', '7','0','0.0', '1','1','751.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007072.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095336.0','1044453.0','70', '67','36','82278.78', '66','35','79859.09', '28','7','2419.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002276.0','1018886.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090540.0','1044453.0','3', '3','2','3109.52', '3','2','3109.52', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004311.0','1018886.0','1', '1','1','900.0', '1','1','900.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092575.0','1044453.0','5', '5','2','2636.94', '4','2','2636.94', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2003984.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2092248.0','1044453.0','3', '2','1','927.44', '2','1','927.44', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002454.0','1018886.0','1', '1','1','839.81', '1','1','839.81', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090718.0','1044453.0','5', '5','2','2637.8', '5','2','2401.88', '2','1','235.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002446.0','1018886.0','4', '4','1','831.92', '4','0','0.0', '3','1','831.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090710.0','1044453.0','7', '6','2','8392.05', '6','2','8392.05', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007073.0','1018886.0','64', '54','13','38302.82', '54','10','37104.91', '13','3','1197.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095337.0','1044453.0','8', '8','3','2438.77', '8','2','2225.36', '4','2','213.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000079.0','1018886.0','7', '6','4','10780.88', '6','2','8710.0', '4','3','2070.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088343.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007074.0','1018886.0','17', '16','0','0.0', '16','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095338.0','1044453.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007075.0','1018886.0','47', '46','24','98629.96', '46','24','93277.77', '15','5','5352.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095339.0','1044453.0','14', '14','5','10747.89', '14','5','10747.89', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007076.0','1018886.0','13', '11','6','12749.18', '11','4','7489.6', '6','2','5259.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095340.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007077.0','1018886.0','4', '3','1','2312.0', '3','1','2312.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095341.0','1044453.0','19', '18','8','7811.92', '18','6','5664.04', '9','4','2147.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007078.0','1018886.0','11', '10','4','4087.81', '10','3','2504.21', '4','1','1583.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095342.0','1044453.0','6', '5','1','1774.02', '5','1','1300.0', '2','1','474.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007079.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095343.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002528.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090792.0','1044453.0','65', '59','33','80108.68', '59','31','68281.26', '27','8','11827.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007080.0','1018886.0','6', '4','2','3759.37', '4','2','2927.45', '1','1','831.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095344.0','1044453.0','91', '87','48','94151.12', '86','44','78900.69', '33','12','15250.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007081.0','1018886.0','31', '30','18','25672.83', '29','15','18961.04', '16','7','6711.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095345.0','1044453.0','40', '39','20','33217.29', '37','17','28128.8', '15','7','5088.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007082.0','1018886.0','2', '2','1','1583.6', '2','0','0.0', '1','1','1583.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095346.0','1044453.0','2', '2','1','5200.0', '2','1','5200.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2001782.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090046.0','1044453.0','7', '6','0','0.0', '6','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007083.0','1018886.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095347.0','1044453.0','39', '37','20','39247.59', '37','19','31523.55', '12','6','7724.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002328.0','1018886.0','106', '102','60','161212.84', '100','56','156088.14', '44','18','5124.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090592.0','1044453.0','28', '22','6','24223.25', '22','6','24223.25', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007084.0','1018886.0','26', '26','10','22825.18', '25','9','18504.25', '11','2','4320.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095348.0','1044453.0','86', '82','51','151114.83', '80','49','149362.22', '29','8','1752.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002304.0','1018886.0','9', '9','3','8751.5', '9','3','8349.6', '2','1','401.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090568.0','1044453.0','44', '44','14','15778.08', '42','5','4961.4', '31','10','10816.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002263.0','1018886.0','16', '15','4','7283.1', '15','3','4626.0', '5','3','2657.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090527.0','1044453.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2004034.0','1018886.0','47', '45','26','82542.81', '45','26','81510.17', '10','4','1032.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2092298.0','1044453.0','16', '14','5','4393.52', '13','1','309.2', '8','4','4084.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002347.0','1018886.0','16', '14','12','36047.26', '14','11','35707.09', '8','2','340.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090611.0','1044453.0','2', '2','1','329.6', '2','1','329.6', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002491.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090755.0','1044453.0','12', '7','1','400.4', '7','1','400.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004235.0','1018886.0','5', '4','4','6733.97', '4','3','5666.13', '2','2','1067.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092499.0','1044453.0','13', '12','5','7344.73', '12','5','7344.73', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007085.0','1018886.0','7', '6','0','0.0', '6','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095349.0','1044453.0','12', '10','4','30196.35', '10','4','30035.0', '3','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002589.0','1018886.0','5', '5','4','5726.99', '5','3','3261.01', '4','2','2465.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090853.0','1044453.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007086.0','1018886.0','3', '3','1','3205.0', '3','1','3205.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095350.0','1044453.0','2', '2','1','992.2', '2','1','992.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2001771.0','1018886.0','9', '7','0','0.0', '7','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090035.0','1044453.0','4', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000096.0','1018886.0','84', '76','53','185819.5', '75','50','171557.27', '29','14','14262.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088360.0','1044453.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007087.0','1018886.0','33', '31','15','49987.67', '31','15','48176.96', '9','4','1810.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095351.0','1044453.0','11', '11','1','820.12', '11','1','820.12', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007088.0','1018886.0','8', '6','3','3967.56', '6','3','3967.56', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095352.0','1044453.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007089.0','1018886.0','4', '3','2','1195.02', '3','2','1195.02', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095353.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007090.0','1018886.0','1', '1','1','1746.01', '1','1','1746.01', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095354.0','1044453.0','2', '2','2','4175.33', '2','2','2341.19', '1','1','1834.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002261.0','1018886.0','11', '10','4','5397.91', '10','2','4783.61', '4','3','614.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090525.0','1044453.0','9', '7','5','5083.56', '6','2','1042.01', '5','3','4041.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007091.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095355.0','1044453.0','2', '2','1','752.0', '2','1','752.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007092.0','1018886.0','13', '12','3','9581.83', '12','3','7918.0', '5','1','1663.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095356.0','1044453.0','10', '10','6','30077.2', '10','6','30077.2', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002315.0','1018886.0','5', '5','2','4212.18', '5','1','2288.29', '3','1','1923.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090579.0','1044453.0','1', '1','1','460.52', '1','1','460.52', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002319.0','1018886.0','1', '1','1','1263.8', '1','1','1263.8', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090583.0','1044453.0','22', '20','11','27025.86', '20','11','26517.12', '6','1','508.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002322.0','1018886.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090586.0','1044453.0','9', '9','3','2196.09', '9','2','1960.17', '3','1','235.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004212.0','1018886.0','6', '6','2','1028.96', '5','2','1028.96', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092476.0','1044453.0','30', '30','16','22464.48', '27','8','8890.9', '19','11','13573.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004184.0','1018886.0','16', '15','5','5369.53', '14','1','458.27', '8','4','4911.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092448.0','1044453.0','11', '11','4','5466.08', '11','3','5230.16', '4','1','235.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007093.0','1018886.0','10', '9','4','19938.45', '9','4','19938.45', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095357.0','1044453.0','14', '6','0','0.0', '3','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002363.0','1018886.0','29', '27','7','8207.89', '26','6','7733.87', '9','2','474.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090627.0','1044453.0','7', '6','4','9249.91', '6','4','6754.16', '4','2','2495.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007094.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095358.0','1044453.0','2', '2','1','312.67', '2','0','0.0', '1','1','312.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007095.0','1018886.0','5', '5','0','0.0', '5','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095359.0','1044453.0','4', '4','2','2058.84', '4','2','2058.84', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000265.0','1018886.0','3', '2','2','5641.87', '2','2','5641.87', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088529.0','1044453.0','17', '15','6','29470.06', '15','6','29470.06', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007096.0','1018886.0','10', '10','8','36522.92', '10','7','36287.0', '2','1','235.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095360.0','1044453.0','23', '22','13','76357.44', '22','12','64352.07', '8','4','12005.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007097.0','1018886.0','6', '6','2','1130.61', '6','2','1130.61', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095361.0','1044453.0','8', '8','2','8606.91', '8','2','7004.58', '2','1','1602.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004271.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092535.0','1044453.0','5', '5','3','9317.53', '5','3','9317.53', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002708.0','1018886.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090972.0','1044453.0','5', '5','3','14870.37', '4','3','7570.14', '3','1','7300.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007098.0','1018886.0','1', '1','1','1975.06', '1','1','1975.06', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095362.0','1044453.0','5', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007099.0','1018886.0','1', '1','1','569.39', '1','1','569.39', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095363.0','1044453.0','1', '1','1','3828.6', '1','1','3027.43', '1','1','801.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007100.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095364.0','1044453.0','11', '11','4','4240.18', '10','2','3842.91', '3','2','397.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002388.0','1018886.0','69', '60','23','59359.97', '57','21','48982.49', '17','3','10377.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090652.0','1044453.0','4', '4','2','1467.38', '4','2','1467.38', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000276.0','1018886.0','8', '8','4','4723.11', '8','3','4517.76', '4','2','205.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088540.0','1044453.0','22', '21','5','4104.02', '21','3','2779.77', '9','2','1324.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002324.0','1018886.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090588.0','1044453.0','5', '4','2','4104.0', '4','2','4104.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007101.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095365.0','1044453.0','17', '17','5','6417.88', '16','1','1058.0', '10','5','5359.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2004181.0','1018886.0','3', '2','2','4497.57', '2','2','4497.57', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2092445.0','1044453.0','11', '7','3','16257.07', '6','3','15343.92', '3','2','913.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007102.0','1018886.0','13', '13','2','3720.98', '12','2','2116.0', '6','1','1604.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095366.0','1044453.0','4', '4','1','2600.0', '4','1','2600.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004091.0','1018886.0','4', '4','1','394.26', '4','1','394.26', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092355.0','1044453.0','1', '1','1','4002.55', '1','1','4002.55', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002282.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090546.0','1044453.0','3', '2','1','1317.0', '2','1','1317.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002569.0','1018886.0','6', '6','3','11971.96', '6','3','11971.96', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090833.0','1044453.0','3', '3','1','2358.0', '3','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004202.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092466.0','1044453.0','8', '8','4','12397.42', '7','4','7590.42', '3','2','4807.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007103.0','1018886.0','2', '2','2','801.86', '2','2','801.86', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095367.0','1044453.0','6', '6','3','19436.37', '6','3','13370.38', '2','2','6065.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002389.0','1018886.0','6', '6','4','9263.37', '6','4','9164.37', '3','1','99.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090653.0','1044453.0','4', '4','2','8911.07', '4','2','8911.07', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002571.0','1018886.0','25', '23','11','28228.8', '22','6','17338.23', '13','7','10890.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090835.0','1044453.0','21', '20','10','39556.57', '20','8','30389.26', '8','4','9167.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007104.0','1018886.0','13', '13','2','1395.29', '13','2','1395.29', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095368.0','1044453.0','4', '4','1','802.49', '4','0','0.0', '3','1','802.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007105.0','1018886.0','3', '3','2','1846.62', '3','2','1846.62', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095369.0','1044453.0','3', '3','1','1068.38', '3','1','1068.38', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007106.0','1018886.0','15', '15','6','5196.5', '13','2','1615.7', '8','4','3580.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095370.0','1044453.0','7', '6','4','5014.3', '6','4','5014.3', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007107.0','1018886.0','9', '9','3','2761.35', '9','2','2600.0', '2','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095371.0','1044453.0','8', '7','3','1586.55', '7','2','1425.2', '3','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007108.0','1018886.0','2', '2','1','1836.9', '2','1','1836.9', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095372.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002287.0','1018886.0','3', '3','1','1300.0', '3','1','1300.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090551.0','1044453.0','5', '3','3','7205.1', '3','3','6192.22', '1','1','1012.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007109.0','1018886.0','9', '9','2','660.08', '8','1','459.82', '3','1','200.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095373.0','1044453.0','27', '27','11','24616.8', '26','7','5535.36', '20','8','19081.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002306.0','1018886.0','18', '16','10','37445.12', '16','10','37445.12', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090570.0','1044453.0','3', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000429.0','1018886.0','7', '7','2','11807.62', '6','2','8602.96', '3','1','3204.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088693.0','1044453.0','3', '3','1','550.0', '3','0','0.0', '2','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004113.0','1018886.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092377.0','1044453.0','36', '34','17','17110.72', '29','3','3730.66', '28','16','13380.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007110.0','1018886.0','6', '6','3','2492.75', '6','2','2331.4', '3','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095374.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002889.0','1018886.0','4', '4','2','5954.17', '4','2','5230.28', '2','1','723.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091153.0','1044453.0','2', '2','1','576.0', '2','1','576.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007111.0','1018886.0','17', '16','4','3240.43', '16','1','1300.0', '8','3','1940.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095375.0','1044453.0','4', '4','2','1535.92', '4','1','1300.0', '2','1','235.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000000.0','1018886.0','3', '2','1','2537.58', '2','1','2537.58', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088264.0','1044453.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002289.0','1018886.0','4', '4','1','445.71', '4','1','445.71', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090553.0','1044453.0','5', '5','2','3932.02', '4','1','1300.0', '3','2','2632.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007112.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095376.0','1044453.0','10', '9','3','3675.51', '9','2','3514.16', '4','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004174.0','1018886.0','4', '4','1','1602.33', '4','0','0.0', '2','1','1602.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092438.0','1044453.0','8', '8','4','4072.52', '8','3','3110.0', '5','2','962.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007113.0','1018886.0','6', '5','2','3162.48', '5','2','3162.48', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095377.0','1044453.0','14', '12','4','9821.37', '12','3','9534.48', '3','1','286.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002568.0','1018886.0','13', '12','3','2104.49', '11','1','752.0', '12','2','1352.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090832.0','1044453.0','3', '3','2','4087.0', '3','2','4087.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2001685.0','1018886.0','4', '4','2','3051.18', '4','2','2925.64', '2','1','125.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2089949.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007114.0','1018886.0','35', '35','18','33900.56', '35','17','28145.57', '17','5','5754.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095378.0','1044453.0','5', '5','2','13746.23', '5','2','11420.0', '4','1','2326.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007115.0','1018886.0','9', '8','2','913.35', '8','1','752.0', '3','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095379.0','1044453.0','31', '20','13','39744.96', '19','13','26108.73', '13','2','13636.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007116.0','1018886.0','4', '4','2','1832.96', '4','2','1832.96', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095380.0','1044453.0','5', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002277.0','1018886.0','15', '13','8','30625.86', '13','8','30389.94', '3','1','235.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090541.0','1044453.0','4', '4','1','638.0', '4','1','638.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007117.0','1018886.0','20', '19','6','7430.3', '19','4','2770.16', '8','3','4660.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095381.0','1044453.0','5', '5','4','3583.57', '5','3','3270.9', '2','1','312.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002313.0','1018886.0','12', '11','4','18049.16', '11','4','17007.51', '4','1','1041.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090577.0','1044453.0','16', '14','7','16125.2', '13','6','14625.72', '7','4','1499.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2004254.0','1018886.0','9', '8','2','4571.43', '8','2','1521.31', '3','1','3050.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2092518.0','1044453.0','17', '17','3','4701.02', '17','3','4701.02', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002274.0','1018886.0','10', '9','3','8014.03', '9','3','8014.03', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090538.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002420.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090684.0','1044453.0','4', '4','1','802.49', '4','0','0.0', '3','1','802.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003966.0','1018886.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092230.0','1044453.0','5', '5','2','1611.58', '5','2','1611.58', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002828.0','1018886.0','4', '3','1','5200.0', '3','1','5200.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091092.0','1044453.0','1', '1','1','1300.0', '1','1','1300.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002455.0','1018886.0','2', '2','1','1527.58', '1','0','0.0', '2','1','1527.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090719.0','1044453.0','1', '1','1','1612.67', '1','1','1300.0', '1','1','312.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007118.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095382.0','1044453.0','4', '3','2','3603.35', '3','2','3603.35', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007119.0','1018886.0','11', '10','7','9811.13', '10','6','8229.9', '4','4','1581.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095383.0','1044453.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007120.0','1018886.0','5', '4','1','417.88', '4','1','417.88', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095384.0','1044453.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007121.0','1018886.0','31', '28','15','37948.58', '28','14','35534.31', '9','5','2414.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095385.0','1044453.0','13', '7','2','2514.69', '7','2','1789.6', '2','1','725.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002283.0','1018886.0','4', '4','3','8941.64', '4','3','8941.64', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090547.0','1044453.0','7', '7','1','1300.0', '7','1','1300.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2001678.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2089942.0','1044453.0','14', '14','7','6446.1', '13','1','1313.36', '10','7','5132.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002321.0','1018886.0','20', '19','12','10174.27', '12','3','3378.14', '13','9','6796.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090585.0','1044453.0','12', '11','6','14845.82', '11','6','14684.47', '6','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007122.0','1018886.0','75', '71','59','53115.35', '56','8','9083.88', '66','56','44031.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095386.0','1044453.0','67', '63','32','102948.95', '58','28','59877.6', '39','13','43071.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004239.0','1018886.0','51', '51','22','25733.63', '46','7','9493.36', '43','16','16240.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092503.0','1044453.0','33', '29','9','9101.68', '28','5','6772.61', '16','4','2329.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007123.0','1018886.0','5', '4','1','594.34', '4','1','594.34', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095387.0','1044453.0','15', '13','5','21864.94', '13','5','15609.04', '8','3','6255.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002882.0','1018886.0','32', '29','16','28443.03', '29','15','27983.01', '16','1','460.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091146.0','1044453.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002318.0','1018886.0','5', '4','1','658.24', '4','1','658.24', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090582.0','1044453.0','27', '26','6','6317.9', '25','1','997.76', '22','6','5320.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007124.0','1018886.0','4', '4','2','1900.17', '4','1','251.37', '4','2','1648.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095388.0','1044453.0','49', '40','16','25919.39', '37','15','23110.9', '16','2','2808.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002262.0','1018886.0','1', '1','1','834.4', '1','0','0.0', '1','1','834.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090526.0','1044453.0','28', '25','14','27675.23', '25','14','25183.81', '12','2','2491.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007125.0','1018886.0','1', '1','1','617.57', '1','1','248.0', '1','1','369.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095389.0','1044453.0','3', '3','3','8152.85', '3','3','8152.85', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003981.0','1018886.0','24', '21','13','31906.99', '21','11','30335.02', '7','3','1571.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092245.0','1044453.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007126.0','1018886.0','17', '17','5','13827.95', '17','5','12225.61', '7','2','1602.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095390.0','1044453.0','5', '5','0','0.0', '5','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002362.0','1018886.0','9', '9','2','1183.54', '9','1','1058.0', '6','1','125.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090626.0','1044453.0','12', '11','7','10171.36', '11','6','10010.01', '5','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007127.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095391.0','1044453.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007128.0','1018886.0','5', '5','3','5528.25', '5','3','5402.71', '1','1','125.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095392.0','1044453.0','11', '8','5','10276.42', '8','5','10276.42', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007129.0','1018886.0','5', '5','3','6217.57', '5','3','5820.3', '1','1','397.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095393.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002259.0','1018886.0','16', '15','1','723.89', '15','0','0.0', '7','1','723.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090523.0','1044453.0','2', '2','1','550.0', '2','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2007130.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2095394.0','1044453.0','23', '23','3','2259.38', '21','3','2259.38', '11','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007131.0','1018886.0','12', '9','7','11965.07', '9','7','11579.46', '6','1','385.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095395.0','1044453.0','4', '2','2','3348.11', '2','2','3025.41', '2','2','322.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001492.0', '2002477.0','1018886.0','9', '9','5','5912.04', '9','5','5912.04', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005903.0', '2090741.0','1044453.0','8', '7','1','125.54', '7','0','0.0', '1','1','125.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007132.0','1018886.0','6', '6','3','5370.11', '6','2','4567.62', '3','1','802.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095396.0','1044453.0','52', '52','19','34181.14', '49','16','22934.28', '38','9','11246.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007133.0','1018886.0','2', '2','1','2590.09', '2','1','2204.88', '1','1','385.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095397.0','1044453.0','5', '5','4','11603.39', '5','4','11442.04', '3','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007134.0','1018886.0','22', '20','16','31492.48', '20','15','25114.04', '6','3','6378.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095398.0','1044453.0','8', '5','3','2108.58', '5','3','2108.58', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007135.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095399.0','1044453.0','7', '7','4','4718.98', '7','2','1914.0', '4','3','2804.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000013.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088277.0','1044453.0','13', '11','5','6646.36', '10','4','5648.86', '4','1','997.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000034.0','1018886.0','10', '10','2','2358.0', '10','2','2358.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088298.0','1044453.0','5', '4','3','2344.92', '4','3','2344.92', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002795.0','1018886.0','1', '1','1','4490.99', '1','1','4109.64', '1','1','381.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091059.0','1044453.0','44', '42','14','17420.56', '41','7','6310.0', '33','13','11110.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002720.0','1018886.0','9', '8','5','7221.95', '8','4','6703.65', '4','3','518.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090984.0','1044453.0','36', '31','13','83643.42', '31','13','78427.16', '8','1','5216.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002860.0','1018886.0','2', '1','1','1300.0', '1','1','1300.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091124.0','1044453.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007136.0','1018886.0','13', '11','6','21224.48', '9','6','4976.56', '6','3','16247.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095400.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002643.0','1018886.0','12', '11','5','14239.4', '10','5','9689.09', '5','2','4550.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090907.0','1044453.0','27', '21','6','4936.71', '20','6','4936.71', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002411.0','1018886.0','6', '5','1','4389.82', '5','1','4389.82', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090675.0','1044453.0','2', '2','1','1186.11', '1','1','1186.11', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007137.0','1018886.0','15', '11','8','17227.59', '11','8','16018.59', '5','2','1209.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095401.0','1044453.0','49', '45','30','25405.24', '31','2','4139.98', '38','29','21265.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004550.0','1018886.0','12', '8','3','5058.47', '8','3','4745.8', '1','1','312.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092814.0','1044453.0','5', '5','2','1788.05', '5','2','1788.05', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002699.0','1018886.0','56', '49','36','172969.42', '49','35','161494.76', '15','9','11474.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090963.0','1044453.0','3', '3','2','8856.39', '3','2','6200.46', '2','2','2655.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004590.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092854.0','1044453.0','7', '6','2','7742.24', '6','2','7742.24', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004503.0','1018886.0','105', '97','79','56692.94', '80','8','4416.83', '85','75','52276.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092767.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000133.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088397.0','1044453.0','4', '2','1','3523.47', '2','1','1509.0', '1','1','2014.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007138.0','1018886.0','12', '10','5','2852.39', '10','4','2303.8', '6','2','548.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095402.0','1044453.0','716', '697','605','476738.76', '539','53','41767.63', '653','588','434971.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004762.0','1018886.0','10', '9','7','9527.93', '4','2','6364.88', '7','5','3163.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093026.0','1044453.0','15', '15','11','28242.14', '15','11','27864.2', '6','1','377.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007139.0','1018886.0','8', '7','3','1371.23', '6','2','967.23', '5','1','404.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095403.0','1044453.0','10', '7','4','6333.24', '7','3','6106.12', '2','1','227.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002605.0','1018886.0','5', '5','2','4202.64', '5','2','4202.64', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090869.0','1044453.0','8', '8','8','6253.8', '7','0','0.0', '8','8','6253.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002911.0','1018886.0','4', '4','1','1200.01', '4','1','1200.01', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091175.0','1044453.0','65', '59','39','40353.24', '57','29','31500.37', '32','14','8852.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002369.0','1018886.0','117', '108','71','61723.0', '95','20','21039.2', '84','61','40683.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090633.0','1044453.0','1', '1','1','1486.16', '1','1','1486.16', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002793.0','1018886.0','122', '115','79','57456.91', '96','6','4058.71', '102','77','53398.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091057.0','1044453.0','3', '2','1','4770.09', '2','1','4770.09', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002836.0','1018886.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091100.0','1044453.0','32', '29','20','18198.28', '25','3','4694.7', '23','18','13503.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002888.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091152.0','1044453.0','40', '36','12','17716.44', '34','11','15682.46', '16','3','2033.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007140.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095404.0','1044453.0','5', '3','2','2554.94', '3','2','2429.4', '1','1','125.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002396.0','1018886.0','2', '2','1','1121.6', '2','1','897.74', '2','1','223.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090660.0','1044453.0','30', '24','5','21764.9', '23','5','21764.9', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002673.0','1018886.0','7', '7','1','1311.86', '7','1','1311.86', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090937.0','1044453.0','1', '1','1','2240.61', '1','1','2240.61', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007141.0','1018886.0','8', '8','4','2933.96', '7','1','613.44', '6','4','2320.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095405.0','1044453.0','1', '1','1','620.96', '1','1','620.96', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002691.0','1018886.0','4', '4','4','3934.59', '2','2','2014.27', '3','2','1920.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090955.0','1044453.0','11', '11','7','3667.6', '9','0','0.0', '10','7','3667.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007142.0','1018886.0','5', '5','3','3703.94', '5','3','3524.11', '2','1','179.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095406.0','1044453.0','7', '5','2','3511.79', '5','2','3284.67', '2','1','227.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002743.0','1018886.0','2', '2','1','2195.51', '2','1','2195.51', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091007.0','1044453.0','6', '6','3','5135.14', '6','3','4410.05', '4','1','725.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002476.0','1018886.0','32', '28','14','33995.98', '28','13','33075.9', '5','4','920.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090740.0','1044453.0','52', '42','28','56679.79', '42','28','55897.31', '15','3','782.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002718.0','1018886.0','7', '6','2','1749.02', '6','1','1275.0', '5','1','474.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090982.0','1044453.0','23', '19','13','27500.16', '19','12','21292.23', '8','3','6207.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004475.0','1018886.0','6', '5','3','4997.8', '5','3','4997.8', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092739.0','1044453.0','16', '16','7','10035.19', '15','6','9163.9', '8','3','871.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004496.0','1018886.0','10', '6','3','6631.21', '6','3','6228.56', '3','1','402.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092760.0','1044453.0','5', '5','2','1530.91', '5','1','1218.24', '3','1','312.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002749.0','1018886.0','6', '4','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091013.0','1044453.0','25', '23','5','4820.1', '21','5','3437.6', '11','2','1382.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007143.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095407.0','1044453.0','2', '1','1','245.52', '1','0','0.0', '1','1','245.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007144.0','1018886.0','6', '5','5','4028.86', '2','1','649.26', '5','4','3379.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095408.0','1044453.0','2', '2','1','1744.18', '2','1','1744.18', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000017.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088281.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004549.0','1018886.0','17', '14','10','10505.01', '14','10','10072.09', '8','2','432.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092813.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002738.0','1018886.0','46', '44','39','29766.36', '33','3','2158.33', '42','39','27608.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091002.0','1044453.0','3', '3','3','2533.2', '3','0','0.0', '3','3','2533.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004510.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092774.0','1044453.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000053.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088317.0','1044453.0','1', '1','1','4372.45', '1','1','1300.0', '1','1','3072.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007145.0','1018886.0','3', '3','2','8852.82', '3','2','8852.82', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095409.0','1044453.0','7', '6','3','9487.59', '6','2','9174.92', '2','1','312.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007146.0','1018886.0','20', '15','11','23651.13', '15','11','21156.73', '6','3','2494.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095410.0','1044453.0','16', '7','2','15221.8', '7','2','14288.0', '2','1','933.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007147.0','1018886.0','9', '8','4','3702.19', '7','2','3304.92', '4','2','397.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095411.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002934.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091198.0','1044453.0','455', '365','272','1163891.62', '352','264','843141.54', '179','62','320750.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000020.0','1018886.0','16', '9','4','9975.0', '9','4','9975.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088284.0','1044453.0','31', '29','22','82103.05', '28','19','45244.64', '18','11','36858.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007148.0','1018886.0','11', '11','8','4912.0', '8','0','0.0', '9','8','4912.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095412.0','1044453.0','5', '5','4','2180.55', '4','0','0.0', '4','4','2180.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007149.0','1018886.0','49', '43','26','20379.63', '39','3','908.26', '40','26','19471.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095413.0','1044453.0','1', '1','1','863.4', '1','1','863.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002591.0','1018886.0','1', '1','1','12206.0', '1','1','11656.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090855.0','1044453.0','2', '2','1','974.4', '2','0','0.0', '1','1','974.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004328.0','1018886.0','5', '5','5','21495.15', '5','5','19454.63', '2','2','2040.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092592.0','1044453.0','11', '11','9','8696.93', '10','2','1947.73', '8','8','6749.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007150.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095414.0','1044453.0','22', '21','9','8607.93', '19','4','4420.36', '11','8','4187.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007151.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095415.0','1044453.0','408', '399','306','955959.97', '392','290','392038.55', '323','130','563921.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000130.0','1018886.0','6', '5','1','900.92', '5','1','758.47', '3','1','142.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088394.0','1044453.0','1', '1','1','2720.0', '1','1','2720.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002915.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091179.0','1044453.0','8', '8','7','7694.24', '5','1','2418.32', '8','6','5275.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002838.0','1018886.0','22', '18','12','32033.61', '17','12','31089.78', '12','4','943.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091102.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002761.0','1018886.0','9', '8','5','7878.89', '8','5','7878.89', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091025.0','1044453.0','33', '30','21','68876.42', '29','17','51904.56', '13','7','16971.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007152.0','1018886.0','57', '44','36','157080.44', '44','35','94399.94', '23','13','62680.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095416.0','1044453.0','17', '16','8','11366.36', '16','8','11205.01', '5','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007153.0','1018886.0','10', '8','5','16125.2', '8','5','12716.22', '5','3','3408.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095417.0','1044453.0','28', '26','17','15151.48', '22','4','4051.16', '20','15','11100.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004357.0','1018886.0','1', '1','1','914.4', '1','0','0.0', '1','1','914.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092621.0','1044453.0','23', '23','7','2668.76', '22','2','632.97', '13','7','2035.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002522.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090786.0','1044453.0','23', '20','10','16367.34', '18','9','13646.15', '12','4','2721.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007154.0','1018886.0','9', '9','7','8317.2', '6','3','4506.89', '9','7','3810.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095418.0','1044453.0','1', '1','1','6024.0', '1','1','6024.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004652.0','1018886.0','38', '36','32','25944.31', '28','7','6972.77', '34','30','18971.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092916.0','1044453.0','64', '63','51','38438.6', '53','5','5393.37', '58','50','33045.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002372.0','1018886.0','4', '4','4','2681.2', '2','0','0.0', '4','4','2681.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090636.0','1044453.0','1', '1','1','1139.24', '1','1','1139.24', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004688.0','1018886.0','6', '6','5','6443.71', '6','4','5035.89', '4','4','1407.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092952.0','1044453.0','3', '3','2','1521.28', '3','1','66.48', '1','1','1454.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007155.0','1018886.0','8', '6','3','2949.57', '6','3','2348.06', '4','3','601.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095419.0','1044453.0','82', '76','29','45289.32', '72','21','21632.13', '39','12','23657.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002403.0','1018886.0','6', '6','3','7135.43', '6','3','5791.07', '3','1','1344.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090667.0','1044453.0','15', '12','7','7223.38', '12','7','5728.93', '5','4','1494.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004827.0','1018886.0','7', '6','1','312.67', '5','0','0.0', '4','1','312.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093091.0','1044453.0','17', '16','5','9195.75', '14','5','6436.19', '9','3','2759.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007156.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095420.0','1044453.0','4', '4','3','2900.51', '4','3','2900.51', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002590.0','1018886.0','2', '2','2','1832.41', '2','1','954.01', '1','1','878.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090854.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004490.0','1018886.0','6', '4','1','4738.05', '4','1','4738.05', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092754.0','1044453.0','13', '11','8','17857.98', '11','8','17857.98', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007157.0','1018886.0','4', '3','2','6123.12', '3','2','5737.91', '2','1','385.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095421.0','1044453.0','46', '35','17','52933.71', '35','16','52375.09', '10','3','558.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004667.0','1018886.0','19', '14','12','17307.49', '14','12','15849.11', '1','1','1458.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092931.0','1044453.0','7', '7','4','3386.42', '7','4','3386.42', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000011.0','1018886.0','7', '4','3','5837.49', '4','3','5524.82', '2','1','312.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088275.0','1044453.0','18', '16','6','13298.03', '16','5','12983.16', '9','2','314.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007158.0','1018886.0','11', '9','5','6946.69', '9','4','6634.02', '4','1','312.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095422.0','1044453.0','3', '3','2','4558.19', '3','2','4558.19', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007159.0','1018886.0','4', '3','2','966.6', '3','2','966.6', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095423.0','1044453.0','14', '10','2','5829.97', '10','2','5517.3', '2','1','312.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007160.0','1018886.0','12', '9','2','10502.44', '9','2','7519.0', '3','1','2983.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095424.0','1044453.0','31', '30','13','27797.9', '29','12','21802.59', '9','3','5995.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002737.0','1018886.0','9', '9','8','5244.92', '6','1','500.86', '8','8','4744.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091001.0','1044453.0','6', '6','4','2964.68', '5','1','231.96', '5','4','2732.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002725.0','1018886.0','25', '24','11','24519.6', '20','6','10178.26', '16','7','14341.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090989.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007161.0','1018886.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095425.0','1044453.0','1', '1','1','1111.54', '1','1','1111.54', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007162.0','1018886.0','9', '9','5','4469.35', '9','4','3374.95', '5','2','1094.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095426.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000004.0','1018886.0','245', '231','141','127876.78', '215','49','43654.19', '161','115','84222.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088268.0','1044453.0','12', '10','7','31534.83', '8','5','19307.71', '6','3','12227.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007163.0','1018886.0','2', '2','2','1021.92', '2','0','0.0', '2','2','1021.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095427.0','1044453.0','1', '1','1','70.0', '1','0','0.0', '1','1','70.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002717.0','1018886.0','1', '1','1','1001.86', '1','1','1001.86', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090981.0','1044453.0','5', '4','2','6678.03', '4','2','4150.72', '3','1','2527.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007164.0','1018886.0','8', '8','4','3569.53', '7','3','2775.13', '2','1','794.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095428.0','1044453.0','6', '6','3','7484.17', '6','3','7484.17', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002677.0','1018886.0','1', '1','1','5200.0', '1','1','5200.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090941.0','1044453.0','6', '6','5','29774.61', '6','5','5129.12', '6','5','24645.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002576.0','1018886.0','1', '1','1','227.12', '1','0','0.0', '1','1','227.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090840.0','1044453.0','3', '3','1','656.0', '3','1','656.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007165.0','1018886.0','62', '59','53','60212.99', '49','17','17733.28', '52','52','42479.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095429.0','1044453.0','2', '2','2','6559.28', '2','2','6559.28', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002606.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090870.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002730.0','1018886.0','56', '55','14','18307.37', '55','7','7900.0', '35','9','10407.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090994.0','1044453.0','11', '10','8','16775.87', '9','8','16306.04', '5','1','469.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007166.0','1018886.0','16', '14','10','26435.58', '14','10','25725.64', '4','1','709.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095430.0','1044453.0','2', '2','1','726.36', '2','1','726.36', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004641.0','1018886.0','3', '3','2','3745.3', '3','1','3529.78', '3','1','215.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092905.0','1044453.0','30', '24','11','21264.22', '24','9','17615.35', '7','4','3648.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004562.0','1018886.0','22', '17','12','17479.96', '17','11','15101.7', '5','4','2378.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092826.0','1044453.0','5', '4','2','2263.86', '4','1','2040.0', '2','1','223.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004547.0','1018886.0','7', '7','5','12997.38', '7','5','10924.12', '4','2','2073.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092811.0','1044453.0','3', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004478.0','1018886.0','13', '8','7','29841.23', '7','6','13387.57', '5','3','16453.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092742.0','1044453.0','17', '15','11','24059.07', '15','11','19211.2', '4','3','4847.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007167.0','1018886.0','2', '2','2','4464.61', '2','2','4464.61', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095431.0','1044453.0','8', '8','5','6599.62', '8','5','6599.62', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000150.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088414.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000047.0','1018886.0','12', '12','10','8749.8', '8','0','0.0', '11','10','8749.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088311.0','1044453.0','2', '2','1','2309.29', '2','1','2309.29', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007168.0','1018886.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095432.0','1044453.0','9', '9','9','4089.2', '4','0','0.0', '9','9','4089.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002775.0','1018886.0','50', '41','28','60638.04', '41','27','59238.55', '16','2','1399.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091039.0','1044453.0','32', '30','14','43837.28', '30','13','38051.3', '14','7','5785.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002816.0','1018886.0','4', '4','3','1248.34', '4','3','1248.34', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091080.0','1044453.0','2', '1','1','816.4', '1','0','0.0', '1','1','816.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002537.0','1018886.0','1', '1','1','824.4', '1','0','0.0', '1','1','824.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090801.0','1044453.0','261', '247','192','182588.81', '220','66','57917.45', '206','164','124671.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007169.0','1018886.0','2', '2','2','2232.36', '2','2','2232.36', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095433.0','1044453.0','3', '3','2','1835.92', '1','0','0.0', '3','2','1835.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007170.0','1018886.0','13', '11','4','2351.62', '10','4','2351.62', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095434.0','1044453.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000088.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088352.0','1044453.0','10', '9','2','14588.02', '9','2','5187.76', '4','1','9400.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000003.0','1018886.0','1', '1','1','1186.14', '1','1','251.74', '1','1','934.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088267.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007171.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095435.0','1044453.0','1', '1','1','844.4', '1','0','0.0', '1','1','844.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007172.0','1018886.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095436.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002671.0','1018886.0','5', '5','4','2903.89', '5','4','2029.49', '2','1','874.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090935.0','1044453.0','6', '4','3','3327.2', '3','3','3327.2', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002744.0','1018886.0','30', '28','18','21383.15', '27','14','17793.85', '16','6','3589.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091008.0','1044453.0','3', '3','1','1570.19', '3','1','1570.19', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002758.0','1018886.0','4', '4','3','2159.64', '4','1','486.84', '4','3','1672.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091022.0','1044453.0','4', '4','3','6177.82', '4','2','6147.82', '1','1','30.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002400.0','1018886.0','1', '1','1','1300.0', '1','1','1300.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090664.0','1044453.0','87', '80','29','25568.93', '75','20','17886.72', '32','13','7682.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007173.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095437.0','1044453.0','46', '41','17','12409.91', '38','10','6296.55', '22','11','6113.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007174.0','1018886.0','26', '26','12','13341.93', '26','7','7518.0', '19','9','5823.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095438.0','1044453.0','1', '1','1','932.87', '1','1','932.87', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002770.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091034.0','1044453.0','11', '10','5','9809.5', '10','5','9809.5', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007175.0','1018886.0','19', '18','16','13535.52', '12','0','0.0', '17','16','13535.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095439.0','1044453.0','12', '10','7','29479.63', '10','6','15846.68', '2','1','13632.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002651.0','1018886.0','6', '6','1','722.04', '6','1','722.04', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090915.0','1044453.0','2', '2','2','8307.1', '2','2','7122.65', '2','1','1184.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002713.0','1018886.0','10', '8','5','4199.33', '8','1','274.5', '7','5','3924.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090977.0','1044453.0','6', '6','5','2707.2', '5','0','0.0', '6','5','2707.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004591.0','1018886.0','13', '12','7','12969.5', '12','6','10971.13', '8','3','1998.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092855.0','1044453.0','48', '41','24','33760.94', '34','15','24662.93', '29','14','9098.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000157.0','1018886.0','3', '3','1','1350.0', '3','1','1350.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088421.0','1044453.0','9', '7','4','2938.19', '6','3','2671.19', '5','1','267.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004504.0','1018886.0','8', '8','3','1680.78', '7','2','826.38', '3','1','854.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092768.0','1044453.0','6', '6','4','3564.24', '6','4','3052.22', '2','2','512.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002675.0','1018886.0','1', '1','1','894.08', '1','1','894.08', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090939.0','1044453.0','3', '3','1','1571.57', '3','1','1571.57', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007176.0','1018886.0','1', '1','1','1300.0', '1','1','1300.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095440.0','1044453.0','4', '3','2','1664.8', '2','0','0.0', '2','2','1664.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002831.0','1018886.0','2', '2','2','1836.0', '2','2','1021.6', '1','1','814.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091095.0','1044453.0','7', '6','3','4755.85', '6','3','4755.85', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007177.0','1018886.0','11', '10','9','10287.83', '6','2','4569.48', '10','9','5718.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095441.0','1044453.0','7', '5','1','523.12', '5','1','523.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007178.0','1018886.0','94', '84','44','59206.24', '82','20','19157.0', '69','35','40049.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095442.0','1044453.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004518.0','1018886.0','10', '7','2','4157.0', '7','2','4157.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092782.0','1044453.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007179.0','1018886.0','11', '8','7','13955.36', '8','7','13719.44', '3','1','235.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095443.0','1044453.0','30', '28','6','10573.07', '27','6','9487.22', '14','1','1085.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004587.0','1018886.0','7', '7','4','8346.82', '7','4','8346.82', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092851.0','1044453.0','13', '10','6','11046.91', '10','6','10885.56', '5','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000083.0','1018886.0','6', '6','2','7490.87', '6','2','7490.87', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088347.0','1044453.0','2', '2','1','20615.33', '2','1','12290.0', '1','1','8325.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007180.0','1018886.0','132', '111','63','204046.43', '104','58','155253.29', '46','16','48793.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095444.0','1044453.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007181.0','1018886.0','8', '6','0','0.0', '6','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095445.0','1044453.0','29', '28','20','47698.42', '27','18','37402.7', '19','9','10295.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007182.0','1018886.0','16', '14','8','15644.74', '14','7','14506.92', '4','2','1137.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095446.0','1044453.0','41', '39','30','22257.58', '30','3','914.69', '36','29','21342.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002879.0','1018886.0','55', '32','15','47706.14', '31','15','43272.91', '9','1','4433.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091143.0','1044453.0','2', '2','2','5591.72', '2','2','5591.72', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007134.0','1018886.0','18', '18','13','10785.72', '12','0','0.0', '18','13','10785.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095398.0','1044453.0','34', '32','29','18295.57', '29','3','838.63', '31','28','17456.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007183.0','1018886.0','30', '29','27','27272.56', '25','5','8413.16', '28','27','18859.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095447.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004408.0','1018886.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092672.0','1044453.0','224', '213','91','115881.76', '205','73','87103.81', '115','43','28777.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002402.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090666.0','1044453.0','13', '13','7','5377.29', '12','6','3284.25', '6','3','2093.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007184.0','1018886.0','5', '4','3','2795.59', '2','1','1126.79', '4','2','1668.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095448.0','1044453.0','25', '20','6','13979.69', '20','5','13818.34', '9','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002570.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090834.0','1044453.0','32', '30','14','19090.49', '30','14','17890.49', '10','1','1200.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002676.0','1018886.0','4', '4','2','1612.8', '4','0','0.0', '2','2','1612.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090940.0','1044453.0','15', '15','14','9908.91', '10','0','0.0', '15','14','9908.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007185.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095449.0','1044453.0','1', '1','1','854.4', '1','0','0.0', '1','1','854.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004673.0','1018886.0','6', '6','4','4502.13', '6','4','4502.13', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092937.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007186.0','1018886.0','18', '14','1','312.67', '14','0','0.0', '3','1','312.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095450.0','1044453.0','20', '18','9','11381.96', '18','8','10667.21', '6','1','714.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004623.0','1018886.0','1', '1','1','2011.0', '1','1','2011.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092887.0','1044453.0','2', '2','2','1336.87', '2','1','274.5', '2','2','1062.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007187.0','1018886.0','30', '21','6','25859.09', '20','6','19179.21', '7','1','6679.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095451.0','1044453.0','2', '2','1','2600.0', '2','1','2600.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000132.0','1018886.0','10', '10','5','5940.7', '10','5','5840.7', '6','1','100.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088396.0','1044453.0','18', '16','15','89908.2', '16','15','57539.67', '10','9','32368.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002373.0','1018886.0','112', '104','33','35320.04', '102','25','24357.66', '51','17','10962.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090637.0','1044453.0','36', '36','27','31086.58', '18','1','1869.33', '34','27','29217.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004639.0','1018886.0','10', '9','8','11253.67', '9','8','9709.76', '3','1','1543.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092903.0','1044453.0','22', '19','10','20690.43', '19','10','20293.21', '7','1','397.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002430.0','1018886.0','1', '1','1','844.4', '1','0','0.0', '1','1','844.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090694.0','1044453.0','10', '10','8','12493.72', '9','7','10369.24', '5','3','2124.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004477.0','1018886.0','1', '1','1','5150.05', '1','1','5150.05', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092741.0','1044453.0','7', '7','7','5152.94', '6','0','0.0', '7','7','5152.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007188.0','1018886.0','7', '6','4','8697.16', '6','4','8434.71', '4','2','262.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095452.0','1044453.0','122', '107','42','41966.98', '102','23','24414.64', '71','24','17552.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007189.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095453.0','1044453.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007190.0','1018886.0','21', '18','14','69026.22', '16','13','54723.92', '12','6','14302.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095454.0','1044453.0','3', '3','3','5692.54', '3','3','5692.54', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002771.0','1018886.0','23', '21','16','12002.69', '11','1','82.1', '19','16','11920.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091035.0','1044453.0','68', '63','57','110900.27', '53','14','40046.86', '58','49','70853.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002904.0','1018886.0','13', '12','8','20697.82', '12','8','20697.82', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091168.0','1044453.0','2', '2','1','7600.0', '2','1','5200.0', '2','1','2400.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004626.0','1018886.0','56', '51','33','101150.75', '51','33','64673.79', '22','10','36476.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092890.0','1044453.0','63', '58','25','22027.82', '56','18','15033.88', '38','13','6993.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002851.0','1018886.0','71', '68','58','46649.63', '62','22','13498.23', '60','50','33151.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091115.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007191.0','1018886.0','4', '4','3','6174.4', '3','1','5200.0', '3','3','974.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095455.0','1044453.0','12', '10','7','18709.83', '10','7','9979.72', '5','3','8730.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007192.0','1018886.0','69', '66','29','33327.62', '66','19','22698.21', '36','17','10629.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095456.0','1044453.0','17', '17','9','9558.6', '17','7','6988.19', '7','4','2570.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000183.0','1018886.0','5', '5','5','5974.44', '5','4','5180.04', '4','1','794.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088447.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007193.0','1018886.0','17', '13','10','25162.1', '13','10','24464.61', '7','1','697.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095457.0','1044453.0','4', '4','3','1738.8', '2','0','0.0', '3','3','1738.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002902.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091166.0','1044453.0','1', '1','1','1196.36', '1','1','1196.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000016.0','1018886.0','9', '7','2','1768.55', '6','2','1768.55', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088280.0','1044453.0','22', '20','7','4109.95', '20','7','4109.95', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007194.0','1018886.0','30', '28','18','27104.32', '28','18','26146.25', '12','4','958.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095458.0','1044453.0','16', '16','11','47308.93', '16','11','26894.16', '7','3','20414.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007195.0','1018886.0','4', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095459.0','1044453.0','1', '1','1','924.82', '1','1','924.82', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000032.0','1018886.0','16', '14','3','4854.77', '14','2','4618.85', '4','1','235.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088296.0','1044453.0','3', '3','3','7295.7', '3','3','7295.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002823.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091087.0','1044453.0','8', '7','6','6314.5', '5','2','2809.38', '6','5','3505.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000077.0','1018886.0','26', '23','14','26503.41', '22','13','24622.06', '14','4','1881.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088341.0','1044453.0','3', '3','3','2894.72', '2','0','0.0', '3','3','2894.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002617.0','1018886.0','210', '198','164','119345.2', '157','11','5084.93', '182','162','114260.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090881.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007196.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095460.0','1044453.0','44', '36','22','80400.85', '36','22','78533.25', '10','3','1867.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002848.0','1018886.0','2', '1','1','753.35', '1','1','753.35', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091112.0','1044453.0','1', '1','1','1093.0', '1','1','1093.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007197.0','1018886.0','127', '121','91','86484.95', '110','29','28093.94', '103','85','58391.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095461.0','1044453.0','5', '4','2','822.12', '4','2','822.12', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000091.0','1018886.0','2', '1','1','3188.54', '1','1','3188.54', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088355.0','1044453.0','10', '10','10','7182.15', '9','0','0.0', '10','10','7182.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000075.0','1018886.0','14', '14','9','7994.43', '10','4','3472.91', '10','6','4521.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088339.0','1044453.0','75', '69','27','31637.81', '61','15','17920.81', '41','18','13717.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007198.0','1018886.0','13', '11','8','5309.5', '9','2','2292.0', '8','7','3017.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095462.0','1044453.0','13', '12','6','6931.47', '12','5','6534.2', '5','1','397.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000093.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088357.0','1044453.0','1', '1','1','1312.15', '1','1','1150.8', '1','1','161.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007199.0','1018886.0','136', '128','113','95495.49', '98','4','3366.54', '121','111','92128.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095463.0','1044453.0','1', '1','1','895.0', '1','1','895.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007200.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095464.0','1044453.0','9', '7','1','312.67', '7','0','0.0', '4','1','312.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007201.0','1018886.0','14', '13','5','5471.84', '13','5','5471.84', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095465.0','1044453.0','1', '1','1','1098.29', '1','1','289.89', '1','1','808.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007202.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095466.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002665.0','1018886.0','6', '5','3','3786.06', '5','2','3210.8', '1','1','575.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090929.0','1044453.0','3', '3','3','9763.98', '3','3','7152.48', '2','1','2611.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002631.0','1018886.0','8', '7','6','6314.96', '7','5','4402.26', '5','3','1912.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090895.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002863.0','1018886.0','5', '5','4','3536.06', '4','2','1060.86', '5','4','2475.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091127.0','1044453.0','6', '6','6','8511.6', '5','1','5200.0', '5','5','3311.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000081.0','1018886.0','182', '172','133','104413.64', '155','22','19283.85', '165','125','85129.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088345.0','1044453.0','1', '1','1','944.4', '0','0','0.0', '1','1','944.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002858.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091122.0','1044453.0','25', '23','12','14346.12', '23','10','10006.27', '11','8','4339.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002597.0','1018886.0','2', '2','1','1269.8', '2','1','1269.8', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090861.0','1044453.0','4', '4','3','6921.96', '4','3','6229.8', '2','1','692.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002746.0','1018886.0','2', '2','2','1790.8', '1','0','0.0', '2','2','1790.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091010.0','1044453.0','22', '22','20','23408.3', '19','7','10360.29', '20','17','13048.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002897.0','1018886.0','6', '6','3','6484.08', '6','3','6484.08', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091161.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002612.0','1018886.0','5', '5','4','6275.43', '5','3','3491.04', '4','3','2784.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090876.0','1044453.0','37', '33','18','16515.62', '32','15','13864.84', '18','6','2650.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007203.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095467.0','1044453.0','2', '2','1','2972.16', '2','1','2972.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007204.0','1018886.0','1', '1','1','914.4', '1','0','0.0', '1','1','914.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095468.0','1044453.0','1', '1','1','954.01', '1','1','954.01', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004565.0','1018886.0','1', '1','1','149.76', '1','1','149.76', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092829.0','1044453.0','23', '22','16','24486.71', '22','14','21601.69', '14','4','2885.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002813.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091077.0','1044453.0','133', '124','59','64394.08', '123','48','51522.04', '64','19','12872.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004493.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092757.0','1044453.0','9', '7','4','8421.84', '6','4','8421.84', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004685.0','1018886.0','2', '2','1','142.45', '1','0','0.0', '1','1','142.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092949.0','1044453.0','26', '23','21','32330.53', '16','13','20964.0', '17','12','11366.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007205.0','1018886.0','47', '46','40','27260.12', '33','5','5531.27', '46','38','21728.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095469.0','1044453.0','3', '2','2','5130.12', '2','1','4235.72', '2','2','894.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004532.0','1018886.0','1', '1','1','794.4', '1','0','0.0', '1','1','794.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092796.0','1044453.0','2', '1','1','1504.23', '1','1','1494.23', '1','1','10.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000019.0','1018886.0','1', '1','1','302.96', '1','1','302.96', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088283.0','1044453.0','31', '31','17','9447.09', '27','5','2976.93', '23','14','6470.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002620.0','1018886.0','18', '16','9','25786.77', '16','8','25298.01', '15','2','488.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090884.0','1044453.0','1', '1','1','259.84', '1','1','259.84', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007206.0','1018886.0','70', '53','34','101889.36', '52','32','80560.34', '20','7','21329.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095470.0','1044453.0','1', '1','1','299.4', '1','1','299.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002861.0','1018886.0','7', '6','5','3774.26', '5','1','421.48', '5','5','3352.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091125.0','1044453.0','16', '15','10','8103.59', '9','2','754.87', '14','10','7348.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000027.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088291.0','1044453.0','13', '12','3','8269.62', '12','3','4369.94', '4','2','3899.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002715.0','1018886.0','1', '1','1','2035.3', '1','1','2035.3', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090979.0','1044453.0','2', '2','2','1754.4', '2','2','1754.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002626.0','1018886.0','11', '8','5','5103.59', '8','5','4961.14', '3','1','142.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090890.0','1044453.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007207.0','1018886.0','8', '8','7','5301.99', '6','3','1253.99', '6','5','4048.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095471.0','1044453.0','4', '4','4','5931.28', '3','2','2479.68', '4','4','3451.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007208.0','1018886.0','18', '18','8','8943.83', '14','5','5237.5', '13','6','3706.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095472.0','1044453.0','4', '4','3','2258.8', '3','0','0.0', '4','3','2258.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002492.0','1018886.0','41', '34','19','34182.33', '31','14','25842.29', '23','8','8340.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090756.0','1044453.0','5', '5','0','0.0', '5','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002599.0','1018886.0','2', '1','1','1304.0', '1','1','1304.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090863.0','1044453.0','16', '13','10','24263.49', '12','9','20382.96', '7','4','3880.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007209.0','1018886.0','7', '7','2','5128.08', '6','2','5128.08', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095473.0','1044453.0','109', '103','81','114335.31', '86','38','65489.48', '84','68','48845.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002608.0','1018886.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090872.0','1044453.0','144', '134','109','88587.36', '99','18','10674.34', '116','101','77913.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007210.0','1018886.0','26', '26','16','11021.55', '23','8','7039.9', '17','9','3981.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095474.0','1044453.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000046.0','1018886.0','1', '1','1','923.5', '1','1','823.5', '1','1','100.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088310.0','1044453.0','11', '10','6','22252.78', '10','5','21152.78', '6','2','1100.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002797.0','1018886.0','60', '58','45','37769.49', '37','8','7222.81', '52','42','30546.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091061.0','1044453.0','10', '9','8','18451.65', '9','7','17617.25', '2','1','834.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002826.0','1018886.0','65', '59','43','36376.36', '50','6','2547.96', '55','41','33828.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091090.0','1044453.0','3', '2','1','4396.76', '2','1','4396.76', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002434.0','1018886.0','19', '18','9','27847.33', '18','7','25738.42', '8','4','2108.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090698.0','1044453.0','1', '1','1','678.6', '1','1','678.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002805.0','1018886.0','2', '2','1','814.4', '2','0','0.0', '2','1','814.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091069.0','1044453.0','1', '1','1','884.4', '1','0','0.0', '1','1','884.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007211.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095475.0','1044453.0','4', '4','2','5657.36', '4','2','5657.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007212.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095476.0','1044453.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007213.0','1018886.0','32', '30','18','95915.18', '30','18','54749.71', '9','4','41165.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095477.0','1044453.0','1', '1','1','3374.4', '1','1','3374.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002439.0','1018886.0','1', '1','1','550.0', '1','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090703.0','1044453.0','37', '33','25','100900.86', '33','24','47226.29', '19','9','53674.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004583.0','1018886.0','11', '10','6','14911.3', '10','3','12886.98', '7','3','2024.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092847.0','1044453.0','261', '234','161','129860.91', '208','17','15610.98', '186','155','114249.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004616.0','1018886.0','25', '25','15','27771.4', '24','15','26920.57', '14','2','850.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092880.0','1044453.0','127', '120','101','85780.12', '108','38','23617.5', '114','97','62162.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007214.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095478.0','1044453.0','168', '160','125','110954.03', '110','30','22922.79', '134','113','88031.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004620.0','1018886.0','5', '5','4','2500.03', '5','1','635.71', '4','3','1864.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092884.0','1044453.0','23', '22','18','14659.75', '22','5','3020.98', '21','17','11638.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007215.0','1018886.0','87', '75','66','298914.65', '74','63','142383.77', '43','25','156530.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095479.0','1044453.0','5', '5','2','1668.8', '4','0','0.0', '2','2','1668.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000110.0','1018886.0','10', '6','5','12209.54', '5','3','10420.74', '3','3','1788.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088374.0','1044453.0','69', '66','54','46055.21', '46','14','13900.25', '56','46','32154.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002559.0','1018886.0','7', '7','7','6280.8', '3','0','0.0', '7','7','6280.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090823.0','1044453.0','85', '80','57','40373.4', '64','7','4627.44', '70','54','35745.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007216.0','1018886.0','57', '52','22','11469.09', '43','10','5321.66', '37','15','6147.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095480.0','1044453.0','5', '5','4','6362.33', '5','3','6189.49', '3','1','172.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007217.0','1018886.0','5', '4','3','16479.62', '3','3','15242.35', '3','1','1237.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095481.0','1044453.0','15', '15','10','18932.06', '14','7','7068.31', '9','5','11863.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002714.0','1018886.0','69', '66','55','38423.5', '53','5','3337.56', '58','53','35085.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090978.0','1044453.0','31', '30','22','16336.44', '23','5','4351.51', '28','22','11984.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000005.0','1018886.0','48', '45','35','24227.29', '37','3','1048.76', '38','33','23178.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088269.0','1044453.0','21', '20','17','12420.1', '17','2','3201.92', '18','15','9218.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007218.0','1018886.0','5', '4','3','9018.35', '4','3','9018.35', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095482.0','1044453.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007219.0','1018886.0','12', '12','11','8217.63', '12','3','1531.98', '10','10','6685.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095483.0','1044453.0','3', '3','2','1372.8', '3','2','1308.8', '1','1','64.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002884.0','1018886.0','14', '13','10','10451.08', '13','3','5679.77', '9','8','4771.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091148.0','1044453.0','1', '1','1','3560.0', '1','1','3560.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007220.0','1018886.0','27', '26','19','14998.04', '20','2','841.93', '20','18','14156.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095484.0','1044453.0','13', '12','5','4761.62', '12','5','4211.62', '5','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007221.0','1018886.0','49', '48','41','30307.88', '32','0','0.0', '46','41','30307.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095485.0','1044453.0','3', '3','1','315.88', '2','1','315.88', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002581.0','1018886.0','2', '2','2','2238.99', '2','2','2198.99', '1','1','40.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090845.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002424.0','1018886.0','315', '276','123','89442.18', '242','21','13366.61', '179','113','76075.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090688.0','1044453.0','1', '1','1','794.4', '0','0','0.0', '1','1','794.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007222.0','1018886.0','4', '4','3','10302.66', '4','3','10160.21', '3','1','142.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095486.0','1044453.0','11', '5','4','5355.2', '5','4','5355.2', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000007.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088271.0','1044453.0','291', '265','142','114346.13', '237','26','20620.45', '177','127','93725.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007223.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095487.0','1044453.0','30', '29','23','23545.4', '24','11','13305.24', '22','17','10240.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007224.0','1018886.0','10', '9','9','43011.85', '9','9','27885.98', '3','2','15125.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095488.0','1044453.0','174', '159','110','83111.32', '139','8','3631.55', '135','108','79479.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007225.0','1018886.0','6', '6','0','0.0', '6','0','0.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095489.0','1044453.0','3', '2','2','1461.24', '1','0','0.0', '2','2','1461.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002786.0','1018886.0','44', '38','25','26510.44', '35','10','9723.17', '29','17','16787.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091050.0','1044453.0','53', '51','48','38525.18', '29','8','3429.68', '50','47','35095.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002856.0','1018886.0','1', '1','1','736.06', '1','0','0.0', '1','1','736.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091120.0','1044453.0','15', '13','9','7348.97', '11','1','238.44', '10','9','7110.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000052.0','1018886.0','6', '2','1','772.47', '2','1','772.47', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088316.0','1044453.0','119', '111','81','227534.46', '108','78','180366.82', '60','18','47167.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007226.0','1018886.0','1', '1','1','4389.98', '1','1','4389.98', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095490.0','1044453.0','4', '3','1','540.36', '3','1','540.36', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007227.0','1018886.0','53', '50','40','74288.01', '43','9','22086.22', '44','36','52201.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095491.0','1044453.0','18', '17','10','8592.83', '13','4','2071.09', '12','8','6521.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007228.0','1018886.0','2', '2','2','102.0', '2','0','0.0', '2','2','102.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095492.0','1044453.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007229.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095493.0','1044453.0','2', '2','2','2993.98', '2','2','2953.98', '1','1','40.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000054.0','1018886.0','20', '20','13','10759.02', '20','3','1157.88', '17','13','9601.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088318.0','1044453.0','1', '1','1','6192.0', '1','1','6192.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007230.0','1018886.0','109', '101','64','45292.28', '93','14','8397.57', '77','55','36894.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095494.0','1044453.0','38', '33','25','126551.37', '33','25','69819.52', '20','6','56731.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004502.0','1018886.0','29', '28','18','40492.33', '28','17','38667.09', '14','7','1825.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092766.0','1044453.0','21', '19','15','14804.97', '17','5','5485.95', '16','13','9319.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007231.0','1018886.0','14', '14','10','22423.43', '14','10','21774.44', '6','1','648.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095495.0','1044453.0','74', '69','54','40063.73', '61','9','6654.32', '62','50','33409.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004653.0','1018886.0','15', '13','9','24511.58', '13','9','24328.42', '9','1','183.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092917.0','1044453.0','2', '2','2','1628.8', '2','0','0.0', '2','2','1628.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007232.0','1018886.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095496.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007233.0','1018886.0','14', '9','6','19915.69', '7','5','13644.56', '4','3','6271.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095497.0','1044453.0','2', '2','2','8934.66', '2','2','8934.66', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007234.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095498.0','1044453.0','354', '335','239','210846.46', '243','45','47537.02', '291','221','163309.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007235.0','1018886.0','647', '591','402','351718.12', '538','107','99974.11', '453','349','251744.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095499.0','1044453.0','3', '3','2','6008.95', '3','2','6008.95', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000085.0','1018886.0','31', '25','13','11880.29', '23','6','6726.8', '15','9','5153.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088349.0','1044453.0','2', '2','1','1002.75', '2','0','0.0', '1','1','1002.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002628.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090892.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002658.0','1018886.0','56', '53','38','34012.28', '46','4','2079.88', '45','38','31932.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090922.0','1044453.0','13', '11','8','10632.19', '10','7','9775.86', '5','1','856.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002679.0','1018886.0','2', '2','2','6447.22', '2','2','6447.22', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090943.0','1044453.0','39', '33','15','21832.68', '29','8','11848.89', '23','8','9983.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000015.0','1018886.0','16', '15','12','8616.82', '13','2','1575.31', '14','12','7041.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088279.0','1044453.0','65', '59','40','132003.16', '58','39','92302.42', '44','16','39700.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007236.0','1018886.0','15', '15','12','10597.4', '12','4','4597.24', '15','10','6000.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095500.0','1044453.0','1', '1','1','1010.55', '1','1','1010.55', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000045.0','1018886.0','5', '5','4','2543.2', '4','0','0.0', '4','4','2543.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088309.0','1044453.0','71', '66','51','38362.23', '45','5','1929.09', '56','49','36433.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002868.0','1018886.0','6', '6','4','6675.18', '5','3','6455.84', '3','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091132.0','1044453.0','9', '7','2','3492.93', '7','2','3163.25', '1','1','329.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007237.0','1018886.0','11', '10','8','41878.27', '10','8','29794.96', '3','1','12083.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095501.0','1044453.0','5', '5','0','0.0', '5','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004491.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092755.0','1044453.0','1', '1','1','1099.12', '1','1','723.65', '1','1','375.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007238.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095502.0','1044453.0','5', '3','2','2119.73', '3','2','2119.73', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000069.0','1018886.0','1', '1','1','976.0', '1','1','976.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088333.0','1044453.0','41', '41','35','28903.14', '27','2','1193.65', '37','35','27709.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007239.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095503.0','1044453.0','2', '2','2','4093.84', '2','2','4093.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007240.0','1018886.0','1', '1','1','1074.46', '1','1','1074.46', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095504.0','1044453.0','1', '1','1','1300.0', '1','1','1300.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000055.0','1018886.0','2', '2','2','3767.88', '2','2','3243.99', '1','1','523.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088319.0','1044453.0','4', '4','1','293.0', '4','1','293.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002395.0','1018886.0','11', '11','4','8052.61', '11','4','8052.61', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090659.0','1044453.0','4', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007241.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095505.0','1044453.0','13', '13','3','2271.01', '13','3','2271.01', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002812.0','1018886.0','4', '4','3','6163.64', '4','3','5724.96', '2','2','438.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091076.0','1044453.0','85', '75','62','148004.45', '73','59','106340.83', '42','14','41663.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002864.0','1018886.0','1', '1','1','807.4', '1','1','807.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091128.0','1044453.0','4', '4','3','11351.42', '4','3','11209.37', '2','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002376.0','1018886.0','1', '1','1','743.56', '1','1','743.56', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090640.0','1044453.0','33', '27','23','58124.31', '27','23','56968.62', '9','3','1155.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002716.0','1018886.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090980.0','1044453.0','3', '2','1','1123.17', '2','1','1123.17', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007242.0','1018886.0','106', '101','66','53226.78', '88','4','2695.55', '84','66','50531.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095506.0','1044453.0','284', '263','148','112367.23', '233','34','25219.04', '191','127','87148.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002375.0','1018886.0','8', '7','2','3398.4', '7','2','3374.4', '3','1','24.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090639.0','1044453.0','1', '1','1','3472.6', '1','1','3472.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002875.0','1018886.0','2', '2','1','1267.97', '2','1','1267.97', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091139.0','1044453.0','3', '3','3','8630.43', '3','3','5435.8', '2','2','3194.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007243.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095507.0','1044453.0','1', '1','1','2112.49', '1','1','2112.49', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004545.0','1018886.0','112', '110','99','1140139.15', '110','97','532217.1', '102','93','607922.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092809.0','1044453.0','2', '2','1','658.76', '1','1','658.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002616.0','1018886.0','2', '1','1','260.75', '1','1','260.75', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090880.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004574.0','1018886.0','68', '68','63','302197.46', '68','61','128391.93', '61','56','173805.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092838.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004568.0','1018886.0','73', '72','67','217754.52', '70','65','199180.57', '56','38','18573.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092832.0','1044453.0','1', '1','1','3209.0', '1','1','3209.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007244.0','1018886.0','19', '14','7','9961.52', '14','7','8525.36', '10','4','1436.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095508.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004570.0','1018886.0','1', '1','1','1281.92', '1','1','420.01', '1','1','861.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092834.0','1044453.0','4', '4','3','6662.01', '4','3','6662.01', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004773.0','1018886.0','3', '3','2','3224.1', '3','2','3224.1', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093037.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000056.0','1018886.0','219', '210','145','534202.98', '208','128','403776.75', '149','77','130426.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088320.0','1044453.0','20', '19','17','29239.39', '19','17','28727.37', '9','2','512.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000014.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088278.0','1044453.0','73', '63','40','117063.91', '63','29','71585.63', '43','22','45478.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007245.0','1018886.0','6', '5','5','10877.15', '5','5','9962.75', '3','1','914.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095509.0','1044453.0','21', '19','15','26829.49', '19','14','24330.96', '5','4','2498.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002600.0','1018886.0','18', '18','18','15177.38', '11','2','291.2', '18','18','14886.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090864.0','1044453.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002582.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090846.0','1044453.0','1', '1','1','301.45', '1','1','301.45', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002405.0','1018886.0','1', '1','1','866.7', '1','1','724.65', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090669.0','1044453.0','3', '3','1','974.71', '2','1','974.71', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000044.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088308.0','1044453.0','18', '17','10','11777.18', '17','10','11040.32', '8','3','736.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007246.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095510.0','1044453.0','88', '72','63','197279.14', '71','61','155468.7', '48','28','41810.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007247.0','1018886.0','11', '10','6','7138.52', '10','6','6919.18', '2','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095511.0','1044453.0','10', '9','5','10105.57', '9','5','10105.57', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004506.0','1018886.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092770.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007248.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095512.0','1044453.0','7', '6','3','2024.64', '5','2','1585.96', '5','2','438.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007249.0','1018886.0','5', '5','5','4746.48', '5','3','4622.48', '2','2','124.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095513.0','1044453.0','228', '210','139','115082.24', '182','33','19533.23', '165','129','95549.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000051.0','1018886.0','27', '25','23','50463.13', '25','20','41048.7', '14','8','9414.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088315.0','1044453.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002595.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090859.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002895.0','1018886.0','21', '19','18','66572.0', '19','18','49047.01', '13','12','17524.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091159.0','1044453.0','2', '2','1','1705.61', '2','1','1300.0', '1','1','405.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002722.0','1018886.0','2', '2','1','4042.0', '2','1','4042.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090986.0','1044453.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007250.0','1018886.0','3', '2','1','1822.6', '2','1','1822.6', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095514.0','1044453.0','3', '3','1','391.2', '3','1','391.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004581.0','1018886.0','5', '4','3','2900.0', '4','3','2900.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092845.0','1044453.0','98', '87','47','114081.81', '80','34','83336.63', '59','30','30745.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004523.0','1018886.0','61', '61','55','301715.33', '61','54','140628.77', '55','47','161086.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092787.0','1044453.0','5', '5','4','8999.52', '5','4','8999.52', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000048.0','1018886.0','2', '2','2','3883.55', '2','2','3664.21', '2','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088312.0','1044453.0','11', '9','7','10998.83', '9','6','10553.72', '4','1','445.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004662.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092926.0','1044453.0','9', '9','6','7618.81', '8','6','7618.81', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000092.0','1018886.0','19', '18','11','24702.25', '17','11','24702.25', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088356.0','1044453.0','3', '3','2','4052.38', '3','2','3617.55', '3','1','434.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002894.0','1018886.0','2', '2','1','3461.05', '2','1','3461.05', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091158.0','1044453.0','15', '5','4','10460.36', '5','3','3449.85', '3','1','7010.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002696.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090960.0','1044453.0','1', '1','1','6030.0', '1','1','6030.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002827.0','1018886.0','7', '7','5','5365.23', '7','5','5365.23', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091091.0','1044453.0','3', '3','3','5456.73', '3','3','5456.73', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004686.0','1018886.0','31', '29','20','14347.98', '26','2','988.93', '25','18','13359.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092950.0','1044453.0','3', '3','3','6447.2', '3','2','6427.2', '2','1','20.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002520.0','1018886.0','8', '7','3','4671.03', '7','2','4661.03', '5','1','10.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090784.0','1044453.0','27', '26','18','16027.9', '24','9','9015.22', '20','11','7012.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002927.0','1018886.0','4', '4','1','6753.81', '4','1','886.0', '4','1','5867.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091191.0','1044453.0','3', '3','3','14204.51', '3','3','9421.38', '1','1','4783.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007251.0','1018886.0','6', '3','2','9242.83', '3','2','7812.0', '1','1','1430.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095515.0','1044453.0','15', '13','9','14269.17', '13','9','11869.17', '5','1','2400.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004642.0','1018886.0','1', '1','1','814.4', '1','0','0.0', '1','1','814.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092906.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000097.0','1018886.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088361.0','1044453.0','1', '1','1','5065.4', '1','1','5065.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004668.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092932.0','1044453.0','1', '1','1','1209.91', '1','1','298.0', '1','1','911.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002698.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090962.0','1044453.0','11', '9','9','21179.47', '9','9','20960.13', '3','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007252.0','1018886.0','52', '47','25','47868.58', '46','22','28953.47', '28','12','18915.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095516.0','1044453.0','12', '11','5','8918.91', '11','5','8918.91', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000174.0','1018886.0','45', '45','40','262963.75', '45','36','107170.55', '38','34','155793.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088438.0','1044453.0','4', '3','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000009.0','1018886.0','2', '2','2','8827.74', '2','2','8827.74', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088273.0','1044453.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002623.0','1018886.0','1', '1','1','369.57', '1','0','0.0', '1','1','369.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090887.0','1044453.0','5', '4','1','5200.0', '4','1','5200.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000010.0','1018886.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088274.0','1044453.0','141', '108','90','243172.27', '107','90','217988.95', '48','22','25183.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007253.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095517.0','1044453.0','2', '2','2','2344.57', '2','2','2202.52', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007254.0','1018886.0','7', '7','4','4032.1', '7','4','4032.1', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095518.0','1044453.0','4', '3','1','1001.4', '3','1','1001.4', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007255.0','1018886.0','27', '25','21','71448.62', '25','21','60834.12', '9','7','10614.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095519.0','1044453.0','1', '1','1','702.72', '1','1','702.72', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007256.0','1018886.0','8', '7','5','7407.88', '5','4','2792.03', '5','3','4615.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095520.0','1044453.0','4', '3','1','843.34', '3','1','843.34', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007257.0','1018886.0','4', '4','3','3173.97', '4','3','2304.32', '1','1','869.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095521.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002397.0','1018886.0','12', '11','0','0.0', '10','0','0.0', '10','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090661.0','1044453.0','1', '1','1','40.39', '1','1','40.39', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002601.0','1018886.0','3', '3','2','2059.54', '2','2','2059.54', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090865.0','1044453.0','1', '1','1','1039.45', '1','1','1039.45', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007258.0','1018886.0','2', '2','2','5967.51', '2','2','5967.51', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095522.0','1044453.0','6', '6','6','15337.68', '5','4','9615.42', '5','3','5722.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002731.0','1018886.0','18', '16','6','10128.3', '15','6','9168.56', '5','2','959.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090995.0','1044453.0','4', '3','3','8314.03', '3','3','8314.03', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004508.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092772.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004654.0','1018886.0','88', '77','55','125784.88', '77','47','113952.99', '45','26','11831.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2092918.0','1044453.0','1', '1','1','8442.08', '1','1','1690.8', '1','1','6751.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007259.0','1018886.0','1', '1','1','372.88', '1','1','372.88', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095523.0','1044453.0','3', '3','2','3034.73', '3','2','2144.51', '2','1','890.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002844.0','1018886.0','731', '684','428','343199.74', '600','78','64160.2', '530','393','279039.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091108.0','1044453.0','2', '2','2','5431.28', '2','2','5431.28', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002684.0','1018886.0','17', '15','9','6685.2', '13','0','0.0', '15','9','6685.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090948.0','1044453.0','2', '2','2','2543.23', '2','2','2543.23', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002874.0','1018886.0','22', '19','13','22238.28', '19','12','17798.88', '10','4','4439.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091138.0','1044453.0','1', '1','1','758.0', '1','1','758.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003021.0','1018886.0','68', '63','44','130960.92', '62','43','94595.27', '38','15','36365.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091285.0','1044453.0','3', '3','2','1818.38', '3','1','1675.93', '1','1','142.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002885.0','1018886.0','1', '1','1','266.42', '1','1','266.42', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091149.0','1044453.0','1', '1','1','6647.96', '1','0','0.0', '1','1','6647.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004976.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093240.0','1044453.0','18', '16','6','7247.14', '16','6','7247.14', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002563.0','1018886.0','16', '15','13','28555.97', '15','13','24776.25', '12','3','3779.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090827.0','1044453.0','22', '20','9','8690.6', '20','8','7893.11', '7','1','797.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002825.0','1018886.0','1', '1','1','235.52', '1','0','0.0', '1','1','235.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091089.0','1044453.0','17', '14','8','23254.53', '14','8','14726.25', '6','2','8528.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002567.0','1018886.0','3', '2','2','1627.25', '2','2','1627.25', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090831.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002625.0','1018886.0','4', '4','4','10610.48', '4','4','10610.48', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090889.0','1044453.0','2', '2','1','142.59', '2','1','142.59', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002941.0','1018886.0','7', '7','3','2954.85', '7','2','2374.12', '5','2','580.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091205.0','1044453.0','5', '3','2','1798.8', '2','0','0.0', '2','2','1798.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002790.0','1018886.0','9', '8','2','4184.15', '7','2','4184.15', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091054.0','1044453.0','1', '1','1','5200.0', '1','1','5200.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003049.0','1018886.0','3', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091313.0','1044453.0','3', '3','1','1437.88', '3','1','1437.88', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004923.0','1018886.0','5', '5','3','8826.31', '5','3','8826.31', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093187.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004938.0','1018886.0','1', '1','1','2196.82', '1','1','2054.77', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093202.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002584.0','1018886.0','10', '10','7','9549.23', '10','7','9549.23', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090848.0','1044453.0','1', '1','1','854.0', '1','1','854.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002981.0','1018886.0','3', '3','2','1297.72', '3','2','1297.72', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091245.0','1044453.0','1', '1','1','990.0', '1','1','990.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002928.0','1018886.0','2', '2','2','1261.27', '2','2','397.36', '2','2','863.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091192.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003019.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091283.0','1044453.0','5', '4','3','9445.01', '4','3','9214.97', '1','1','230.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004852.0','1018886.0','34', '30','22','20905.01', '26','8','7231.18', '22','17','13673.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093116.0','1044453.0','3', '3','1','72.0', '3','0','0.0', '1','1','72.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004943.0','1018886.0','13', '13','10','7349.77', '10','2','588.78', '12','9','6760.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093207.0','1044453.0','6', '6','6','5458.4', '4','0','0.0', '6','6','5458.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005113.0','1018886.0','14', '14','12','25901.13', '14','11','21657.43', '11','5','4243.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093377.0','1044453.0','3', '2','2','1470.46', '2','2','1470.46', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002984.0','1018886.0','2', '2','1','256.11', '2','1','256.11', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091248.0','1044453.0','5', '4','3','3008.66', '4','3','3008.66', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002817.0','1018886.0','2', '2','2','2074.37', '2','1','1882.2', '1','1','192.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091081.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002881.0','1018886.0','3', '3','3','1815.18', '3','3','1815.18', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091145.0','1044453.0','3', '3','2','1851.5', '3','2','1851.5', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002752.0','1018886.0','5', '4','2','1878.65', '4','2','1878.65', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091016.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002936.0','1018886.0','5', '5','2','2451.44', '5','2','2451.44', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091200.0','1044453.0','28', '17','12','45750.93', '17','10','31605.07', '13','6','14145.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002739.0','1018886.0','2', '2','1','1539.99', '2','1','1539.99', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091003.0','1044453.0','8', '8','3','4077.44', '8','3','3858.1', '4','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004847.0','1018886.0','4', '3','3','7632.47', '3','3','7490.42', '2','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093111.0','1044453.0','33', '29','19','26969.32', '29','19','23986.28', '14','6','2983.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002785.0','1018886.0','3', '1','1','947.81', '1','1','947.81', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091049.0','1044453.0','3', '3','1','1173.54', '3','1','1173.54', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007260.0','1018886.0','1', '1','1','4694.07', '1','1','4694.07', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095524.0','1044453.0','10', '8','7','14244.15', '7','7','13991.65', '7','3','252.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005068.0','1018886.0','1', '1','1','2569.38', '1','1','2569.38', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093332.0','1044453.0','1', '1','1','585.02', '1','1','585.02', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005111.0','1018886.0','2', '2','2','2053.34', '2','2','2053.34', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093375.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003000.0','1018886.0','9', '9','9','25163.28', '9','9','24013.08', '7','5','1150.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091264.0','1044453.0','204', '195','106','332633.04', '194','79','177484.06', '116','63','155148.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003029.0','1018886.0','2', '2','2','4477.49', '2','1','914.22', '2','2','3563.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091293.0','1044453.0','1', '1','1','1476.54', '1','1','1476.54', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004928.0','1018886.0','4', '4','3','7740.53', '3','2','1980.0', '2','2','5760.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093192.0','1044453.0','4', '4','3','3974.11', '4','2','3568.5', '3','1','405.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002740.0','1018886.0','20', '18','13','30910.12', '18','13','30303.11', '7','2','607.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091004.0','1044453.0','5', '5','4','12221.51', '5','4','12221.51', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002660.0','1018886.0','11', '10','2','2086.25', '9','2','1866.91', '3','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090924.0','1044453.0','1', '1','1','426.56', '1','1','426.56', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002997.0','1018886.0','13', '11','8','13068.12', '11','8','12411.46', '4','3','656.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091261.0','1044453.0','33', '26','20','98971.15', '25','20','69426.95', '18','8','29544.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002906.0','1018886.0','3', '3','3','6922.52', '3','3','6922.52', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091170.0','1044453.0','106', '83','59','154866.03', '81','53','99216.86', '53','25','55649.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002583.0','1018886.0','3', '2','1','282.76', '2','1','282.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090847.0','1044453.0','2', '2','1','1048.24', '2','1','1048.24', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002937.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091201.0','1044453.0','2', '2','2','3921.59', '2','2','3921.59', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002990.0','1018886.0','4', '4','4','2398.61', '4','4','2256.56', '3','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091254.0','1044453.0','14', '12','11','14298.27', '12','11','12787.51', '8','2','1510.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004844.0','1018886.0','1', '1','1','1193.14', '1','1','1193.14', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093108.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002787.0','1018886.0','5', '4','4','3130.37', '4','4','3130.37', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091051.0','1044453.0','3', '3','3','10242.0', '3','3','10242.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002700.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090964.0','1044453.0','2', '2','2','1175.04', '2','2','1175.04', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002958.0','1018886.0','1', '1','1','913.4', '1','1','913.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091222.0','1044453.0','2', '2','1','1333.61', '2','1','1333.61', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002610.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090874.0','1044453.0','26', '23','17','40318.0', '22','15','32469.03', '15','7','7848.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004921.0','1018886.0','5', '5','1','2306.0', '5','1','2306.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093185.0','1044453.0','1', '1','1','2652.06', '1','1','2387.06', '1','1','265.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002562.0','1018886.0','2', '2','1','175.57', '2','0','0.0', '1','1','175.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090826.0','1044453.0','1', '1','1','1182.15', '1','1','1182.15', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002707.0','1018886.0','1', '1','1','424.0', '1','1','424.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090971.0','1044453.0','4', '3','3','10566.86', '3','3','10566.86', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002969.0','1018886.0','257', '237','109','280584.04', '231','76','151396.52', '136','53','129187.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091233.0','1044453.0','6', '4','2','8654.35', '4','2','1782.0', '1','1','6872.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004996.0','1018886.0','5', '3','3','5749.88', '3','3','5749.88', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093260.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002586.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2090850.0','1044453.0','5', '3','3','6264.36', '3','3','5507.61', '3','3','756.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004858.0','1018886.0','3', '3','3','4690.89', '3','3','4285.28', '2','1','405.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093122.0','1044453.0','2', '2','2','3116.96', '2','2','3116.96', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004930.0','1018886.0','70', '63','48','212632.77', '61','44','89487.11', '45','20','123145.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093194.0','1044453.0','2', '2','2','1315.76', '2','2','1085.72', '1','1','230.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004903.0','1018886.0','78', '66','41','62144.56', '64','36','53097.25', '30','14','9047.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093167.0','1044453.0','159', '137','122','369887.11', '136','119','308830.95', '78','40','61056.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004868.0','1018886.0','6', '5','4','5135.14', '5','4','5135.14', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093132.0','1044453.0','7', '7','6','9467.54', '7','6','7303.11', '2','1','2164.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005092.0','1018886.0','2', '2','1','1002.83', '2','1','1002.83', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093356.0','1044453.0','24', '18','12','17944.12', '16','9','16601.13', '8','4','1342.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004904.0','1018886.0','30', '25','10','18455.62', '23','10','15169.14', '9','2','3286.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093168.0','1044453.0','4', '3','1','3693.89', '3','1','3693.89', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005190.0','1018886.0','2', '2','1','850.95', '2','1','850.95', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093454.0','1044453.0','3', '3','3','43344.5', '3','3','21982.0', '1','1','21362.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002977.0','1018886.0','1', '1','1','1465.69', '1','1','1104.3', '1','1','361.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091241.0','1044453.0','4', '4','4','10558.83', '4','4','10174.82', '2','1','384.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003001.0','1018886.0','3', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091265.0','1044453.0','33', '29','24','71413.02', '29','24','68431.76', '16','10','2981.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002951.0','1018886.0','1', '1','1','995.14', '1','1','995.14', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091215.0','1044453.0','2', '2','1','548.76', '2','1','548.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004927.0','1018886.0','11', '10','6','7282.05', '10','6','7282.05', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093191.0','1044453.0','1', '1','1','738.34', '1','1','738.34', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004977.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093241.0','1044453.0','1', '1','1','476.62', '1','1','476.62', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005119.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093383.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004848.0','1018886.0','3', '3','3','3913.91', '3','3','3913.91', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093112.0','1044453.0','2', '2','1','5316.84', '2','1','4911.23', '1','1','405.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004905.0','1018886.0','1', '1','1','4629.03', '1','1','4629.03', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093169.0','1044453.0','6', '6','6','12545.63', '6','5','10972.82', '5','3','1572.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005046.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093310.0','1044453.0','1', '1','1','1362.78', '1','1','1362.78', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004871.0','1018886.0','30', '28','16','14871.75', '27','9','11956.95', '17','8','2914.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093135.0','1044453.0','52', '48','42','140600.78', '48','42','107990.62', '36','12','32610.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003023.0','1018886.0','88', '79','59','196210.79', '79','56','166677.55', '44','16','29533.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091287.0','1044453.0','8', '8','6','19357.58', '8','6','19357.58', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002972.0','1018886.0','88', '84','39','94475.65', '82','27','58744.07', '48','23','35731.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091236.0','1044453.0','6', '5','4','13297.35', '5','4','9644.79', '4','2','3652.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004882.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093146.0','1044453.0','14', '10','8','19780.98', '10','8','14952.19', '4','2','4828.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004979.0','1018886.0','4', '4','4','6847.87', '4','4','6847.87', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093243.0','1044453.0','5', '5','5','14471.77', '5','5','13932.66', '2','2','539.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007261.0','1018886.0','30', '23','16','29809.81', '22','16','29425.8', '9','2','384.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095525.0','1044453.0','1', '1','1','1335.42', '1','1','1335.42', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005114.0','1018886.0','2', '2','2','3324.2', '2','2','3324.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093378.0','1044453.0','6', '6','4','4945.96', '6','4','4833.1', '4','1','112.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004989.0','1018886.0','7', '5','2','1132.65', '5','2','903.74', '1','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093253.0','1044453.0','3', '3','2','756.23', '3','2','756.23', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005038.0','1018886.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093302.0','1044453.0','2', '2','1','1268.31', '2','1','1268.31', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005146.0','1018886.0','8', '8','5','11947.18', '8','5','9936.71', '3','1','2010.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093410.0','1044453.0','7', '6','6','14625.31', '6','6','12225.31', '3','1','2400.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004911.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093175.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003017.0','1018886.0','1', '1','1','2148.84', '1','1','2148.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091281.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002946.0','1018886.0','20', '17','13','19259.24', '17','13','18755.8', '5','2','503.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091210.0','1044453.0','1', '1','1','207.2', '1','1','207.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004897.0','1018886.0','10', '8','6','14722.94', '8','6','13262.22', '5','3','1460.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093161.0','1044453.0','1', '1','1','1066.76', '1','1','1066.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005036.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093300.0','1044453.0','75', '68','39','101426.58', '65','27','46926.06', '52','24','54500.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005075.0','1018886.0','2', '2','2','3160.1', '2','2','3160.1', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093339.0','1044453.0','2', '2','1','853.8', '2','1','853.8', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005170.0','1018886.0','3', '3','1','526.68', '3','1','526.68', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093434.0','1044453.0','53', '49','40','87904.41', '48','36','62701.77', '30','18','25202.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005035.0','1018886.0','1', '1','1','2317.37', '1','1','2317.37', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093299.0','1044453.0','17', '13','11','19987.26', '13','11','18880.02', '3','2','1107.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003041.0','1018886.0','2', '1','1','1059.52', '1','1','1059.52', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091305.0','1044453.0','4', '3','2','4709.84', '3','2','4709.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005026.0','1018886.0','1', '1','1','100.6', '1','1','100.6', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093290.0','1044453.0','1', '1','1','677.82', '1','1','522.72', '1','1','155.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007262.0','1018886.0','1', '1','1','2816.92', '1','1','2816.92', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095526.0','1044453.0','7', '5','5','6913.6', '5','5','6529.59', '1','1','384.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004987.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093251.0','1044453.0','2', '2','2','1737.35', '2','2','1737.35', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003196.0','1018886.0','6', '4','2','937.07', '4','2','937.07', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091460.0','1044453.0','2', '2','1','263.12', '2','1','263.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002987.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091251.0','1044453.0','1', '1','1','2224.04', '1','1','940.06', '1','1','1283.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002955.0','1018886.0','13', '13','5','10291.77', '13','4','10072.43', '8','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091219.0','1044453.0','1', '1','1','3158.52', '1','1','3158.52', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003070.0','1018886.0','1', '1','1','1202.32', '1','1','1202.32', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091334.0','1044453.0','5', '5','4','10003.99', '5','4','5752.84', '3','2','4251.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004898.0','1018886.0','6', '6','6','16388.58', '6','6','14425.99', '3','2','1962.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093162.0','1044453.0','2', '2','2','286.11', '2','1','110.54', '1','1','175.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003027.0','1018886.0','15', '13','13','34246.42', '13','11','32644.88', '8','3','1601.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091291.0','1044453.0','1', '1','1','346.21', '1','1','346.21', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005009.0','1018886.0','13', '10','3','3335.79', '8','1','2004.56', '6','3','1331.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093273.0','1044453.0','13', '9','6','16629.47', '9','6','16629.47', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003003.0','1018886.0','5', '5','4','6299.57', '5','4','5296.51', '2','2','1003.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091267.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002979.0','1018886.0','1', '1','1','1887.73', '1','1','1712.16', '1','1','175.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091243.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003209.0','1018886.0','2', '2','1','3386.24', '2','1','3386.24', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091473.0','1044453.0','100', '88','77','512297.37', '85','74','269501.87', '59','31','242795.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002962.0','1018886.0','145', '136','68','133632.7', '135','40','80361.9', '73','46','53270.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091226.0','1044453.0','1', '1','1','1960.08', '1','1','1804.98', '1','1','155.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005094.0','1018886.0','1', '1','1','460.84', '1','1','460.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093358.0','1044453.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004863.0','1018886.0','5', '3','1','670.88', '3','1','670.88', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093127.0','1044453.0','52', '48','18','31872.35', '47','12','29665.54', '26','7','2206.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005072.0','1018886.0','49', '42','27','86961.93', '39','26','79395.59', '21','7','7566.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093336.0','1044453.0','17', '17','13','42200.39', '16','12','36264.32', '12','5','5936.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005002.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093266.0','1044453.0','1', '1','1','1300.0', '1','1','1300.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005017.0','1018886.0','1', '1','1','5197.87', '1','1','5197.87', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093281.0','1044453.0','2', '2','2','2453.87', '2','2','2278.3', '1','1','175.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005065.0','1018886.0','3', '2','1','1022.0', '2','1','1022.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093329.0','1044453.0','1', '1','1','1180.42', '1','1','815.3', '1','1','365.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005118.0','1018886.0','2', '2','2','1301.3', '2','2','1072.39', '1','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093382.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004940.0','1018886.0','8', '7','3','7776.36', '5','2','1856.74', '3','2','5919.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093204.0','1044453.0','4', '4','1','775.4', '4','1','775.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005148.0','1018886.0','1', '1','1','900.67', '1','1','900.67', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093412.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005176.0','1018886.0','1', '1','1','609.35', '1','1','609.35', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093440.0','1044453.0','70', '63','45','64994.87', '62','44','61096.51', '33','10','3898.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002949.0','1018886.0','3', '1','1','2116.24', '1','1','2116.24', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091213.0','1044453.0','2', '2','2','2458.76', '2','2','2239.42', '1','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004888.0','1018886.0','3', '3','2','3456.34', '3','2','3456.34', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093152.0','1044453.0','1', '1','1','684.49', '1','1','684.49', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003169.0','1018886.0','1', '1','1','255.5', '1','1','255.5', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091433.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005047.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093311.0','1044453.0','7', '6','6','8486.73', '6','5','7176.53', '4','2','1310.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005120.0','1018886.0','8', '6','3','17802.58', '6','1','2970.0', '5','3','14832.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093384.0','1044453.0','7', '7','4','11435.63', '7','4','10159.73', '3','1','1275.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007263.0','1018886.0','33', '27','22','75196.95', '26','22','68746.92', '15','6','6450.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095527.0','1044453.0','1', '1','1','4747.98', '1','1','4190.95', '1','1','557.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002960.0','1018886.0','2', '2','1','442.9', '2','1','442.9', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091224.0','1044453.0','1', '1','1','1691.84', '1','1','1691.84', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003193.0','1018886.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091457.0','1044453.0','1', '1','1','5200.0', '1','1','5200.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004899.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093163.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005087.0','1018886.0','1', '1','1','1142.46', '1','1','1142.46', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093351.0','1044453.0','1', '1','1','578.35', '1','1','578.35', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004971.0','1018886.0','4', '4','4','14043.84', '4','2','6128.26', '4','4','7915.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093235.0','1044453.0','10', '9','6','13437.96', '9','6','13086.82', '4','2','351.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002999.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091263.0','1044453.0','11', '9','6','9469.69', '9','6','8205.58', '4','2','1264.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005107.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093371.0','1044453.0','2', '1','1','713.31', '1','1','713.31', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003241.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091505.0','1044453.0','6', '4','3','1679.26', '4','2','1537.21', '2','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003143.0','1018886.0','13', '10','5','6653.55', '10','5','5605.77', '3','1','1047.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091407.0','1044453.0','4', '4','4','8275.33', '4','4','8275.33', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003118.0','1018886.0','23', '21','17','71979.44', '21','14','58054.18', '15','7','13925.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091382.0','1044453.0','2', '2','1','784.0', '2','1','784.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000107.0','1018886.0','1', '1','1','630.9', '1','1','630.9', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088371.0','1044453.0','11', '8','6','16397.68', '8','6','16397.68', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007264.0','1018886.0','28', '26','8','6838.05', '25','8','6838.05', '12','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095528.0','1044453.0','1', '1','1','294.12', '1','1','294.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003031.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091295.0','1044453.0','2', '2','1','175.57', '2','0','0.0', '2','1','175.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003078.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091342.0','1044453.0','13', '11','9','19471.48', '11','9','18835.83', '3','2','635.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007265.0','1018886.0','113', '102','82','355297.13', '101','79','275039.15', '64','38','80257.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095529.0','1044453.0','4', '4','4','4814.7', '4','4','4124.58', '4','3','690.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000030.0','1018886.0','9', '7','5','8659.86', '7','5','8659.86', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088294.0','1044453.0','5', '5','1','1694.18', '5','1','1694.18', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000138.0','1018886.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088402.0','1044453.0','1', '1','1','3602.93', '1','1','3602.93', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007266.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095530.0','1044453.0','37', '31','25','97931.36', '30','23','49743.31', '19','5','48188.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007267.0','1018886.0','14', '14','8','21128.8', '14','6','20146.48', '11','5','982.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095531.0','1044453.0','1', '1','1','2355.79', '1','1','2355.79', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003301.0','1018886.0','1', '1','1','4184.72', '1','1','3334.23', '1','1','850.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091565.0','1044453.0','3', '2','1','1821.2', '1','1','1821.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005263.0','1018886.0','1', '1','1','1721.49', '1','1','1721.49', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093527.0','1044453.0','2', '2','2','4435.78', '2','2','4435.78', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003083.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091347.0','1044453.0','2', '1','1','746.2', '1','1','746.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003375.0','1018886.0','15', '14','13','34145.61', '14','13','26266.95', '12','5','7878.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091639.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003266.0','1018886.0','1', '1','1','390.0', '1','1','390.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091530.0','1044453.0','39', '31','23','47909.92', '31','22','47053.87', '9','4','856.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007268.0','1018886.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095532.0','1044453.0','4', '4','3','17673.66', '4','3','9453.26', '1','1','8220.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000136.0','1018886.0','1', '1','1','4763.72', '1','1','1020.0', '1','1','3743.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088400.0','1044453.0','26', '18','15','49929.49', '18','15','33186.0', '8','7','16743.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007269.0','1018886.0','4', '3','3','3038.86', '3','3','3038.86', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095533.0','1044453.0','18', '17','10','28011.17', '16','8','24787.16', '8','5','3224.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004891.0','1018886.0','6', '5','3','3389.86', '4','3','3159.82', '3','1','230.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093155.0','1044453.0','1', '1','1','279.15', '1','1','279.15', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007270.0','1018886.0','5', '4','3','9912.72', '4','3','9912.72', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095534.0','1044453.0','1', '1','1','369.17', '1','1','193.6', '1','1','175.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005032.0','1018886.0','2', '2','2','3426.34', '2','2','2161.37', '2','1','1264.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093296.0','1044453.0','7', '5','5','8718.77', '5','5','8543.2', '4','1','175.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007271.0','1018886.0','4', '4','4','9184.0', '4','4','8981.87', '3','1','202.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095535.0','1044453.0','3', '3','3','3903.09', '3','3','3903.09', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004932.0','1018886.0','33', '27','17','36808.16', '25','15','34554.24', '14','4','2253.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093196.0','1044453.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007272.0','1018886.0','2', '2','2','2825.35', '2','2','2825.35', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095536.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005162.0','1018886.0','28', '27','16','22314.32', '26','16','21498.25', '13','4','816.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093426.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007273.0','1018886.0','11', '8','5','12084.6', '8','5','11756.48', '4','1','328.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095537.0','1044453.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002945.0','1018886.0','7', '5','4','2995.17', '4','4','2995.17', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091209.0','1044453.0','3', '3','3','4966.83', '3','3','4561.22', '3','2','405.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007274.0','1018886.0','3', '3','1','4615.21', '3','1','4460.11', '2','1','155.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095538.0','1044453.0','1', '1','1','318.85', '1','1','318.85', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003039.0','1018886.0','41', '29','19','54097.53', '29','19','51840.04', '8','2','2257.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091303.0','1044453.0','10', '9','3','6944.54', '9','2','5941.37', '3','1','1003.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007275.0','1018886.0','1', '1','1','2495.68', '1','1','2320.11', '1','1','175.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095539.0','1044453.0','2', '2','2','540.69', '2','0','0.0', '2','2','540.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003144.0','1018886.0','3', '2','2','6047.31', '1','1','990.0', '2','2','5057.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091408.0','1044453.0','54', '46','32','68829.21', '46','26','57505.66', '26','14','11323.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003139.0','1018886.0','2', '2','2','3190.03', '2','2','2959.99', '1','1','230.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091403.0','1044453.0','264', '241','196','381214.59', '239','175','325354.86', '137','82','55859.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005174.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093438.0','1044453.0','10', '8','6','10695.36', '8','5','10300.86', '2','2','394.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003123.0','1018886.0','3', '3','3','4125.85', '3','3','4058.95', '1','1','66.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091387.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005057.0','1018886.0','1', '1','1','1611.39', '1','1','1611.39', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093321.0','1044453.0','1', '1','1','1571.36', '1','1','1571.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2000134.0','1018886.0','4', '2','2','4624.74', '2','2','4624.74', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2088398.0','1044453.0','7', '6','3','2347.78', '6','3','2347.78', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004953.0','1018886.0','9', '6','5','8157.89', '6','5','6733.69', '3','2','1424.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093217.0','1044453.0','1', '1','1','7211.03', '1','1','3306.02', '1','1','3905.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002975.0','1018886.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091239.0','1044453.0','3', '2','1','1750.06', '2','1','1750.06', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005069.0','1018886.0','5', '5','3','2503.2', '3','0','0.0', '4','3','2503.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093333.0','1044453.0','3', '2','2','2298.0', '2','2','2298.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003076.0','1018886.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091340.0','1044453.0','8', '6','4','1935.46', '6','4','1935.46', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002952.0','1018886.0','13', '11','10','44085.27', '11','10','43943.22', '2','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091216.0','1044453.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007276.0','1018886.0','23', '22','18','33652.82', '22','17','33103.69', '10','3','549.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095540.0','1044453.0','13', '5','2','1332.05', '5','1','1190.0', '1','1','142.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002982.0','1018886.0','1', '1','1','901.01', '1','1','901.01', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091246.0','1044453.0','4', '3','2','2543.49', '3','1','1746.0', '1','1','797.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007277.0','1018886.0','1', '1','1','2265.16', '1','1','2265.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095541.0','1044453.0','2', '2','2','5977.33', '2','2','5977.33', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003156.0','1018886.0','4', '4','2','1875.01', '4','2','1875.01', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091420.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005403.0','1018886.0','6', '5','5','5256.11', '5','5','3792.65', '2','1','1463.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093667.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007278.0','1018886.0','5', '4','1','3653.41', '4','1','3653.41', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095542.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003258.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091522.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007279.0','1018886.0','2', '2','1','1835.84', '2','1','1835.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095543.0','1044453.0','1', '1','1','385.18', '1','1','385.18', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003243.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091507.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007280.0','1018886.0','2', '2','1','2173.0', '2','1','2173.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095544.0','1044453.0','2', '2','2','4024.16', '2','2','4024.16', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007281.0','1018886.0','96', '84','70','344274.77', '81','61','150138.99', '59','44','194135.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095545.0','1044453.0','5', '5','5','6576.25', '5','5','6576.25', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000098.0','1018886.0','22', '18','15','29338.76', '18','15','26589.57', '6','2','2749.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088362.0','1044453.0','7', '7','2','1257.96', '7','2','1257.96', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003064.0','1018886.0','5', '3','3','10269.4', '3','3','10269.4', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091328.0','1044453.0','1', '1','1','230.04', '1','0','0.0', '1','1','230.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005317.0','1018886.0','1', '1','1','971.97', '1','1','971.97', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093581.0','1044453.0','14', '11','6','10616.35', '10','5','7968.72', '8','3','2647.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007282.0','1018886.0','21', '20','16','24668.41', '20','10','22806.94', '8','7','1861.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095546.0','1044453.0','10', '10','4','9901.91', '9','4','8965.58', '4','1','936.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003377.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091641.0','1044453.0','1', '1','1','1492.67', '1','1','1492.67', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003264.0','1018886.0','48', '40','33','59530.42', '39','30','51007.69', '17','8','8522.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091528.0','1044453.0','7', '6','4','8901.76', '6','4','8329.85', '2','1','571.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003557.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091821.0','1044453.0','46', '43','33','87590.22', '43','33','71032.76', '10','3','16557.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003321.0','1018886.0','1', '1','1','108.0', '1','1','108.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091585.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007283.0','1018886.0','4', '4','4','6635.02', '4','4','5867.0', '3','3','768.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095547.0','1044453.0','120', '106','81','406534.47', '102','66','212819.61', '69','39','193714.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007284.0','1018886.0','4', '4','2','5958.9', '4','2','5958.9', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095548.0','1044453.0','3', '3','3','3812.63', '3','3','3357.77', '2','1','454.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007285.0','1018886.0','1', '1','1','1173.95', '1','1','768.34', '1','1','405.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095549.0','1044453.0','3', '3','1','3439.21', '3','1','3439.21', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007286.0','1018886.0','4', '3','2','3208.04', '3','2','3208.04', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095550.0','1044453.0','12', '11','10','12553.89', '11','10','11450.97', '6','3','1102.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000072.0','1018886.0','24', '24','19','67836.93', '24','19','58967.39', '10','5','8869.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088336.0','1044453.0','20', '16','11','15646.83', '15','10','13837.16', '7','3','1809.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007287.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095551.0','1044453.0','6', '4','3','17969.14', '4','2','11440.0', '3','2','6529.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007288.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095552.0','1044453.0','32', '21','11','28692.33', '21','10','28204.33', '6','2','488.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007289.0','1018886.0','1', '1','1','951.56', '1','1','951.56', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095553.0','1044453.0','1', '1','1','1228.57', '1','1','1228.57', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007290.0','1018886.0','12', '12','11','9378.4', '7','0','0.0', '12','11','9378.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095554.0','1044453.0','4', '3','2','1059.55', '3','2','1059.55', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007291.0','1018886.0','8', '6','5','5174.65', '6','5','4878.98', '3','1','295.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095555.0','1044453.0','36', '33','24','36251.87', '33','24','34763.83', '16','7','1488.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007292.0','1018886.0','79', '70','57','186674.7', '70','57','167781.66', '31','11','18893.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095556.0','1044453.0','2', '2','2','8561.32', '2','2','8561.32', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007293.0','1018886.0','6', '6','2','870.19', '5','2','650.85', '3','1','219.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095557.0','1044453.0','103', '102','94','475572.9', '102','92','233402.59', '96','88','242170.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007294.0','1018886.0','5', '4','2','971.75', '4','2','971.75', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095558.0','1044453.0','14', '13','12','46969.9', '13','12','43011.07', '7','2','3958.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007295.0','1018886.0','8', '7','6','7786.97', '7','6','7786.97', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095559.0','1044453.0','3', '3','3','3883.02', '3','3','3883.02', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007296.0','1018886.0','44', '39','33','65676.13', '39','31','59707.95', '24','11','5968.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095560.0','1044453.0','3', '2','1','1004.98', '2','1','1004.98', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007297.0','1018886.0','2', '1','1','227.23', '1','1','227.23', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095561.0','1044453.0','124', '119','65','98494.6', '118','64','89343.0', '55','13','9151.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2002959.0','1018886.0','4', '2','2','5919.26', '2','2','5919.26', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091223.0','1044453.0','49', '46','31','57856.73', '45','29','53132.09', '25','7','4724.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007298.0','1018886.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095562.0','1044453.0','13', '10','8','14017.58', '10','8','13140.08', '5','2','877.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007299.0','1018886.0','3', '3','1','1134.86', '3','1','1134.86', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095563.0','1044453.0','1', '1','1','699.87', '1','1','699.87', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007300.0','1018886.0','13', '10','7','15862.84', '10','7','15862.84', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095564.0','1044453.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007301.0','1018886.0','2', '2','1','230.04', '2','0','0.0', '1','1','230.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095565.0','1044453.0','1', '1','1','1454.0', '1','1','1454.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007302.0','1018886.0','40', '39','20','25788.68', '37','12','15321.8', '23','12','10466.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095566.0','1044453.0','49', '49','22','55165.52', '48','16','38129.45', '31','8','17036.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002989.0','1018886.0','1', '1','1','846.76', '1','1','846.76', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091253.0','1044453.0','52', '49','32','76649.16', '48','24','39541.84', '34','19','37107.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007303.0','1018886.0','1', '1','1','2720.36', '1','1','2720.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095567.0','1044453.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003229.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091493.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007304.0','1018886.0','7', '7','3','10370.67', '7','2','6302.08', '4','3','4068.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095568.0','1044453.0','1', '1','1','175.57', '1','0','0.0', '1','1','175.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003087.0','1018886.0','2', '1','1','4624.49', '1','1','4624.49', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091351.0','1044453.0','1', '1','1','1540.88', '1','1','1540.88', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2000160.0','1018886.0','1', '1','1','1581.0', '1','1','1581.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2088424.0','1044453.0','2', '2','1','2363.02', '2','1','2132.98', '1','1','230.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003594.0','1018886.0','12', '8','5','9101.2', '8','5','7857.66', '4','2','1243.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091858.0','1044453.0','1', '1','1','4353.03', '1','1','3942.99', '1','1','410.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007305.0','1018886.0','9', '6','4','13117.9', '6','4','12444.38', '4','2','673.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095569.0','1044453.0','1', '1','1','112.2', '1','1','112.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003062.0','1018886.0','9', '9','9','23403.62', '9','9','23075.5', '4','1','328.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091326.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003129.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091393.0','1044453.0','8', '7','6','7900.91', '6','6','7672.0', '3','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003185.0','1018886.0','3', '3','2','4776.88', '3','1','1074.79', '2','2','3702.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091449.0','1044453.0','17', '15','10','21161.56', '15','10','21161.56', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005394.0','1018886.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093658.0','1044453.0','2', '2','2','3463.31', '2','2','3463.31', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005408.0','1018886.0','4', '4','2','6270.19', '3','2','6270.19', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093672.0','1044453.0','7', '5','3','8255.21', '5','3','8255.21', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003599.0','1018886.0','2', '2','2','698.0', '2','2','698.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091863.0','1044453.0','2', '2','1','509.86', '2','1','509.86', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003398.0','1018886.0','5', '4','4','12822.37', '4','4','12283.26', '3','2','539.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091662.0','1044453.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003307.0','1018886.0','2', '1','1','1349.12', '1','1','1349.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091571.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003210.0','1018886.0','3', '3','2','4114.44', '3','2','4114.44', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091474.0','1044453.0','7', '5','1','549.09', '4','1','549.09', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007306.0','1018886.0','5', '4','1','59.22', '4','1','59.22', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095570.0','1044453.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007307.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095571.0','1044453.0','1', '1','1','151.29', '1','1','151.29', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007308.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095572.0','1044453.0','66', '53','39','138363.64', '53','37','105189.34', '26','13','33174.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007309.0','1018886.0','1', '1','1','2088.01', '1','1','2088.01', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095573.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007310.0','1018886.0','4', '2','1','5200.0', '2','1','5200.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095574.0','1044453.0','1', '1','1','525.53', '1','1','525.53', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007311.0','1018886.0','15', '12','10','83263.63', '12','10','33464.09', '6','2','49799.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095575.0','1044453.0','5', '4','4','3685.46', '3','3','3375.26', '2','2','310.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007312.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095576.0','1044453.0','150', '135','101','355990.81', '131','98','231131.2', '77','31','124859.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007313.0','1018886.0','7', '6','4','10892.07', '6','4','10892.07', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095577.0','1044453.0','4', '4','2','4956.54', '4','2','4801.44', '2','1','155.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007314.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095578.0','1044453.0','4', '4','4','8070.85', '4','4','8070.85', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007315.0','1018886.0','1', '1','1','927.16', '1','1','927.16', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095579.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003405.0','1018886.0','1', '1','1','460.72', '1','1','460.72', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091669.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007316.0','1018886.0','8', '6','3','1533.35', '6','2','1378.25', '2','1','155.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095580.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005294.0','1018886.0','2', '2','1','1824.47', '2','1','1824.47', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093558.0','1044453.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003046.0','1018886.0','26', '22','19','28680.45', '22','19','28680.45', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091310.0','1044453.0','3', '2','2','15620.84', '2','2','6076.0', '2','1','9544.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007317.0','1018886.0','8', '6','4','8428.57', '6','4','8044.56', '1','1','384.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095581.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003260.0','1018886.0','11', '11','5','5087.21', '11','4','4858.3', '3','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091524.0','1044453.0','1', '1','1','1027.28', '1','1','1027.28', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003255.0','1018886.0','7', '3','2','5176.4', '3','2','5176.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091519.0','1044453.0','42', '30','22','57703.96', '29','20','52994.4', '14','6','4709.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007318.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095582.0','1044453.0','2', '2','2','6019.18', '2','2','6019.18', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003028.0','1018886.0','1', '1','1','1028.16', '1','1','1028.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091292.0','1044453.0','2', '1','1','776.98', '1','1','776.98', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003149.0','1018886.0','25', '20','17','93296.51', '20','15','50563.37', '14','9','42733.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091413.0','1044453.0','8', '6','6','9221.43', '6','6','8837.42', '3','2','384.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005245.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093509.0','1044453.0','3', '2','1','1252.55', '2','1','1252.55', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003550.0','1018886.0','5', '5','3','10146.46', '5','3','7823.7', '4','3','2322.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091814.0','1044453.0','6', '6','5','20871.82', '6','5','17143.23', '2','1','3728.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007319.0','1018886.0','4', '4','2','1253.25', '4','2','1253.25', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095583.0','1044453.0','1', '1','1','2896.09', '1','1','2896.09', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005582.0','1018886.0','1', '1','1','1602.44', '1','1','1602.44', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093846.0','1044453.0','2', '2','2','3348.48', '2','2','3348.48', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000184.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088448.0','1044453.0','16', '15','15','161779.11', '15','12','105188.19', '9','8','56590.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003438.0','1018886.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091702.0','1044453.0','3', '3','3','3937.38', '2','2','2307.93', '1','1','1629.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000175.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088439.0','1044453.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007320.0','1018886.0','36', '27','17','44582.33', '27','17','41410.93', '7','2','3171.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095584.0','1044453.0','52', '51','37','65578.86', '51','36','62821.03', '24','10','2757.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003167.0','1018886.0','6', '4','4','6832.71', '4','4','6832.71', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091431.0','1044453.0','3', '3','1','4713.45', '3','1','4713.45', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007321.0','1018886.0','2', '2','2','6167.54', '2','2','6167.54', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095585.0','1044453.0','21', '16','12','34218.46', '16','12','34218.46', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005416.0','1018886.0','2', '1','1','337.0', '1','1','337.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093680.0','1044453.0','8', '8','7','18479.04', '8','7','18479.04', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007322.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095586.0','1044453.0','29', '22','18','59743.09', '22','14','36247.22', '14','9','23495.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007323.0','1018886.0','5', '5','3','8662.51', '5','3','8662.51', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095587.0','1044453.0','2', '2','1','6670.0', '2','1','6670.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003122.0','1018886.0','19', '15','14','44078.0', '15','14','40025.69', '3','2','4052.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091386.0','1044453.0','1', '1','1','1270.31', '1','1','1270.31', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007324.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095588.0','1044453.0','3', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007325.0','1018886.0','16', '14','5','8244.43', '6','2','2020.65', '13','5','6223.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095589.0','1044453.0','6', '5','5','12147.62', '5','5','10847.57', '2','2','1300.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007326.0','1018886.0','80', '73','32','22710.61', '26','2','270.36', '62','30','22440.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095590.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007327.0','1018886.0','75', '68','36','36901.45', '48','17','20901.62', '53','21','15999.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095591.0','1044453.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007328.0','1018886.0','3', '2','1','490.18', '1','0','0.0', '2','1','490.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095592.0','1044453.0','94', '89','50','45290.06', '48','12','11231.27', '66','43','34058.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003095.0','1018886.0','101', '82','41','38905.38', '44','7','9052.16', '71','37','29853.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091359.0','1044453.0','5', '5','3','2543.73', '4','0','0.0', '4','3','2543.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007329.0','1018886.0','1', '1','1','1666.68', '1','1','1666.68', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095593.0','1044453.0','115', '114','72','77268.76', '93','31','28862.75', '91','55','48406.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003224.0','1018886.0','857', '749','419','357974.88', '431','88','72370.05', '631','368','285604.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091488.0','1044453.0','185', '153','51','37863.08', '137','39','22677.4', '79','18','15185.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007330.0','1018886.0','1', '1','1','387.0', '1','1','387.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095594.0','1044453.0','92', '87','42','34459.03', '35','0','0.0', '74','42','34459.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007331.0','1018886.0','680', '604','367','318753.79', '299','30','35475.09', '503','348','283278.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095595.0','1044453.0','1', '1','1','445.97', '1','1','445.97', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007332.0','1018886.0','1173', '1130','724','677186.94', '873','129','149519.98', '925','655','527666.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095596.0','1044453.0','354', '279','134','284987.17', '243','98','169318.89', '168','70','115668.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007333.0','1018886.0','2', '2','2','4410.23', '2','1','4181.32', '1','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095597.0','1044453.0','4', '4','4','3284.47', '4','4','3284.47', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007334.0','1018886.0','94', '84','55','53880.19', '59','24','27573.93', '71','41','26306.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095598.0','1044453.0','61', '56','18','12382.45', '28','5','2268.82', '44','13','10113.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003127.0','1018886.0','17', '11','2','1141.8', '9','2','1141.8', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091391.0','1044453.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007335.0','1018886.0','627', '573','170','139053.79', '520','90','74387.56', '491','121','64666.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095599.0','1044453.0','1041', '903','203','142889.13', '745','73','49329.01', '764','147','93560.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003436.0','1018886.0','140', '119','69','59211.25', '47','4','5549.09', '101','67','53662.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091700.0','1044453.0','398', '369','124','80173.97', '346','62','45975.24', '309','77','34198.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005088.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093352.0','1044453.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005399.0','1018886.0','39', '28','15','12652.18', '19','4','1981.5', '23','13','10670.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093663.0','1044453.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007336.0','1018886.0','1', '1','1','160.8', '1','1','160.8', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095600.0','1044453.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003265.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091529.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005183.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093447.0','1044453.0','4', '3','2','1070.0', '3','2','1070.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002986.0','1018886.0','1', '1','1','498.34', '1','1','498.34', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091250.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003463.0','1018886.0','4', '4','1','825.74', '4','0','0.0', '3','1','825.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091727.0','1044453.0','11', '8','6','5005.59', '2','0','0.0', '8','6','5005.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007337.0','1018886.0','4', '2','2','1273.92', '2','2','1273.92', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095601.0','1044453.0','4', '1','1','250.0', '1','1','250.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003032.0','1018886.0','142', '99','48','41020.42', '53','14','12766.22', '76','38','28254.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091296.0','1044453.0','168', '145','60','42551.74', '70','13','5540.5', '120','49','37011.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007338.0','1018886.0','5', '5','2','2262.97', '2','1','1202.24', '5','2','1060.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095602.0','1044453.0','2', '2','2','2971.1', '1','1','1629.93', '2','2','1341.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003053.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091317.0','1044453.0','11', '8','1','796.45', '4','0','0.0', '4','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007339.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095603.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000113.0','1018886.0','215', '200','109','104008.85', '108','34','39644.51', '141','79','64364.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088377.0','1044453.0','112', '108','74','99924.31', '70','36','61539.79', '65','45','38384.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007340.0','1018886.0','1', '1','1','311.5', '1','1','311.5', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095604.0','1044453.0','9', '7','5','6288.51', '7','4','6049.5', '3','1','239.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007341.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095605.0','1044453.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2002964.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091228.0','1044453.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007342.0','1018886.0','249', '230','150','123246.45', '101','10','8300.81', '199','142','114945.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095606.0','1044453.0','2', '2','2','1583.9', '1','0','0.0', '2','2','1583.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2002956.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091220.0','1044453.0','2943', '2792','1580','1574263.01', '2240','321','474871.21', '1982','1375','1099391.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003548.0','1018886.0','1', '1','1','132.0', '1','1','132.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091812.0','1044453.0','48', '26','11','16311.74', '9','4','10570.48', '21','7','5741.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005273.0','1018886.0','66', '57','53','319836.0', '56','50','198339.77', '35','20','121496.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093537.0','1044453.0','3', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003197.0','1018886.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091461.0','1044453.0','2', '2','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000036.0','1018886.0','9', '5','0','0.0', '2','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088300.0','1044453.0','55', '43','28','127377.0', '43','28','78693.77', '9','8','48683.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000024.0','1018886.0','7', '6','2','1214.83', '6','1','969.74', '6','1','245.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088288.0','1044453.0','9', '8','5','3578.27', '4','1','488.0', '5','4','3090.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007343.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095607.0','1044453.0','321', '287','68','35666.64', '254','22','13369.51', '249','55','22297.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003373.0','1018886.0','4', '4','1','490.18', '4','0','0.0', '3','1','490.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091637.0','1044453.0','2', '2','1','743.01', '2','1','504.0', '1','1','239.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005262.0','1018886.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093526.0','1044453.0','7', '5','1','21313.88', '5','1','13184.0', '1','1','8129.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007344.0','1018886.0','183', '168','115','96535.69', '60','5','6128.32', '154','112','90407.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095608.0','1044453.0','439', '398','260','217842.14', '259','16','11197.96', '313','247','206644.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003061.0','1018886.0','9', '6','5','11973.94', '6','5','11818.84', '1','1','155.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091325.0','1044453.0','117', '108','55','77348.44', '108','34','41907.05', '68','32','35441.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003188.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091452.0','1044453.0','48', '42','18','13534.9', '26','2','1035.23', '33','16','12499.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005289.0','1018886.0','1626', '1545','844','1295728.38', '1372','437','776688.68', '1144','567','519039.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093553.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007345.0','1018886.0','242', '209','135','127808.85', '156','81','73595.22', '163','85','54213.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095609.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003236.0','1018886.0','5', '4','4','5817.04', '4','4','5588.13', '1','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091500.0','1044453.0','6', '4','3','2310.46', '2','2','1474.49', '3','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007346.0','1018886.0','12', '8','2','1102.37', '5','1','305.92', '5','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095610.0','1044453.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007347.0','1018886.0','1', '1','1','728.32', '1','1','728.32', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095611.0','1044453.0','1298', '1205','800','674778.14', '543','99','92741.89', '1040','728','582036.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007348.0','1018886.0','43', '33','15','10867.2', '20','6','3954.0', '28','12','6913.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095612.0','1044453.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000057.0','1018886.0','254', '223','94','74269.29', '139','31','22545.18', '183','68','51724.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088321.0','1044453.0','33', '32','12','9209.68', '22','2','1161.28', '23','11','8048.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007349.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095613.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007350.0','1018886.0','1744', '1632','956','819616.55', '1089','177','145514.33', '1351','847','674102.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095614.0','1044453.0','3', '2','2','2191.14', '2','2','2191.14', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007351.0','1018886.0','292', '210','92','153121.44', '196','78','98042.19', '106','37','55079.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095615.0','1044453.0','28', '20','17','14305.34', '4','0','0.0', '20','17','14305.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003220.0','1018886.0','17', '16','11','12609.0', '10','3','4722.97', '15','10','7886.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091484.0','1044453.0','16', '12','5','6054.63', '9','2','1113.94', '6','3','4940.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003184.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091448.0','1044453.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007352.0','1018886.0','56', '40','21','92141.2', '40','21','81867.97', '10','1','10273.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095616.0','1044453.0','21', '17','15','47650.06', '17','14','39502.97', '5','3','8147.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005320.0','1018886.0','3', '3','1','626.35', '2','1','626.35', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093584.0','1044453.0','2', '1','1','229.93', '1','1','229.93', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003084.0','1018886.0','4', '4','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091348.0','1044453.0','28', '24','11','7360.31', '8','2','164.07', '21','9','7196.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003162.0','1018886.0','104', '86','44','69186.37', '60','26','43491.74', '52','23','25694.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091426.0','1044453.0','68', '59','31','26153.92', '45','12','8104.1', '51','28','18049.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007353.0','1018886.0','1', '1','1','796.45', '0','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095617.0','1044453.0','13', '11','1','150.0', '9','0','0.0', '9','1','150.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003189.0','1018886.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091453.0','1044453.0','68', '58','24','30414.56', '51','13','14249.21', '47','13','16165.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007354.0','1018886.0','2', '2','2','1671.94', '1','0','0.0', '2','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095618.0','1044453.0','8', '5','2','2307.61', '5','2','2080.81', '4','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003582.0','1018886.0','180', '164','70','72464.37', '160','37','37343.96', '84','43','35120.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091846.0','1044453.0','1008', '896','516','445324.12', '449','69','73260.63', '751','471','372063.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003434.0','1018886.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091698.0','1044453.0','12', '5','4','4783.54', '5','3','3424.2', '5','2','1359.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007355.0','1018886.0','340', '302','183','161962.03', '105','9','18624.64', '258','175','143337.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095619.0','1044453.0','887', '799','481','417075.71', '410','59','63063.13', '665','440','354012.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005476.0','1018886.0','1949', '1883','1222','1232008.97', '1452','262','364126.54', '1484','1068','867882.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093740.0','1044453.0','3491', '3314','2016','2011708.73', '2551','450','567291.99', '2597','1747','1444416.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007356.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095620.0','1044453.0','24', '23','11','8581.64', '8','2','1057.91', '20','9','7523.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007357.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095621.0','1044453.0','93', '54','21','22559.49', '41','9','11032.53', '27','15','11526.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003409.0','1018886.0','1', '1','1','796.45', '0','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091673.0','1044453.0','4', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003269.0','1018886.0','4', '4','2','1012.53', '4','0','0.0', '4','2','1012.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091533.0','1044453.0','159', '137','53','37621.64', '61','4','1439.74', '111','50','36181.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003154.0','1018886.0','21', '18','12','10697.68', '8','4','5566.79', '14','8','5130.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091418.0','1044453.0','109', '95','27','33056.41', '72','12','20463.62', '72','18','12592.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005274.0','1018886.0','630', '583','213','167651.36', '519','106','92359.42', '492','141','75291.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093538.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007358.0','1018886.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095622.0','1044453.0','36', '31','18','43410.48', '29','18','40936.13', '15','4','2474.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007359.0','1018886.0','2', '2','1','100.2', '2','1','100.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095623.0','1044453.0','7', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003165.0','1018886.0','57', '35','11','14748.82', '19','4','8447.51', '23','8','6301.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091429.0','1044453.0','64', '41','17','54323.15', '40','16','34120.06', '22','9','20203.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007360.0','1018886.0','30', '24','12','12536.53', '20','6','7841.33', '21','6','4695.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095624.0','1044453.0','4', '4','1','835.97', '2','0','0.0', '4','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007361.0','1018886.0','334', '282','66','49992.51', '221','27','15044.98', '242','46','34947.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095625.0','1044453.0','1', '1','1','762.14', '0','0','0.0', '1','1','762.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000114.0','1018886.0','95', '84','53','39530.34', '30','7','5015.26', '77','48','34515.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088378.0','1044453.0','10', '7','5','9486.22', '7','5','9486.22', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007362.0','1018886.0','69', '55','28','29637.55', '34','5','9888.88', '36','24','19748.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095626.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007363.0','1018886.0','669', '601','283','248176.44', '465','96','76387.21', '480','222','171789.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095627.0','1044453.0','14', '13','7','16115.74', '13','7','16115.74', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007364.0','1018886.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095628.0','1044453.0','52', '38','17','15056.84', '24','4','5395.56', '22','14','9661.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007365.0','1018886.0','372', '304','193','186001.19', '175','31','41007.78', '244','172','144993.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095629.0','1044453.0','5', '4','3','1766.04', '4','2','969.59', '2','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007366.0','1018886.0','11', '9','5','4649.11', '6','1','333.99', '7','5','4315.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095630.0','1044453.0','516', '467','101','57966.02', '426','41','25887.12', '416','79','32078.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007367.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095631.0','1044453.0','98', '84','36','29735.1', '72','22','19309.83', '60','17','10425.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007368.0','1018886.0','70', '54','33','27477.39', '27','3','3184.51', '42','30','24292.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095632.0','1044453.0','26', '26','19','13921.73', '13','3','2018.87', '20','16','11902.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007369.0','1018886.0','6', '5','2','6803.76', '5','2','6803.76', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095633.0','1044453.0','286', '274','196','272866.05', '231','79','159117.68', '208','140','113748.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007370.0','1018886.0','61', '49','24','17685.27', '33','11','5649.05', '34','17','12036.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095634.0','1044453.0','213', '146','48','65306.74', '134','37','43810.56', '73','18','21496.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005175.0','1018886.0','14', '14','7','8613.6', '11','4','3668.39', '12','6','4945.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093439.0','1044453.0','55', '52','25','22179.46', '44','15','12480.66', '27','13','9698.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007371.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095635.0','1044453.0','2', '2','2','1898.74', '1','0','0.0', '2','2','1898.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2004866.0','1018886.0','2', '2','1','157.73', '2','0','0.0', '1','1','157.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093130.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007372.0','1018886.0','1', '1','1','3536.2', '1','1','797.0', '1','1','2739.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095636.0','1044453.0','126', '119','56','45416.46', '71','4','1677.08', '78','53','43739.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005182.0','1018886.0','1571', '1504','1047','1014030.3', '877','165','232609.85', '1304','957','781420.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093446.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007373.0','1018886.0','914', '848','559','569590.18', '510','112','173594.31', '728','490','395995.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095637.0','1044453.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007374.0','1018886.0','4', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095638.0','1044453.0','11', '8','6','16019.39', '8','6','16019.39', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2004910.0','1018886.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093174.0','1044453.0','6', '6','3','3093.86', '6','1','507.0', '4','3','2586.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003018.0','1018886.0','449', '386','106','88268.01', '338','49','36079.85', '311','78','52188.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091282.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005042.0','1018886.0','1', '1','1','488.0', '1','1','488.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093306.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003116.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091380.0','1044453.0','11', '9','8','23942.61', '9','8','23347.15', '1','1','595.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005021.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093285.0','1044453.0','285', '190','84','200521.09', '171','73','132721.26', '94','29','67799.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003160.0','1018886.0','252', '234','141','122827.96', '88','11','15617.51', '208','133','107210.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091424.0','1044453.0','2354', '2208','1301','1293846.33', '1804','237','317013.29', '1637','1146','976833.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003217.0','1018886.0','12', '9','6','14163.01', '9','6','8994.33', '6','4','5168.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091481.0','1044453.0','75', '61','32','36266.78', '34','4','13749.31', '44','29','22517.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000135.0','1018886.0','23', '18','15','44084.64', '18','14','26733.57', '9','5','17351.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088399.0','1044453.0','6', '2','1','2429.37', '2','1','2126.77', '1','1','302.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003315.0','1018886.0','3', '2','1','796.45', '1','0','0.0', '2','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091579.0','1044453.0','42', '29','16','11789.97', '17','9','5873.93', '21','9','5916.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000138.0','1018886.0','4', '4','4','4413.48', '2','2','973.69', '4','3','3439.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088402.0','1044453.0','40', '33','23','15945.08', '15','4','1246.58', '28','20','14698.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005397.0','1018886.0','367', '295','133','105051.05', '203','44','29517.89', '250','110','75533.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093661.0','1044453.0','108', '94','48','36698.4', '34','3','918.43', '81','47','35779.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003454.0','1018886.0','219', '190','83','66116.92', '103','15','8347.75', '166','70','57769.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091718.0','1044453.0','10', '8','5','3260.89', '7','4','2424.92', '5','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003186.0','1018886.0','24', '20','11','13901.67', '13','5','8049.88', '12','7','5851.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091450.0','1044453.0','5', '5','4','7209.84', '5','3','7087.81', '3','1','122.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003411.0','1018886.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091675.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007375.0','1018886.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095639.0','1044453.0','2', '2','1','2315.96', '2','1','2087.54', '1','1','228.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000026.0','1018886.0','3', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088290.0','1044453.0','105', '100','68','61020.31', '51','16','14495.91', '86','56','46524.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007376.0','1018886.0','1', '1','1','507.0', '1','1','507.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095640.0','1044453.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2002973.0','1018886.0','78', '68','43','118468.84', '63','36','85919.31', '33','17','32549.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091237.0','1044453.0','95', '73','45','250274.27', '69','42','119511.86', '44','28','130762.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003040.0','1018886.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091304.0','1044453.0','119', '75','31','44268.7', '51','9','26529.36', '38','22','17739.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003101.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091365.0','1044453.0','1', '1','1','5428.91', '1','1','5200.0', '1','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003598.0','1018886.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091862.0','1044453.0','6', '5','5','5538.81', '5','5','5248.7', '1','1','290.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000112.0','1018886.0','7', '5','3','9160.41', '5','3','9160.41', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088376.0','1044453.0','2', '2','2','883.65', '2','1','654.74', '1','1','228.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007377.0','1018886.0','1', '1','1','5200.0', '1','1','5200.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095641.0','1044453.0','4', '2','2','4548.65', '2','2','4548.65', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007378.0','1018886.0','4', '3','1','835.97', '0','0','0.0', '3','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095642.0','1044453.0','1', '1','1','150.0', '0','0','0.0', '1','1','150.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007379.0','1018886.0','226', '209','73','460020.54', '204','69','284119.63', '62','30','175900.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095643.0','1044453.0','1', '1','1','1546.8', '1','1','924.18', '1','1','622.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007380.0','1018886.0','1', '1','1','1443.12', '1','1','1443.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095644.0','1044453.0','157', '140','36','22121.99', '120','14','8755.49', '112','27','13366.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007381.0','1018886.0','31', '20','17','36850.71', '19','16','34857.98', '10','5','1992.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095645.0','1044453.0','27', '26','12','13608.6', '24','8','7447.0', '15','4','6161.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007382.0','1018886.0','2', '1','1','5200.0', '1','1','5200.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095646.0','1044453.0','54', '50','28','45784.2', '38','17','37237.54', '23','11','8546.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003066.0','1018886.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091330.0','1044453.0','362', '344','226','288963.05', '260','62','132128.14', '277','180','156834.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007383.0','1018886.0','150', '127','52','37125.34', '72','16','8863.87', '96','42','28261.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095647.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007384.0','1018886.0','490', '474','296','355937.93', '308','116','183640.91', '392','226','172297.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095648.0','1044453.0','263', '245','139','108408.23', '111','15','11099.72', '202','127','97308.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004841.0','1018886.0','144', '118','65','72910.49', '88','43','53406.53', '80','27','19503.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093105.0','1044453.0','3', '3','1','835.97', '2','0','0.0', '3','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2004968.0','1018886.0','26', '21','4','9464.88', '17','3','7607.84', '9','2','1857.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093232.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005011.0','1018886.0','120', '106','48','31684.42', '77','14','7026.09', '76','34','24658.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093275.0','1044453.0','670', '638','363','546806.55', '578','197','336215.45', '443','231','210591.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003045.0','1018886.0','2', '2','2','1878.77', '2','1','816.0', '2','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091309.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003020.0','1018886.0','486', '437','271','224459.79', '276','20','13726.9', '343','257','210732.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091284.0','1044453.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003230.0','1018886.0','2', '1','1','497.0', '1','1','497.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091494.0','1044453.0','2', '2','1','1700.12', '2','1','1700.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000070.0','1018886.0','1', '1','1','14283.92', '1','1','696.0', '1','1','13587.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088334.0','1044453.0','13', '11','3','2629.94', '11','0','0.0', '8','3','2629.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000060.0','1018886.0','27', '17','9','26873.95', '15','8','25202.01', '6','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088324.0','1044453.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007385.0','1018887.0','6', '5','1','93.64', '5','1','93.64', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095649.0','1044454.0','497', '465','283','263320.9', '312','131','129962.67', '372','190','133358.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003109.0','1018887.0','99', '95','55','57379.19', '87','30','27838.14', '65','42','29541.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091373.0','1044454.0','77', '70','45','33750.37', '54','32','20146.0', '48','23','13604.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2005515.0','1018887.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2093779.0','1044454.0','26', '21','10','14737.16', '10','3','2778.64', '15','9','11958.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007386.0','1018887.0','1', '1','1','958.0', '0','0','0.0', '1','1','958.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095650.0','1044454.0','275', '222','65','60280.41', '161','18','13116.1', '170','51','47164.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007387.0','1018887.0','1', '1','1','2281.25', '1','1','2281.25', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095651.0','1044454.0','1', '1','1','751.43', '0','0','0.0', '1','1','751.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007388.0','1018887.0','4', '3','2','5789.26', '3','2','5789.26', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095652.0','1044454.0','22', '21','10','6660.46', '18','9','5515.84', '14','3','1144.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007389.0','1018887.0','28', '23','14','11029.71', '16','5','5435.49', '20','9','5594.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095653.0','1044454.0','2215', '2049','1293','1106426.23', '1347','200','181703.5', '1658','1164','924722.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007390.0','1018887.0','2', '2','1','796.45', '2','0','0.0', '2','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095654.0','1044454.0','1', '1','1','5200.0', '1','1','5200.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007391.0','1018887.0','1', '1','1','488.0', '1','1','488.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095655.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007392.0','1018887.0','1', '1','1','1047.31', '1','1','736.0', '1','1','311.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095656.0','1044454.0','2809', '2704','1694','1980186.81', '2237','564','881894.85', '2056','1335','1098291.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007393.0','1018887.0','17', '14','10','8122.58', '5','2','1527.92', '11','9','6594.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095657.0','1044454.0','1564', '1434','683','640042.47', '1043','240','214635.4', '1163','531','425407.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007394.0','1018887.0','19', '15','3','4244.29', '12','2','3994.29', '8','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095658.0','1044454.0','21', '19','12','23195.57', '18','10','13454.23', '10','3','9741.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007395.0','1018887.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095659.0','1044454.0','7', '5','5','6476.26', '5','4','5863.34', '5','2','612.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007396.0','1018887.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095660.0','1044454.0','11', '8','3','5688.21', '8','3','4852.24', '4','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007397.0','1018887.0','6', '3','1','1852.38', '3','1','757.0', '3','1','1095.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095661.0','1044454.0','4', '4','2','1671.94', '3','0','0.0', '3','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007398.0','1018887.0','243', '228','138','165769.21', '192','63','92130.65', '166','98','73638.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095662.0','1044454.0','2', '2','1','1695.63', '2','1','739.88', '1','1','955.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007399.0','1018887.0','10', '8','1','327.9', '7','0','0.0', '8','1','327.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095663.0','1044454.0','7', '4','4','11572.13', '4','4','11033.02', '3','2','539.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007400.0','1018887.0','326', '282','149','117963.21', '118','21','14789.48', '243','135','103173.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095664.0','1044454.0','13', '11','10','18846.45', '11','10','18846.45', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2000140.0','1018887.0','34', '32','9','6498.05', '17','1','504.0', '20','8','5994.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2088404.0','1044454.0','217', '183','154','2179764.86', '181','148','863249.75', '131','100','1316515.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007401.0','1018887.0','2', '2','1','563.0', '2','1','563.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095665.0','1044454.0','22', '13','2','8312.4', '12','2','8312.4', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007402.0','1018887.0','1', '1','1','250.0', '0','0','0.0', '1','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095666.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007403.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095667.0','1044454.0','1', '1','1','306.09', '1','1','306.09', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007404.0','1018887.0','286', '216','107','270011.32', '199','94','188425.72', '114','41','81585.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095668.0','1044454.0','5', '5','3','1969.97', '4','0','0.0', '4','3','1969.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007405.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095669.0','1044454.0','4', '4','3','3682.38', '4','3','3372.18', '2','2','310.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007406.0','1018887.0','89', '70','26','21108.63', '36','7','6112.06', '51','19','14996.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095670.0','1044454.0','1', '1','1','796.45', '0','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007407.0','1018887.0','120', '105','44','35603.1', '93','27','18954.02', '91','27','16649.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095671.0','1044454.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007408.0','1018887.0','17', '13','6','10258.12', '11','4','8424.97', '8','3','1833.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095672.0','1044454.0','1365', '1249','784','648642.73', '781','89','78607.04', '1019','733','570035.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007409.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095673.0','1044454.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2000185.0','1018887.0','635', '606','365','443788.88', '491','133','207469.35', '443','283','236319.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2088449.0','1044454.0','7', '4','3','6046.57', '4','3','6046.57', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007410.0','1018887.0','7', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095674.0','1044454.0','1', '1','1','25311.39', '1','1','12500.0', '1','1','12811.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007411.0','1018887.0','1', '1','1','3006.1', '1','1','2000.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095675.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007412.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095676.0','1044454.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007413.0','1018887.0','6', '5','4','20652.42', '5','4','14520.0', '2','1','6132.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095677.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007414.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095678.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007415.0','1018887.0','1', '1','1','2791.4', '1','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095679.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007416.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095680.0','1044454.0','5', '4','3','9849.87', '4','3','9745.97', '1','1','103.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007417.0','1018887.0','3', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095681.0','1044454.0','8', '7','1','2000.0', '6','1','2000.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007418.0','1018887.0','2', '2','1','2214.7', '2','1','2000.0', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095682.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007419.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095683.0','1044454.0','8', '8','7','32273.98', '8','7','24183.0', '4','1','8090.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007420.0','1018887.0','1', '1','1','12987.55', '1','1','980.0', '1','1','12007.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095684.0','1044454.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003414.0','1018887.0','44', '37','20','61957.64', '35','16','45747.73', '26','7','16209.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091678.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007421.0','1018887.0','2', '2','1','7416.67', '2','1','2880.0', '2','1','4536.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095685.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007422.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095686.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007423.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095687.0','1044454.0','5', '5','3','6000.0', '5','3','6000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007424.0','1018887.0','21', '20','15','105859.66', '20','15','62037.35', '13','7','43822.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095688.0','1044454.0','8', '7','6','12000.0', '7','6','12000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007425.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095689.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007426.0','1018887.0','188', '167','82','262264.96', '157','71','161978.82', '108','27','100286.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095690.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007427.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095691.0','1044454.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007428.0','1018887.0','1', '1','1','980.0', '1','1','980.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095692.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007429.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095693.0','1044454.0','3', '3','1','2000.0', '3','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007430.0','1018887.0','16', '15','9','37575.11', '14','8','19320.0', '10','3','18255.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095694.0','1044454.0','2', '2','2','3684.89', '2','2','3684.89', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007431.0','1018887.0','5', '5','1','2000.0', '4','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095695.0','1044454.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003256.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091520.0','1044454.0','3', '3','3','6000.0', '3','3','6000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007432.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095696.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007433.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095697.0','1044454.0','27', '25','19','41030.98', '25','19','40315.52', '13','1','715.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007434.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095698.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007435.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095699.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007436.0','1018887.0','24', '22','12','43791.21', '22','12','29550.0', '9','1','14241.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095700.0','1044454.0','2', '2','1','431.9', '2','0','0.0', '1','1','431.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007437.0','1018887.0','25', '23','18','36000.0', '22','18','36000.0', '11','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095701.0','1044454.0','5', '5','3','4184.12', '5','3','4184.12', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007438.0','1018887.0','1', '1','1','12202.56', '1','1','3330.0', '1','1','8872.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095702.0','1044454.0','8', '8','5','37869.37', '8','5','18521.0', '5','3','19348.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007439.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095703.0','1044454.0','1', '1','1','8172.38', '1','1','2000.0', '1','1','6172.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007440.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095704.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007441.0','1018887.0','12', '11','8','47606.81', '11','7','31087.64', '7','3','16519.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095705.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007442.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095706.0','1044454.0','2', '2','1','2440.0', '2','1','2440.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007443.0','1018887.0','1', '1','1','5577.88', '1','1','2980.0', '1','1','2597.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095707.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007444.0','1018887.0','11', '10','7','104499.2', '10','7','65468.6', '8','6','39030.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095708.0','1044454.0','4', '4','2','16568.05', '4','2','5385.14', '4','2','11182.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007445.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095709.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007446.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095710.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007447.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095711.0','1044454.0','13', '12','6','17105.75', '11','5','15715.35', '6','2','1390.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003164.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091428.0','1044454.0','3', '3','3','5269.86', '3','3','5269.86', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007448.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095712.0','1044454.0','10', '10','4','14520.0', '9','4','14520.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2000168.0','1018887.0','3133', '2691','1128','2367188.63', '2412','849','1882709.66', '1573','446','484478.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2088432.0','1044454.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007449.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095713.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2000176.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2088440.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007450.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095714.0','1044454.0','1', '1','1','2791.4', '1','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007451.0','1018887.0','2', '2','1','17231.24', '2','1','9541.19', '1','1','7690.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095715.0','1044454.0','1', '1','1','11835.0', '1','1','11835.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007452.0','1018887.0','1', '1','1','11235.0', '1','1','11235.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095716.0','1044454.0','3', '3','2','4000.0', '3','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007453.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095717.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007454.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095718.0','1044454.0','3', '3','2','4980.0', '3','2','4980.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007455.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095719.0','1044454.0','3', '3','3','6880.0', '3','3','6880.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007456.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095720.0','1044454.0','10', '9','7','41603.82', '9','7','29656.0', '6','2','11947.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007457.0','1018887.0','2', '2','2','5241.4', '2','1','4450.0', '2','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095721.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007458.0','1018887.0','3', '3','3','4794.79', '3','2','4000.0', '2','1','794.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095722.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007459.0','1018887.0','1', '1','1','3577.88', '1','1','980.0', '1','1','2597.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095723.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007460.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095724.0','1044454.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007461.0','1018887.0','1', '1','1','611.3', '1','0','0.0', '1','1','611.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095725.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007462.0','1018887.0','1', '1','1','1273.58', '1','1','1273.58', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095726.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007463.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095727.0','1044454.0','3', '3','1','2000.0', '3','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007464.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095728.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007465.0','1018887.0','86', '79','53','110196.78', '77','53','109405.38', '40','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095729.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007466.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095730.0','1044454.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007467.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095731.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007468.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095732.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007469.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095733.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007470.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095734.0','1044454.0','1', '1','1','980.0', '1','1','980.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007471.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095735.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007472.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095736.0','1044454.0','6', '6','4','10103.66', '6','4','9888.96', '3','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007473.0','1018887.0','17', '17','11','84376.02', '16','11','43715.41', '9','3','40660.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095737.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007474.0','1018887.0','6', '5','4','12468.0', '5','4','12468.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095738.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007475.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095739.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007476.0','1018887.0','7', '7','6','54238.66', '7','6','36981.0', '2','2','17257.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095740.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007477.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095741.0','1044454.0','1', '1','1','4366.05', '1','1','2000.0', '1','1','2366.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007478.0','1018887.0','7', '7','6','60517.41', '7','6','30025.58', '5','3','30491.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095742.0','1044454.0','3', '2','2','14875.78', '2','2','9080.0', '1','1','5795.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007479.0','1018887.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095743.0','1044454.0','3', '3','2','4000.0', '3','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007480.0','1018887.0','2431', '2216','1199','2888458.44', '2099','1013','2404147.72', '1465','448','484310.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095744.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007481.0','1018887.0','5', '4','4','9363.3', '4','4','8532.8', '4','1','830.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095745.0','1044454.0','5', '5','5','38297.58', '5','4','9920.0', '4','3','28377.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007482.0','1018887.0','2', '2','2','4000.0', '2','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095746.0','1044454.0','2', '2','2','9778.06', '2','2','5176.0', '1','1','4602.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007483.0','1018887.0','9', '7','5','18779.08', '7','5','18070.0', '6','1','709.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095747.0','1044454.0','4', '4','4','15376.0', '4','4','15376.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007484.0','1018887.0','16', '15','8','19905.0', '13','8','19655.0', '8','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095748.0','1044454.0','2', '2','1','12500.0', '2','1','12500.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007485.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095749.0','1044454.0','1', '1','1','4000.0', '1','1','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007486.0','1018887.0','2', '2','2','5582.0', '2','2','5582.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095750.0','1044454.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007487.0','1018887.0','2', '2','2','4000.0', '2','2','4000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095751.0','1044454.0','3', '3','2','7658.0', '3','2','7658.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007488.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095752.0','1044454.0','1', '1','1','3723.24', '1','1','3723.24', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005275.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093539.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007489.0','1018887.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095753.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007490.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095754.0','1044454.0','1', '1','1','4004.87', '1','1','4004.87', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003440.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091704.0','1044454.0','1', '1','1','3414.65', '1','1','1046.0', '1','1','2368.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003115.0','1018887.0','1', '1','1','12463.35', '1','1','4200.0', '1','1','8263.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091379.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007491.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095755.0','1044454.0','7', '5','4','20485.27', '5','4','13530.0', '3','2','6955.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000162.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088426.0','1044454.0','2', '2','2','3586.19', '2','1','2000.0', '2','2','1586.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007492.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095756.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2000156.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2088420.0','1044454.0','6', '5','2','2422.74', '5','2','2422.74', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007493.0','1018887.0','4', '4','2','4037.69', '4','1','2531.59', '3','2','1506.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095757.0','1044454.0','4355', '3914','1777','3871553.49', '3670','1383','2975343.89', '2575','690','896209.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007494.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095758.0','1044454.0','2432', '2146','963','1804240.82', '1798','541','1209377.18', '1411','540','594863.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007495.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095759.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007496.0','1018887.0','3', '3','3','25805.44', '3','3','7780.0', '2','2','18025.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095760.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007497.0','1018887.0','1', '1','1','624.49', '1','0','0.0', '1','1','624.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095761.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007498.0','1018887.0','1', '1','1','4072.11', '1','1','2352.73', '1','1','1719.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095762.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007499.0','1018887.0','1', '1','1','4230.33', '1','1','3046.0', '1','1','1184.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095763.0','1044454.0','568', '474','200','559954.14', '434','173','486122.36', '222','61','73831.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007500.0','1018887.0','2', '2','2','4230.55', '2','2','4230.55', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095764.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007501.0','1018887.0','1', '1','1','1006.1', '0','0','0.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095765.0','1044454.0','12', '10','4','8000.0', '9','4','8000.0', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007502.0','1018887.0','141', '129','87','243813.09', '127','87','223365.57', '71','3','20447.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095766.0','1044454.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007503.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095767.0','1044454.0','3', '3','2','2500.0', '2','1','2000.0', '2','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007504.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095768.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007505.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095769.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007506.0','1018887.0','1361', '1126','394','603348.83', '963','221','439952.47', '661','202','163396.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095770.0','1044454.0','17', '11','6','12000.0', '11','6','12000.0', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007507.0','1018887.0','1', '1','1','4966.0', '1','1','4966.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095771.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007508.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095772.0','1044454.0','1285', '1031','441','772219.45', '871','312','634560.26', '661','168','137659.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007509.0','1018887.0','1', '1','1','7737.49', '1','1','4339.0', '1','1','3398.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095773.0','1044454.0','3', '3','0','0.0', '3','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007510.0','1018887.0','280', '266','145','311945.17', '254','143','301651.93', '150','13','10293.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095774.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007511.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095775.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007512.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095776.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007513.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095777.0','1044454.0','2', '2','2','4000.0', '2','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003166.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091430.0','1044454.0','6', '4','1','2000.0', '4','1','2000.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007514.0','1018887.0','1', '1','1','550.0', '1','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095778.0','1044454.0','5', '4','2','6433.04', '4','2','4000.0', '2','1','2433.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007515.0','1018887.0','1', '1','1','1382.17', '1','0','0.0', '1','1','1382.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095779.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2000117.0','1018887.0','1', '1','1','27133.24', '1','1','13540.0', '1','1','13593.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2088381.0','1044454.0','2406', '2086','724','1343807.15', '1897','588','1145764.44', '1183','207','198042.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007516.0','1018887.0','1', '1','1','3003.0', '1','1','3003.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095780.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007517.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095781.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007518.0','1018887.0','1', '1','1','523.0', '1','1','523.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095782.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007519.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095783.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007520.0','1018887.0','28', '23','13','32430.79', '22','13','31639.39', '14','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095784.0','1044454.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007521.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095785.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007522.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095786.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007523.0','1018887.0','685', '570','276','398703.63', '420','107','231096.36', '404','197','167607.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095787.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007524.0','1018887.0','4', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095788.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007525.0','1018887.0','798', '704','343','505932.81', '512','125','288665.91', '523','255','217266.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095789.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007526.0','1018887.0','1', '1','1','204.99', '1','1','204.99', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095790.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007527.0','1018887.0','1', '1','1','3162.71', '1','1','689.73', '1','1','2472.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095791.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007528.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095792.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007529.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095793.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007530.0','1018887.0','39', '35','25','61394.06', '34','25','57201.73', '14','5','4192.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095794.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007531.0','1018887.0','23', '23','8','14708.24', '20','4','9351.82', '13','5','5356.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095795.0','1044454.0','4', '4','4','17357.43', '4','4','9176.0', '3','2','8181.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007532.0','1018887.0','72', '67','50','101278.41', '67','50','98890.0', '31','4','2388.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095796.0','1044454.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003468.0','1018887.0','138', '130','90','201364.86', '128','88','184076.54', '69','17','17288.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091732.0','1044454.0','12', '10','6','18511.31', '10','6','18511.31', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003234.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091498.0','1044454.0','87', '78','37','105975.73', '70','36','83271.57', '56','7','22704.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2000115.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2088379.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007533.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095797.0','1044454.0','77', '65','39','113858.27', '64','32','90696.13', '30','14','23162.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007534.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095798.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007535.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095799.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007536.0','1018887.0','635', '547','221','395111.36', '460','160','318979.26', '345','84','76132.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095800.0','1044454.0','1', '1','1','2791.4', '1','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007537.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095801.0','1044454.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007538.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095802.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007539.0','1018887.0','232', '215','112','228840.77', '206','104','191920.7', '117','23','36920.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095803.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007540.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095804.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007541.0','1018887.0','2785', '2458','933','1953323.31', '2232','751','1679065.52', '1414','276','274257.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095805.0','1044454.0','2549', '2272','1019','1935711.76', '2124','781','1605993.2', '1450','409','329718.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007542.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095806.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007543.0','1018887.0','1', '1','1','1335.0', '1','1','1335.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095807.0','1044454.0','1023', '885','396','784189.62', '725','221','575494.56', '604','232','208695.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007544.0','1018887.0','41', '32','18','56576.01', '32','18','34149.0', '13','3','22427.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095808.0','1044454.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007545.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095809.0','1044454.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007546.0','1018887.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095810.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007547.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095811.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007548.0','1018887.0','1', '1','1','2608.26', '1','1','2000.0', '1','1','608.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095812.0','1044454.0','524', '455','203','451711.46', '426','176','374138.53', '267','56','77572.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007549.0','1018887.0','2', '2','2','4000.0', '2','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095813.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007550.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095814.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007551.0','1018887.0','7', '7','4','38159.26', '7','4','11074.0', '4','3','27085.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095815.0','1044454.0','1', '1','1','23599.84', '1','1','13799.0', '1','1','9800.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007552.0','1018887.0','6', '3','1','2000.0', '3','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095816.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007553.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095817.0','1044454.0','1220', '933','408','674157.57', '758','253','508115.65', '613','193','166041.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007554.0','1018887.0','2', '2','2','26185.14', '2','2','16596.0', '1','1','9589.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095818.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007555.0','1018887.0','5', '2','2','2500.0', '1','1','2000.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095819.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007556.0','1018887.0','1', '1','1','2186.38', '1','1','2186.38', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095820.0','1044454.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007557.0','1018887.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095821.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007558.0','1018887.0','7', '7','3','6000.0', '7','3','6000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095822.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007559.0','1018887.0','9', '9','1','713.74', '5','1','713.74', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095823.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007560.0','1018887.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095824.0','1044454.0','31', '29','17','34900.0', '28','17','34900.0', '14','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007561.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095825.0','1044454.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007562.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095826.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007563.0','1018887.0','510', '467','225','533589.95', '432','177','422515.89', '294','100','111074.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095827.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007564.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095828.0','1044454.0','1', '1','1','1248.0', '1','1','1248.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007565.0','1018887.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095829.0','1044454.0','3539', '2767','1015','1886815.24', '2304','786','1642788.9', '1768','308','244026.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007566.0','1018887.0','2', '2','1','4358.0', '2','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095830.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007567.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095831.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007568.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095832.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007569.0','1018887.0','6', '6','5','24451.72', '6','5','14677.0', '3','2','9774.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095833.0','1044454.0','5970', '5343','2420','5001583.87', '5064','1906','4018309.32', '3425','885','983274.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007570.0','1018887.0','3', '3','3','26423.07', '3','3','16595.0', '3','1','9828.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095834.0','1044454.0','17', '11','5','10442.53', '9','5','10327.06', '5','1','115.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007571.0','1018887.0','6', '6','4','18590.02', '6','4','11564.0', '4','1','7026.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095835.0','1044454.0','1', '1','1','8340.0', '1','1','8340.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007572.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095836.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007573.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095837.0','1044454.0','57', '51','37','81656.56', '50','37','78253.84', '24','2','3402.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007574.0','1018887.0','339', '315','185','527173.06', '298','168','455635.69', '203','58','71537.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095838.0','1044454.0','6', '5','3','4791.4', '4','2','4000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007575.0','1018887.0','270', '235','106','232675.61', '212','77','191001.37', '142','40','41674.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095839.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007576.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095840.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007577.0','1018887.0','6', '6','4','42093.0', '6','4','42093.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095841.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007578.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095842.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095843.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007580.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095844.0','1044454.0','4', '4','2','4000.0', '4','2','4000.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007581.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095845.0','1044454.0','13', '12','6','38325.65', '12','6','21580.0', '6','2','16745.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007582.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095846.0','1044454.0','2', '2','2','7325.0', '2','2','7325.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007583.0','1018887.0','649', '578','318','695571.37', '537','285','628695.77', '350','86','66875.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095847.0','1044454.0','9', '9','8','18118.0', '9','8','18118.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007584.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095848.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007585.0','1018887.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095849.0','1044454.0','23', '18','7','11885.38', '15','6','11046.0', '9','2','839.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007586.0','1018887.0','1583', '1439','819','2273612.23', '1370','722','1871161.26', '953','298','402450.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095850.0','1044454.0','1', '1','1','2751.14', '1','1','890.0', '1','1','1861.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007587.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095851.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007588.0','1018887.0','1', '1','1','22916.35', '1','1','12121.4', '1','1','10794.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095852.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007589.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095853.0','1044454.0','7', '5','5','10000.0', '5','5','10000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007590.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095854.0','1044454.0','3', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005580.0','1018887.0','2606', '2325','818','1590288.42', '2135','672','1365462.83', '1387','231','224825.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093844.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003221.0','1018887.0','5', '3','1','2608.26', '3','1','2000.0', '2','1','608.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091485.0','1044454.0','1', '1','1','2751.75', '1','1','2000.0', '1','1','751.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003113.0','1018887.0','3', '2','1','1216.0', '2','1','1216.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091377.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007591.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095855.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007592.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095856.0','1044454.0','3', '3','1','10476.85', '3','1','9686.0', '2','1','790.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007593.0','1018887.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095857.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007594.0','1018887.0','1', '1','1','2139.37', '1','1','1133.27', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095858.0','1044454.0','1', '1','1','3654.57', '1','1','3051.34', '1','1','603.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003111.0','1018887.0','1', '1','1','6103.0', '1','1','6103.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091375.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2003132.0','1018887.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2091396.0','1044454.0','948', '863','478','1329762.97', '824','419','1035478.05', '557','194','294284.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000181.0','1018887.0','1', '1','1','1682.74', '1','1','1682.74', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088445.0','1044454.0','134', '126','62','223943.08', '120','58','186791.09', '77','21','37151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007595.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095859.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007596.0','1018887.0','1998', '1783','745','1514866.13', '1593','512','1156571.38', '1090','342','358294.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095860.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007597.0','1018887.0','382', '338','152','363513.05', '327','130','306458.08', '184','44','57054.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095861.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007598.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095862.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007599.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095863.0','1044454.0','10', '6','2','2822.1', '4','2','2822.1', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007600.0','1018887.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095864.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007601.0','1018887.0','1', '1','1','1034.22', '1','1','242.82', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095865.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007602.0','1018887.0','2', '1','1','791.4', '0','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095866.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007603.0','1018887.0','6', '6','1','2000.0', '4','1','2000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095867.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007604.0','1018887.0','3', '3','3','9541.66', '3','3','8000.0', '2','1','1541.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095868.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007605.0','1018887.0','245', '215','87','127564.75', '171','44','88115.75', '143','52','39449.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095869.0','1044454.0','18', '11','4','8000.0', '11','4','8000.0', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007606.0','1018887.0','580', '530','265','590278.0', '465','190','483503.94', '384','118','106774.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095870.0','1044454.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007607.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095871.0','1044454.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007608.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095872.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007609.0','1018887.0','4', '4','3','29779.16', '4','3','25210.0', '2','2','4569.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095873.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007610.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095874.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007611.0','1018887.0','4', '4','3','6881.0', '4','3','6881.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095875.0','1044454.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007612.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095876.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007613.0','1018887.0','8', '7','7','55587.58', '7','7','19460.0', '5','4','36127.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095877.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007614.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095878.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007615.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095879.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007616.0','1018887.0','105', '96','69','140073.41', '95','69','138000.0', '45','2','2073.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095880.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007617.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095881.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007618.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095882.0','1044454.0','4', '3','1','6386.0', '3','1','6386.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007619.0','1018887.0','1', '1','1','3332.0', '1','1','3332.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095883.0','1044454.0','1', '1','1','3000.0', '1','1','3000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007620.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095884.0','1044454.0','5', '3','2','4000.0', '3','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007621.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095885.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007622.0','1018887.0','13', '7','4','7216.52', '7','3','6000.0', '5','1','1216.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095886.0','1044454.0','1', '1','1','2791.4', '1','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007623.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095887.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007624.0','1018887.0','1', '1','1','1006.1', '1','0','0.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095888.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007625.0','1018887.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095889.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007626.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095890.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007627.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095891.0','1044454.0','3', '3','2','13038.89', '3','2','9815.0', '2','1','3223.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007628.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095892.0','1044454.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007629.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095893.0','1044454.0','2', '2','1','2053.54', '2','0','0.0', '2','1','2053.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007630.0','1018887.0','3', '3','3','6676.0', '3','3','6676.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095894.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007631.0','1018887.0','784', '755','566','2996936.04', '745','555','2613025.83', '395','121','383910.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095895.0','1044454.0','2', '2','1','2000.0', '1','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007632.0','1018887.0','5', '5','3','6000.0', '5','3','6000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095896.0','1044454.0','1', '1','1','259.71', '1','0','0.0', '1','1','259.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007633.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095897.0','1044454.0','3', '3','3','26783.02', '3','3','6000.0', '3','2','20783.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007634.0','1018887.0','2', '2','2','8421.97', '2','1','4358.0', '2','1','4063.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095898.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007635.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095899.0','1044454.0','2551', '2123','740','1298375.46', '1872','558','1109496.15', '1241','232','188879.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007636.0','1018887.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095900.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007637.0','1018887.0','1', '1','1','2197.32', '1','1','2000.0', '1','1','197.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095901.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003552.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091816.0','1044454.0','6', '6','2','4000.0', '6','2','4000.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2003306.0','1018887.0','64', '36','11','22000.0', '27','11','22000.0', '22','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2091570.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007638.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095902.0','1044454.0','116', '106','57','119638.28', '101','54','101548.53', '66','19','18089.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007639.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095903.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007640.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095904.0','1044454.0','1', '1','1','17368.96', '1','1','5190.0', '1','1','12178.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007641.0','1018887.0','5', '5','4','18308.07', '5','3','12835.0', '4','3','5473.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095905.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2000163.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2088427.0','1044454.0','3164', '2656','1018','2033120.89', '2326','790','1607147.9', '1667','326','425972.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007642.0','1018887.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095906.0','1044454.0','1', '1','1','1824.04', '1','1','1824.04', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007643.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095907.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007644.0','1018887.0','1', '1','1','5770.42', '1','1','1248.0', '1','1','4522.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095908.0','1044454.0','3', '3','1','2000.0', '3','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007645.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095909.0','1044454.0','1', '1','1','17699.19', '1','1','8060.0', '1','1','9639.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007646.0','1018887.0','1098', '988','526','929643.81', '853','358','714191.05', '653','241','215452.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095910.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007647.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095911.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007648.0','1018887.0','4', '4','3','8360.52', '4','3','7810.0', '2','1','550.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095912.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001509.0', '2007649.0','1018887.0','1', '1','1','3245.0', '1','1','3245.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005904.0', '2095913.0','1044454.0','3', '2','1','2050.65', '2','1','794.0', '1','1','1256.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007650.0','1018887.0','914', '823','446','1178564.44', '776','344','784765.29', '538','222','393799.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095914.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007651.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095915.0','1044454.0','7836', '7000','3073','6558374.06', '6520','2475','5258828.79', '4628','1161','1299545.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007652.0','1018887.0','82', '67','31','63523.47', '65','29','60743.02', '40','5','2780.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095916.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007653.0','1018887.0','4', '4','1','812.0', '4','1','812.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095917.0','1044454.0','13', '13','8','8502.79', '11','4','5122.49', '9','4','3380.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007654.0','1018887.0','4', '4','1','2000.0', '3','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095918.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007655.0','1018887.0','193', '179','96','167997.88', '170','65','121009.89', '120','45','46987.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095919.0','1044454.0','1', '1','1','3471.69', '1','1','2628.24', '1','1','843.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007656.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095920.0','1044454.0','5', '5','4','33720.05', '5','4','7722.0', '4','3','25998.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007657.0','1018887.0','4', '3','2','8716.0', '3','2','8716.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095921.0','1044454.0','38', '32','14','32781.3', '26','13','29186.3', '22','5','3595.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007658.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095922.0','1044454.0','2', '2','2','19470.51', '2','2','9079.0', '1','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007659.0','1018887.0','180', '158','85','185019.46', '150','54','134527.17', '112','48','50492.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095923.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007660.0','1018887.0','211', '204','109','440866.05', '200','100','325655.67', '135','44','115210.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095924.0','1044454.0','19', '16','5','12618.24', '14','5','12618.24', '10','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007661.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095925.0','1044454.0','3', '3','2','6358.0', '3','2','6358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007662.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095926.0','1044454.0','1', '1','1','2484.03', '1','1','2484.03', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007663.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095927.0','1044454.0','5', '5','4','23698.76', '5','4','13390.0', '3','1','10308.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007664.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095928.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007665.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095929.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007666.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095930.0','1044454.0','9', '8','4','8000.0', '8','4','8000.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007667.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095931.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007668.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095932.0','1044454.0','9', '6','1','1216.52', '5','0','0.0', '6','1','1216.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007669.0','1018887.0','6', '2','1','791.4', '0','0','0.0', '2','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095933.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007670.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095934.0','1044454.0','16', '14','8','14563.0', '14','8','14563.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007671.0','1018887.0','1', '1','1','1020.83', '0','0','0.0', '1','1','1020.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095935.0','1044454.0','3', '3','1','7706.23', '3','1','6079.15', '3','1','1627.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007672.0','1018887.0','3363', '2825','1209','2410412.83', '2511','935','1980249.54', '1852','441','430163.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095936.0','1044454.0','1', '1','1','5311.41', '1','1','4263.0', '1','1','1048.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007673.0','1018887.0','6', '3','2','4000.0', '2','2','4000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095937.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007674.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095938.0','1044454.0','1', '1','1','3582.0', '1','1','3582.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007675.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095939.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007676.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095940.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007677.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095941.0','1044454.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007678.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095942.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007679.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095943.0','1044454.0','2', '2','1','259.71', '2','0','0.0', '1','1','259.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007680.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095944.0','1044454.0','1', '1','1','1070.43', '1','0','0.0', '1','1','1070.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007681.0','1018887.0','98', '94','53','183793.97', '86','42','148048.22', '65','29','35745.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095945.0','1044454.0','3', '3','1','791.4', '2','0','0.0', '2','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007682.0','1018887.0','1', '1','1','22432.74', '1','1','6890.0', '1','1','15542.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095946.0','1044454.0','801', '737','488','2265296.51', '708','416','1417791.4', '489','216','847505.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007683.0','1018887.0','3', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095947.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007684.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095948.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007685.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095949.0','1044454.0','7', '7','5','17432.57', '7','5','14316.29', '4','3','3116.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007686.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095950.0','1044454.0','1', '1','1','4433.04', '1','1','2000.0', '1','1','2433.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007687.0','1018887.0','1004', '847','307','614813.25', '753','273','577189.37', '580','50','37623.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095951.0','1044454.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007688.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095952.0','1044454.0','430', '387','216','474489.83', '352','166','403044.89', '238','82','71444.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007689.0','1018887.0','10', '10','4','8663.73', '10','4','8492.92', '5','1','170.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095953.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007690.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095954.0','1044454.0','1', '1','1','3872.29', '1','1','2000.0', '1','1','1872.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007691.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095955.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007692.0','1018887.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095956.0','1044454.0','2', '2','2','6137.94', '2','2','5345.12', '1','1','792.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007693.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095957.0','1044454.0','1', '1','1','6386.0', '1','1','6386.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007694.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095958.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007695.0','1018887.0','1', '1','1','9034.68', '1','1','7378.01', '1','1','1656.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095959.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007696.0','1018887.0','3', '2','1','2748.73', '1','1','2000.0', '2','1','748.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095960.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007697.0','1018887.0','1', '1','1','730.0', '1','1','730.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095961.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007698.0','1018887.0','1', '1','1','2529.87', '1','1','2000.0', '1','1','529.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095962.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007699.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095963.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007700.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095964.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007701.0','1018887.0','1', '1','1','7815.4', '1','1','7024.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095965.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007702.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095966.0','1044454.0','406', '372','197','401046.28', '352','177','334462.98', '210','59','66583.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007703.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095967.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007704.0','1018887.0','2', '2','2','7077.59', '2','2','7077.59', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095968.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007705.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095969.0','1044454.0','5', '3','2','4000.0', '3','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007706.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095970.0','1044454.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007707.0','1018887.0','4', '4','2','18483.51', '4','2','8092.0', '3','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095971.0','1044454.0','2660', '2352','1142','2557526.71', '2201','968','2101448.49', '1509','404','456078.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007708.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095972.0','1044454.0','3', '3','1','2150.82', '3','1','2000.0', '3','1','150.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007709.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095973.0','1044454.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007710.0','1018887.0','207', '188','85','199376.21', '178','74','158430.95', '115','31','40945.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095974.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007711.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095975.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007712.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095976.0','1044454.0','1', '1','1','791.4', '0','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007713.0','1018887.0','86', '74','36','147034.99', '70','29','84184.14', '45','17','62850.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095977.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007714.0','1018887.0','95', '82','43','69156.08', '76','37','58729.64', '47','11','10426.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095978.0','1044454.0','45', '34','21','43252.64', '32','21','42030.0', '24','2','1222.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007715.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095979.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007716.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095980.0','1044454.0','9', '9','3','4563.44', '8','2','4000.0', '5','1','563.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007717.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095981.0','1044454.0','6', '6','5','26304.0', '6','5','26304.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007718.0','1018887.0','3', '3','2','35768.35', '3','2','14134.0', '3','2','21634.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095982.0','1044454.0','1', '1','1','5021.4', '1','1','4358.0', '1','1','663.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007719.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095983.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007720.0','1018887.0','4', '4','2','4000.0', '4','2','4000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095984.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007721.0','1018887.0','1', '1','1','2676.0', '1','1','2676.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095985.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007722.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095986.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007723.0','1018887.0','1', '1','1','7062.0', '1','1','7062.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095987.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007724.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095988.0','1044454.0','6', '6','5','75190.0', '5','5','64798.49', '4','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007725.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095989.0','1044454.0','1', '1','1','14121.45', '1','1','11752.8', '1','1','2368.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007726.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095990.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007727.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095991.0','1044454.0','4', '4','4','12386.0', '4','4','12386.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007728.0','1018887.0','1639', '1571','1224','6188782.43', '1555','1203','5514986.83', '894','266','673795.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095992.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007729.0','1018887.0','1', '1','1','6518.0', '1','1','6518.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095993.0','1044454.0','2', '2','2','15017.1', '2','2','12391.0', '2','1','2626.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007730.0','1018887.0','1151', '1093','851','4286043.02', '1077','836','3708790.26', '570','194','577252.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095994.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007731.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095995.0','1044454.0','17', '17','15','119750.11', '17','15','57688.6', '15','9','62061.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007732.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095996.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007733.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095997.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007734.0','1018887.0','2', '2','2','6358.0', '2','2','6358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095998.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007735.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2095999.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007736.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096000.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007737.0','1018887.0','2', '2','2','21318.38', '2','2','11320.0', '1','1','9998.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096001.0','1044454.0','12583', '11946','9925','60669794.75', '11811','9860','49501820.49', '5719','2005','11167974.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007738.0','1018887.0','10', '9','7','54939.7', '8','7','31938.0', '7','3','23001.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096002.0','1044454.0','1', '1','1','4063.32', '1','1','1156.0', '1','1','2907.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007739.0','1018887.0','1', '1','1','9146.32', '1','1','1352.0', '1','1','7794.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096003.0','1044454.0','3', '3','2','5071.54', '3','1','4358.0', '1','1','713.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007740.0','1018887.0','1', '1','1','6092.0', '1','1','6092.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096004.0','1044454.0','3', '3','2','8187.1', '3','2','8187.1', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007741.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096005.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007742.0','1018887.0','2', '2','1','4358.0', '2','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096006.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007743.0','1018887.0','1', '1','1','5364.1', '1','1','4358.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096007.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007744.0','1018887.0','11020', '10460','8105','43869147.09', '10310','7975','37557018.14', '5572','1851','6312128.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096008.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007745.0','1018887.0','1', '1','1','31242.8', '1','1','27691.0', '1','1','3551.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096009.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007746.0','1018887.0','1', '1','1','13424.14', '1','1','6308.0', '1','1','7116.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096010.0','1044454.0','1', '1','1','3352.0', '1','1','3352.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007747.0','1018887.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096011.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007748.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096012.0','1044454.0','1', '1','1','6092.0', '1','1','6092.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007749.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096013.0','1044454.0','6', '5','3','17189.4', '5','2','16398.0', '4','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007750.0','1018887.0','8', '7','3','8358.0', '7','3','8358.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096014.0','1044454.0','33666', '32228','24686','133591704.63', '31787','24317','110441268.44', '16681','5498','23150436.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007751.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096015.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007752.0','1018887.0','2', '2','1','23546.8', '2','1','9692.0', '1','1','13854.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096016.0','1044454.0','1', '1','1','4807.02', '1','1','1156.0', '1','1','3651.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007753.0','1018887.0','2', '2','2','10392.0', '2','2','10392.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096017.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007754.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096018.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007755.0','1018887.0','1', '1','1','3156.0', '1','1','3156.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096019.0','1044454.0','3', '3','1','3949.88', '2','1','1352.0', '2','1','2597.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007756.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096020.0','1044454.0','1', '1','1','2214.7', '1','1','2000.0', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007757.0','1018887.0','2054', '1957','1446','7615793.32', '1935','1424','6566744.56', '982','336','1049048.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096021.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007758.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096022.0','1044454.0','11532', '10875','8437','49102030.89', '10684','8269','40364445.15', '6179','2189','8737585.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007759.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096023.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007760.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096024.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007761.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096025.0','1044454.0','1', '1','1','6092.0', '1','1','6092.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007762.0','1018887.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096026.0','1044454.0','1', '1','1','6386.0', '1','1','6386.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007763.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096027.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007764.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096028.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007765.0','1018887.0','1', '1','1','5589.0', '1','1','4089.0', '1','1','1500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096029.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007766.0','1018887.0','2', '2','1','7826.0', '2','1','7826.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096030.0','1044454.0','4', '4','1','4358.0', '2','1','4358.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007767.0','1018887.0','1', '1','1','24174.57', '1','1','14262.0', '1','1','9912.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096031.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007768.0','1018887.0','19', '14','12','42654.54', '14','12','41956.0', '6','1','698.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096032.0','1044454.0','3', '2','2','5035.24', '2','1','4358.0', '2','1','677.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007769.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096033.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007770.0','1018887.0','1', '1','1','17567.26', '1','1','4358.0', '1','1','13209.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096034.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007771.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096035.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007772.0','1018887.0','26031', '24892','19470','117260509.43', '24550','19224','97103715.52', '13560','4764','20156793.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096036.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007773.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096037.0','1044454.0','3', '3','3','21216.0', '3','3','21216.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007774.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096038.0','1044454.0','1', '1','1','25655.96', '1','1','14858.0', '1','1','10797.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007775.0','1018887.0','1', '1','1','2422.03', '1','1','2422.03', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096039.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007776.0','1018887.0','1', '1','1','5209.0', '1','1','5209.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096040.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007777.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096041.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007778.0','1018887.0','5', '4','3','12744.0', '4','3','12744.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096042.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007779.0','1018887.0','1', '1','1','1156.0', '1','1','1156.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096043.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007780.0','1018887.0','2', '2','1','8929.76', '2','1','3734.0', '2','1','5195.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096044.0','1044454.0','1', '1','1','17276.0', '1','1','14858.0', '1','1','2418.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007781.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096045.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007782.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096046.0','1044454.0','3', '2','2','6358.0', '2','2','6358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007783.0','1018887.0','1', '1','1','13917.61', '1','1','4358.0', '1','1','9559.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096047.0','1044454.0','2', '2','1','6726.65', '2','1','4358.0', '1','1','2368.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007784.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096048.0','1044454.0','1', '1','1','7572.05', '1','1','4200.04', '1','1','3372.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007785.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096049.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007786.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096050.0','1044454.0','2', '2','2','10450.0', '2','2','10450.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007787.0','1018887.0','19102', '18292','14676','87656853.89', '18073','14533','72164368.31', '9382','3411','15492485.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096051.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007788.0','1018887.0','2', '2','2','16582.0', '2','2','16582.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096052.0','1044454.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007789.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096053.0','1044454.0','1', '1','1','5070.0', '1','1','5070.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007790.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096054.0','1044454.0','3', '3','3','11542.0', '3','3','11542.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007791.0','1018887.0','1', '1','1','8466.0', '1','1','5514.0', '1','1','2952.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096055.0','1044454.0','6', '6','6','29433.0', '6','6','29433.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007792.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096056.0','1044454.0','1', '1','1','6092.0', '1','1','6092.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007793.0','1018887.0','1', '1','1','9754.24', '1','1','4820.0', '1','1','4934.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096057.0','1044454.0','4', '4','3','14822.95', '4','3','14822.95', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007794.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096058.0','1044454.0','1287', '1048','844','6857608.56', '1034','835','4639054.57', '669','340','2218553.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007795.0','1018887.0','9', '9','5','25938.55', '9','5','15074.0', '6','3','10864.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096059.0','1044454.0','1', '1','1','6767.0', '1','1','6767.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007796.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096060.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007797.0','1018887.0','2', '2','1','4936.0', '2','1','4936.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096061.0','1044454.0','2', '2','2','8716.0', '2','2','8716.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007798.0','1018887.0','1', '1','1','24374.92', '1','1','16760.0', '1','1','7614.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096062.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007799.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096063.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007800.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096064.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007801.0','1018887.0','5', '4','3','7364.1', '3','2','6358.0', '3','2','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096065.0','1044454.0','2', '2','2','4358.0', '2','2','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007802.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096066.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007803.0','1018887.0','30', '28','19','117607.92', '27','19','95453.28', '14','3','22154.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096067.0','1044454.0','3', '3','3','17825.46', '3','3','16183.21', '2','1','1642.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007804.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096068.0','1044454.0','1', '1','1','10271.38', '1','1','4358.0', '1','1','5913.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007805.0','1018887.0','1', '1','1','12148.0', '1','1','12148.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096069.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007806.0','1018887.0','4', '4','3','19556.81', '4','3','11888.0', '2','1','7668.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096070.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007807.0','1018887.0','40', '38','29','199472.84', '38','29','145845.21', '15','9','53627.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096071.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007808.0','1018887.0','1', '1','1','23825.19', '1','1','16091.0', '1','1','7734.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096072.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007809.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096073.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007810.0','1018887.0','4734', '4566','3781','25708997.78', '4522','3738','19895845.01', '2575','1143','5813152.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096074.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007811.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096075.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007812.0','1018887.0','1', '1','1','9228.0', '1','1','9228.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096076.0','1044454.0','1', '1','1','6867.0', '1','1','6867.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007813.0','1018887.0','6197', '5820','4553','24492449.01', '5706','4505','21275570.06', '2869','888','3216878.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096077.0','1044454.0','1', '1','1','9558.0', '1','1','9558.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007814.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096078.0','1044454.0','4', '4','3','8803.42', '4','3','8716.0', '3','1','87.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007815.0','1018887.0','28', '27','22','162057.61', '26','22','102385.0', '21','9','59672.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096079.0','1044454.0','1', '1','1','3858.0', '1','1','3858.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007816.0','1018887.0','40', '38','28','339744.59', '36','28','168757.62', '32','15','170986.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096080.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007817.0','1018887.0','1', '1','1','7880.0', '1','1','7880.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096081.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007818.0','1018887.0','3', '3','1','4358.0', '2','1','4358.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096082.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007819.0','1018887.0','1', '1','1','4890.0', '1','1','4890.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096083.0','1044454.0','1', '1','1','6071.15', '1','1','4545.14', '1','1','1526.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007820.0','1018887.0','1', '1','1','6092.0', '1','1','6092.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096084.0','1044454.0','18', '16','12','60103.36', '16','12','46415.0', '10','3','13688.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007821.0','1018887.0','24143', '23074','18470','91605183.24', '22806','18253','81194354.92', '10586','3196','10410828.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096085.0','1044454.0','1', '1','1','11975.3', '1','1','4092.0', '1','1','7883.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007822.0','1018887.0','3', '3','3','24052.54', '3','3','11360.0', '2','2','12692.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096086.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007823.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096087.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007824.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096088.0','1044454.0','72', '69','55','570676.66', '69','55','366399.96', '41','23','204276.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007825.0','1018887.0','24', '23','18','143841.64', '22','17','94915.0', '19','7','48926.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096089.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007826.0','1018887.0','4', '4','4','61085.4', '4','4','37610.0', '4','3','23475.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096090.0','1044454.0','10', '9','5','23194.0', '9','5','23194.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007827.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096091.0','1044454.0','1', '1','1','5579.0', '1','1','5579.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007828.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096092.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007829.0','1018887.0','41', '39','30','135657.22', '38','30','129509.58', '23','8','6147.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096093.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007830.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096094.0','1044454.0','1', '1','1','6386.0', '1','1','6386.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007831.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096095.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007832.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096096.0','1044454.0','15911', '15140','12396','60201967.83', '14957','12318','54321069.01', '6204','1609','5880898.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007833.0','1018887.0','1', '1','1','6092.0', '1','1','6092.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096097.0','1044454.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007834.0','1018887.0','3', '3','3','11074.0', '3','3','11074.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096098.0','1044454.0','2', '2','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007835.0','1018887.0','53', '49','40','277324.8', '47','40','172838.15', '35','17','104486.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096099.0','1044454.0','1', '1','1','18018.83', '1','1','4358.0', '1','1','13660.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007836.0','1018887.0','3', '3','2','4000.0', '3','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096100.0','1044454.0','1', '1','1','10045.71', '1','1','6386.0', '1','1','3659.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007837.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096101.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007838.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096102.0','1044454.0','27', '27','21','217631.64', '27','21','142360.6', '19','9','75271.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007839.0','1018887.0','1', '1','1','8414.15', '1','1','8414.15', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096103.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007840.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096104.0','1044454.0','1', '1','1','3675.0', '1','1','3675.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007841.0','1018887.0','1', '1','1','8280.05', '1','1','7745.0', '1','1','535.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096105.0','1044454.0','1', '1','1','8242.33', '1','1','7058.0', '1','1','1184.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007842.0','1018887.0','2', '2','2','8716.0', '2','2','8716.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096106.0','1044454.0','1', '1','1','6679.45', '1','1','6092.0', '1','1','587.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007843.0','1018887.0','3', '3','3','18294.53', '3','3','14620.9', '1','1','3673.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096107.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007844.0','1018887.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096108.0','1044454.0','5', '5','4','14834.65', '5','4','9514.0', '2','1','5320.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007845.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096109.0','1044454.0','1', '1','1','7275.32', '1','1','6092.0', '1','1','1183.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007846.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096110.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007847.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096111.0','1044454.0','1', '1','1','10189.59', '1','1','4358.0', '1','1','5831.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007848.0','1018887.0','18', '15','8','65546.98', '15','8','44106.0', '8','3','21440.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096112.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007849.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096113.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007850.0','1018887.0','8', '8','6','21904.72', '8','5','18515.44', '4','2','3389.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096114.0','1044454.0','5', '5','5','36951.23', '5','5','25210.25', '4','2','11740.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007851.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096115.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007852.0','1018887.0','4', '4','4','29090.45', '4','4','21193.0', '3','2','7897.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096116.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007853.0','1018887.0','64', '57','28','108700.54', '52','22','93376.83', '34','12','15323.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096117.0','1044454.0','5', '4','3','8950.0', '3','3','8950.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007854.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096118.0','1044454.0','2', '2','2','15247.04', '2','2','9248.0', '1','1','5999.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007855.0','1018887.0','1522', '1434','767','1827722.08', '1380','509','1345435.51', '979','406','482286.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096119.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007856.0','1018887.0','1', '1','1','6767.0', '1','1','6767.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096120.0','1044454.0','1', '1','1','6024.0', '1','1','6024.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007857.0','1018887.0','4', '4','4','31207.41', '4','4','24687.0', '3','1','6520.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096121.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007858.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096122.0','1044454.0','1', '1','1','2791.4', '1','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007859.0','1018887.0','1', '1','1','12710.0', '1','1','12710.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096123.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007860.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096124.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007861.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096125.0','1044454.0','3', '3','1','27854.0', '3','1','27854.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007862.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096126.0','1044454.0','1', '1','1','4936.0', '1','1','4936.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007863.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096127.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007864.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096128.0','1044454.0','4', '4','4','10358.0', '4','4','10358.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007865.0','1018887.0','1', '1','1','8858.0', '1','1','4358.0', '1','1','4500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096129.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007866.0','1018887.0','37', '30','24','147990.29', '29','24','125705.71', '18','5','22284.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096130.0','1044454.0','1', '1','1','8975.0', '1','1','8975.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007867.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096131.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007868.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096132.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007869.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096133.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007870.0','1018887.0','1', '1','1','7127.0', '1','1','7127.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096134.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007871.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096135.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007872.0','1018887.0','13', '13','11','114707.92', '13','11','77869.87', '8','4','36838.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096136.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007873.0','1018887.0','17', '17','11','63075.53', '15','10','31035.0', '11','4','32040.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096137.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007874.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096138.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007875.0','1018887.0','1', '1','1','19039.65', '1','1','11586.0', '1','1','7453.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096139.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007876.0','1018887.0','1', '1','1','21229.63', '1','1','12162.0', '1','1','9067.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096140.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007877.0','1018887.0','2377', '2229','1692','6639905.46', '2192','1665','6365010.75', '879','219','274894.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096141.0','1044454.0','3', '3','2','8716.0', '3','2','8716.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007878.0','1018887.0','2', '2','2','6716.0', '2','2','6716.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096142.0','1044454.0','1', '1','1','6790.92', '1','1','4358.0', '1','1','2432.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007879.0','1018887.0','1', '1','1','9038.42', '1','1','1352.0', '1','1','7686.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096143.0','1044454.0','1', '1','1','5428.1', '1','1','4358.0', '1','1','1070.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007880.0','1018887.0','1', '1','1','6294.61', '1','1','6294.61', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096144.0','1044454.0','6', '6','3','14682.09', '6','3','13320.0', '2','1','1362.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007881.0','1018887.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096145.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007882.0','1018887.0','32', '31','6','12487.06', '28','4','10760.8', '23','2','1726.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096146.0','1044454.0','1', '1','1','6143.0', '1','1','6143.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007883.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096147.0','1044454.0','2', '2','1','3352.0', '2','1','3352.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007884.0','1018887.0','3', '3','2','6358.0', '2','2','6358.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096148.0','1044454.0','14', '14','9','116713.5', '14','9','71946.94', '11','5','44766.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007885.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096149.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007886.0','1018887.0','1', '1','1','6990.0', '1','1','6990.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096150.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007887.0','1018887.0','2', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096151.0','1044454.0','1', '1','1','16592.0', '1','1','16592.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007888.0','1018887.0','1', '1','1','5142.78', '1','1','4358.0', '1','1','784.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096152.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007889.0','1018887.0','2', '2','2','14759.21', '2','2','10804.0', '1','1','3955.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096153.0','1044454.0','3', '3','3','56823.0', '3','3','45481.0', '2','1','11342.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007890.0','1018887.0','4', '4','3','32308.07', '4','3','15756.0', '4','1','16552.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096154.0','1044454.0','7', '5','3','8358.0', '5','3','8358.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007891.0','1018887.0','2', '2','1','8858.0', '2','1','4358.0', '1','1','4500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096155.0','1044454.0','4', '4','3','14808.0', '4','3','14808.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007892.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096156.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007893.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096157.0','1044454.0','26373', '24987','20201','111006110.37', '24620','20029','94575647.08', '11303','3675','16430463.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007894.0','1018887.0','1', '1','1','5710.0', '1','1','5710.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096158.0','1044454.0','1', '1','1','15937.86', '1','1','9013.0', '1','1','6924.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007895.0','1018887.0','33', '30','26','185802.62', '29','25','133827.77', '16','7','51974.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096159.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007896.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096160.0','1044454.0','2', '2','2','9543.77', '2','1','7864.0', '2','2','1679.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007897.0','1018887.0','1', '1','1','8312.29', '1','1','4358.0', '1','1','3954.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096161.0','1044454.0','3', '3','2','18229.02', '3','2','7138.0', '2','2','11091.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007898.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096162.0','1044454.0','2', '2','1','4572.7', '2','1','4358.0', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007899.0','1018887.0','1', '1','1','20058.0', '1','1','20058.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096163.0','1044454.0','1', '1','1','10984.04', '1','1','5208.0', '1','1','5776.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007900.0','1018887.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096164.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007901.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096165.0','1044454.0','2', '2','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007902.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096166.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007903.0','1018887.0','1', '1','1','13002.88', '1','1','11292.0', '1','1','1710.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096167.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007904.0','1018887.0','1', '1','1','4950.16', '1','1','4358.0', '1','1','592.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096168.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007905.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096169.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007906.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096170.0','1044454.0','7', '7','4','17969.0', '7','4','17969.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007907.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096171.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007908.0','1018887.0','21', '21','15','72397.58', '20','15','53606.0', '11','2','18791.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096172.0','1044454.0','1', '1','1','30600.0', '1','1','19858.0', '1','1','10742.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007909.0','1018887.0','3', '3','2','14950.0', '3','2','14950.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096173.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007910.0','1018887.0','9773', '8984','6883','29025801.39', '8767','6774','27357921.16', '3684','828','1667880.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096174.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007911.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096175.0','1044454.0','1', '1','1','16358.0', '1','1','16358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007912.0','1018887.0','2', '2','2','7120.99', '2','2','6358.0', '2','1','762.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096176.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007913.0','1018887.0','1', '1','1','6219.6', '1','1','5213.5', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096177.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007914.0','1018887.0','2', '2','1','4358.0', '2','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096178.0','1044454.0','5', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007915.0','1018887.0','38', '33','22','120146.87', '32','21','99015.0', '17','4','21131.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096179.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007916.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096180.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007917.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096181.0','1044454.0','1', '1','1','15776.45', '1','1','5927.0', '1','1','9849.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007918.0','1018887.0','1', '1','1','11023.82', '1','1','8342.0', '1','1','2681.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096182.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007919.0','1018887.0','3', '3','1','4958.0', '3','1','4958.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096183.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007920.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096184.0','1044454.0','3', '3','2','20668.93', '3','2','19899.0', '1','1','769.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007921.0','1018887.0','5', '5','3','12808.0', '5','3','12808.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096185.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007922.0','1018887.0','2', '2','2','9970.52', '2','2','6358.0', '2','1','3612.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096186.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007923.0','1018887.0','1', '1','1','12581.89', '1','1','4597.0', '1','1','7984.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096187.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007924.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096188.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007925.0','1018887.0','20', '18','14','71351.64', '18','14','53734.0', '11','3','17617.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096189.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007926.0','1018887.0','3', '3','3','37880.15', '3','2','20874.38', '2','2','17005.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096190.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007927.0','1018887.0','1', '1','1','3448.0', '1','1','3448.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096191.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007928.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096192.0','1044454.0','1', '1','1','8165.0', '1','1','8165.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007929.0','1018887.0','56', '55','41','378352.48', '54','41','221932.6', '35','16','156419.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096193.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007930.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096194.0','1044454.0','2', '2','1','12404.5', '2','1','6386.0', '2','1','6018.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007931.0','1018887.0','1', '1','1','6882.83', '1','1','6882.83', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096195.0','1044454.0','8', '7','4','8000.0', '4','4','8000.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007932.0','1018887.0','2', '2','2','11241.4', '2','2','10450.0', '2','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096196.0','1044454.0','1', '1','1','6092.0', '1','1','6092.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007933.0','1018887.0','34', '31','23','123882.8', '31','23','89007.0', '20','9','34875.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096197.0','1044454.0','2', '2','2','8716.0', '2','2','8716.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007934.0','1018887.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096198.0','1044454.0','1', '1','1','19331.8', '1','1','9731.0', '1','1','9600.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007935.0','1018887.0','1', '1','1','2936.0', '1','1','2936.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096199.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007936.0','1018887.0','2395', '2284','1825','9558979.01', '2231','1800','8380690.79', '1118','326','1178288.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096200.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007937.0','1018887.0','30939', '29630','24067','145267561.15', '29296','23856','117094781.41', '14684','5861','28172779.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096201.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007938.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096202.0','1044454.0','2', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007939.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096203.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007940.0','1018887.0','3', '3','1','13773.23', '3','1','6584.0', '2','1','7189.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096204.0','1044454.0','10429', '10048','8408','54378724.09', '9949','8371','43220302.09', '5079','2142','11158422.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007941.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096205.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007942.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096206.0','1044454.0','2', '2','2','17398.96', '2','2','13477.0', '2','2','3921.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007943.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096207.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007944.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096208.0','1044454.0','1', '1','1','5342.78', '1','1','5292.78', '1','1','50.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007945.0','1018887.0','3', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096209.0','1044454.0','2', '2','2','4000.0', '2','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007946.0','1018887.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096210.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007947.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096211.0','1044454.0','4', '3','1','2000.0', '3','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007948.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096212.0','1044454.0','4', '4','2','3006.1', '4','1','2000.0', '3','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007949.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096213.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007950.0','1018887.0','9', '5','3','3582.8', '4','1','2000.0', '4','2','1582.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096214.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007951.0','1018887.0','1', '1','1','26181.85', '1','1','12324.0', '1','1','13857.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096215.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007952.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096216.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007953.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096217.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007954.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096218.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007955.0','1018887.0','1', '1','1','5558.0', '1','1','5558.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096219.0','1044454.0','2', '2','1','2000.0', '1','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007956.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096220.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007957.0','1018887.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096221.0','1044454.0','1', '1','1','2814.0', '1','1','2814.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007958.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096222.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007959.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096223.0','1044454.0','3179', '2934','1394','3084093.78', '2698','975','2306326.47', '1885','686','777767.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007960.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096224.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007961.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096225.0','1044454.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007962.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096226.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007963.0','1018887.0','2', '2','1','595.88', '2','1','595.88', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096227.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007964.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096228.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007965.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096229.0','1044454.0','1', '1','1','6209.38', '1','1','3010.0', '1','1','3199.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007966.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096230.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007967.0','1018887.0','2', '2','1','10992.0', '2','1','10992.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096231.0','1044454.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007968.0','1018887.0','5', '5','5','10000.0', '5','5','10000.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096232.0','1044454.0','80', '73','40','54515.57', '58','19','33277.09', '59','27','21238.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007969.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096233.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007970.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096234.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007971.0','1018887.0','319', '285','137','300179.37', '240','84','217492.14', '208','79','82687.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096235.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007972.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096236.0','1044454.0','3068', '2864','1451','3338193.37', '2734','955','2439329.35', '1914','777','898864.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007973.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096237.0','1044454.0','395', '364','167','368639.53', '327','122','306623.84', '229','74','62015.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007974.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096238.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007975.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096239.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007976.0','1018887.0','52', '47','20','53279.24', '40','17','48685.73', '31','6','4593.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096240.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007977.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096241.0','1044454.0','7', '6','4','5582.8', '6','2','4000.0', '4','2','1582.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007978.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096242.0','1044454.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007979.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096243.0','1044454.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007980.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096244.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007981.0','1018887.0','18', '12','6','10301.81', '9','3','6894.49', '8','5','3407.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096245.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007982.0','1018887.0','1', '1','1','2686.33', '1','1','2686.33', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096246.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007983.0','1018887.0','1', '1','1','5721.16', '1','1','5200.0', '1','1','521.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096247.0','1044454.0','1', '1','1','10697.69', '1','1','8983.7', '1','1','1713.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007984.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096248.0','1044454.0','1', '1','1','8105.38', '1','1','6386.0', '1','1','1719.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007985.0','1018887.0','1', '1','1','12528.0', '1','1','12528.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096249.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007986.0','1018887.0','151', '111','46','116783.3', '94','36','92873.96', '81','16','23909.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096250.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007987.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096251.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007988.0','1018887.0','1', '1','1','2791.4', '1','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096252.0','1044454.0','7', '6','5','33233.6', '6','5','22570.0', '3','2','10663.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007989.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096253.0','1044454.0','1', '1','1','2364.62', '1','1','2000.0', '1','1','364.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007990.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096254.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007991.0','1018887.0','2', '2','2','2791.4', '2','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096255.0','1044454.0','1', '1','1','2103.9', '1','1','2000.0', '1','1','103.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007992.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096256.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007993.0','1018887.0','1196', '1059','637','1310919.53', '888','413','1016137.35', '769','335','294782.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096257.0','1044454.0','40', '37','16','37910.95', '33','10','29315.45', '23','10','8595.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007994.0','1018887.0','1', '1','1','9654.0', '1','1','5955.0', '1','1','3699.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096258.0','1044454.0','1', '1','1','12992.82', '1','1','4890.0', '1','1','8102.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007995.0','1018887.0','926', '817','450','1061710.21', '706','320','833503.43', '591','217','228206.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096259.0','1044454.0','66', '63','47','474838.78', '62','46','262295.0', '43','24','212543.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007996.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096260.0','1044454.0','1899', '1707','1110','2808702.03', '1502','797','2141647.77', '1286','603','667054.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007997.0','1018887.0','1', '1','1','9223.76', '1','1','4028.0', '1','1','5195.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096261.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007998.0','1018887.0','6', '6','5','28087.31', '6','5','27999.89', '5','1','87.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096262.0','1044454.0','1', '1','1','16393.16', '1','1','6056.0', '1','1','10337.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2007999.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096263.0','1044454.0','191', '164','85','227292.84', '155','68','184611.51', '115','42','42681.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008000.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096264.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008001.0','1018887.0','100', '75','35','111478.25', '70','31','85078.04', '42','9','26400.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096265.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008002.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096266.0','1044454.0','2', '2','1','7142.5', '2','1','7142.5', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008003.0','1018887.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096267.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008004.0','1018887.0','2057', '1869','908','1888475.28', '1745','583','1336775.93', '1134','490','551699.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096268.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008005.0','1018887.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096269.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008006.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096270.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008007.0','1018887.0','1', '1','1','937.44', '1','1','192.24', '1','1','745.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096271.0','1044454.0','1', '1','1','767.46', '0','0','0.0', '1','1','767.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008008.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096272.0','1044454.0','1', '1','1','7556.4', '1','1','2000.0', '1','1','5556.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008009.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096273.0','1044454.0','1', '1','1','2980.0', '1','1','2980.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008010.0','1018887.0','208', '192','96','210971.46', '180','66','159761.09', '116','45','51210.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096274.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008011.0','1018887.0','1', '1','1','8976.86', '1','1','2000.0', '1','1','6976.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096275.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008012.0','1018887.0','1', '1','1','9001.36', '1','1','9001.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096276.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008013.0','1018887.0','51', '42','18','35526.42', '39','16','31994.11', '19','4','3532.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096277.0','1044454.0','2637', '2327','1044','2159127.71', '1989','667','1630995.81', '1526','537','528131.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008014.0','1018887.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096278.0','1044454.0','73', '63','32','97836.42', '60','30','70492.79', '36','10','27343.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008015.0','1018887.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096279.0','1044454.0','63', '61','41','285584.53', '60','41','212106.8', '41','12','73477.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008016.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096280.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008017.0','1018887.0','2', '2','1','22161.23', '2','1','18387.0', '2','1','3774.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096281.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008018.0','1018887.0','49', '41','34','372439.05', '38','33','202625.55', '27','17','169813.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096282.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008019.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096283.0','1044454.0','6', '6','4','68318.7', '5','3','24492.38', '5','3','43826.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008020.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096284.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008021.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096285.0','1044454.0','82', '57','16','27969.01', '49','10','22360.0', '34','7','5609.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008022.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096286.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008023.0','1018887.0','87', '84','44','141579.41', '80','41','124210.32', '60','17','17369.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096287.0','1044454.0','351', '312','164','520016.92', '299','114','342173.66', '214','92','177843.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008024.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096288.0','1044454.0','1', '1','1','71.96', '1','0','0.0', '1','1','71.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008025.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096289.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008026.0','1018887.0','21', '18','10','50713.7', '15','9','43619.58', '18','5','7094.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096290.0','1044454.0','1', '1','1','2791.4', '1','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008027.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096291.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008028.0','1018887.0','2', '2','1','791.4', '2','0','0.0', '2','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096292.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008029.0','1018887.0','3', '3','2','1491.39', '0','0','0.0', '3','2','1491.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096293.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008030.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096294.0','1044454.0','3', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008031.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096295.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008032.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096296.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008033.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096297.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008034.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096298.0','1044454.0','1', '1','1','12555.21', '1','1','7767.43', '1','1','4787.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008035.0','1018887.0','1', '1','1','505.0', '1','1','505.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096299.0','1044454.0','2', '2','1','13535.67', '2','1','3098.0', '1','1','10437.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008036.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096300.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008037.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096301.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008038.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096302.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008039.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096303.0','1044454.0','2', '2','2','11024.0', '2','2','11024.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008040.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096304.0','1044454.0','16134', '15329','11380','55632062.26', '15081','11104','49418484.74', '8118','2396','6213577.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008041.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096305.0','1044454.0','4', '2','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008042.0','1018887.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096306.0','1044454.0','1', '1','1','814.0', '1','1','814.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008043.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096307.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008044.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096308.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008045.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096309.0','1044454.0','1217', '1091','641','2351797.97', '1058','522','1677897.24', '720','297','673900.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008046.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096310.0','1044454.0','43', '40','16','23846.84', '36','12','19953.8', '20','5','3893.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008047.0','1018887.0','1708', '1511','739','1461708.5', '1246','430','1094031.12', '1079','424','367677.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096311.0','1044454.0','7137', '6287','3113','5940348.38', '5417','1937','4320591.11', '4197','1684','1619757.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008048.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096312.0','1044454.0','1', '1','1','1156.85', '1','1','1156.85', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008049.0','1018887.0','1', '1','1','10701.54', '1','1','2000.0', '1','1','8701.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096313.0','1044454.0','1459', '1303','782','1789577.2', '1102','546','1412560.92', '942','402','377016.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008050.0','1018887.0','3', '3','2','11361.28', '3','2','4890.0', '3','1','6471.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096314.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008051.0','1018887.0','4', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096315.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008052.0','1018887.0','7', '6','4','20929.21', '6','4','19166.0', '2','1','1763.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096316.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008053.0','1018887.0','3', '3','3','13074.0', '3','3','13074.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096317.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008054.0','1018887.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096318.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008055.0','1018887.0','1', '1','1','23590.44', '1','1','11721.0', '1','1','11869.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096319.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008056.0','1018887.0','50', '47','19','65376.91', '43','14','50567.48', '31','9','14809.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096320.0','1044454.0','1', '1','1','2421.0', '1','1','2421.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008057.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096321.0','1044454.0','1', '1','1','28806.49', '1','1','15579.93', '1','1','13226.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008058.0','1018887.0','1939', '1680','693','1137598.29', '1379','356','794995.62', '1100','399','342602.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096322.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008059.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096323.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008060.0','1018887.0','1', '1','1','2754.0', '1','1','2754.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096324.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008061.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096325.0','1044454.0','1', '1','1','24437.04', '1','1','21815.0', '1','1','2622.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008062.0','1018887.0','1', '1','1','2214.7', '1','1','2000.0', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096326.0','1044454.0','52', '42','14','36210.29', '38','11','27318.69', '23','5','8891.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008063.0','1018887.0','1', '1','1','697.92', '1','1','486.74', '1','1','211.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096327.0','1044454.0','1', '1','1','1161.19', '1','1','1104.23', '1','1','56.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008064.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096328.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008065.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096329.0','1044454.0','33', '24','11','23072.0', '20','11','23072.0', '14','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008066.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096330.0','1044454.0','181', '167','88','179660.87', '140','56','140815.91', '122','48','38844.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008067.0','1018887.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096331.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008068.0','1018887.0','3', '3','3','20303.0', '3','3','15303.0', '2','1','5000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096332.0','1044454.0','39', '37','29','125896.32', '37','29','122262.52', '23','2','3633.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008069.0','1018887.0','1', '1','1','10822.6', '1','1','3156.0', '1','1','7666.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096333.0','1044454.0','4004', '3739','2980','13343558.55', '3671','2943','12376632.18', '1566','392','966926.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008070.0','1018887.0','4', '4','4','37403.95', '4','4','34207.74', '4','1','3196.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096334.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008071.0','1018887.0','50', '44','21','61277.56', '43','21','55404.39', '23','3','5873.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096335.0','1044454.0','3', '3','0','0.0', '3','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008072.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096336.0','1044454.0','175', '155','51','86119.08', '136','26','56049.23', '83','33','30069.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008073.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096337.0','1044454.0','1', '1','1','763.08', '1','1','763.08', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008074.0','1018887.0','5336', '4544','2037','3917210.28', '3836','1358','3136700.0', '3002','919','780510.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096338.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008075.0','1018887.0','70', '66','40','98506.92', '55','21','65912.84', '44','27','32594.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096339.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008076.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096340.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008077.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096341.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008078.0','1018887.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096342.0','1044454.0','22', '22','18','270072.01', '22','18','118532.6', '19','15','151539.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008079.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096343.0','1044454.0','5', '5','3','16491.34', '5','2','14699.94', '2','2','1791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008080.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096344.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008081.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096345.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008082.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096346.0','1044454.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008083.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096347.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008084.0','1018887.0','2', '2','1','1146.41', '2','0','0.0', '2','1','1146.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096348.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008085.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096349.0','1044454.0','4', '3','2','8716.0', '3','2','8716.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008086.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096350.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008087.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096351.0','1044454.0','1', '1','1','5364.1', '1','1','4358.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008088.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096352.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096353.0','1044454.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008090.0','1018887.0','1', '1','1','12413.42', '1','1','7178.0', '1','1','5235.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096354.0','1044454.0','1', '1','1','9071.61', '1','1','8474.0', '1','1','597.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008091.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096355.0','1044454.0','3', '2','1','2358.0', '2','1','2358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008092.0','1018887.0','2', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096356.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008093.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096357.0','1044454.0','1', '1','1','5078.16', '1','1','4358.0', '1','1','720.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008094.0','1018887.0','2', '2','2','7163.69', '2','2','6358.0', '2','1','805.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096358.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008095.0','1018887.0','1', '1','1','6627.56', '1','1','4567.02', '1','1','2060.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096359.0','1044454.0','2', '2','2','10119.48', '2','2','9609.0', '2','1','510.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008096.0','1018887.0','4', '4','4','26433.0', '4','4','26433.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096360.0','1044454.0','41', '38','31','204166.13', '37','31','152741.79', '19','8','51424.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008097.0','1018887.0','1', '1','1','19469.88', '1','1','16872.0', '1','1','2597.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096361.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008098.0','1018887.0','3', '3','2','8716.0', '3','2','8716.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096362.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008099.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096363.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008100.0','1018887.0','3', '3','1','6092.0', '3','1','6092.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096364.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008101.0','1018887.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096365.0','1044454.0','2', '2','2','6716.0', '2','2','6716.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008102.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096366.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008103.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096367.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008104.0','1018887.0','1', '1','1','6728.0', '1','1','6728.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096368.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008105.0','1018887.0','2', '2','2','8358.0', '2','2','8358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096369.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008106.0','1018887.0','4', '4','3','20039.23', '4','3','20039.23', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096370.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008107.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096371.0','1044454.0','1', '1','1','14355.56', '1','1','2890.0', '1','1','11465.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008108.0','1018887.0','3', '3','3','26972.43', '3','3','14122.0', '2','1','12850.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096372.0','1044454.0','4', '4','3','27845.29', '4','3','7480.0', '2','2','20365.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008109.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096373.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008110.0','1018887.0','1', '1','1','19358.0', '1','1','14858.0', '1','1','4500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096374.0','1044454.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008111.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096375.0','1044454.0','2', '2','1','6726.0', '2','1','6726.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008112.0','1018887.0','13', '13','9','77709.43', '12','9','68318.72', '8','4','9390.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096376.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008113.0','1018887.0','5', '5','3','12042.35', '4','2','8218.0', '3','2','3824.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096377.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008114.0','1018887.0','4', '4','3','14254.94', '4','3','12521.52', '2','1','1733.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096378.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008115.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096379.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008116.0','1018887.0','1', '1','1','5960.46', '1','1','4358.0', '1','1','1602.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096380.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008117.0','1018887.0','5', '5','4','19334.92', '5','3','11198.34', '3','3','8136.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096381.0','1044454.0','2', '2','1','6948.38', '2','1','6035.0', '2','1','913.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008118.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096382.0','1044454.0','3', '3','2','8858.0', '1','1','4358.0', '2','1','4500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008119.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096383.0','1044454.0','3', '3','0','0.0', '2','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008120.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096384.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008121.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096385.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008122.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096386.0','1044454.0','3', '3','1','4358.0', '3','1','4358.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008123.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096387.0','1044454.0','1', '1','1','2890.0', '1','1','2890.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008124.0','1018887.0','2', '2','1','3747.0', '2','1','3747.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096388.0','1044454.0','1', '1','1','5149.4', '1','1','4358.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008125.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096389.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008126.0','1018887.0','1', '1','1','22568.88', '1','1','14858.0', '1','1','7710.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096390.0','1044454.0','1', '1','1','1156.0', '1','1','1156.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008127.0','1018887.0','1', '1','1','1734.0', '1','1','1734.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096391.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008128.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096392.0','1044454.0','2', '2','2','7943.65', '2','1','4358.0', '2','1','3585.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008129.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096393.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008130.0','1018887.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096394.0','1044454.0','1', '1','1','31932.37', '1','1','20752.0', '1','1','11180.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008131.0','1018887.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096395.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008132.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096396.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008133.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096397.0','1044454.0','1', '1','1','6640.26', '1','1','1736.0', '1','1','4904.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008134.0','1018887.0','6', '6','4','44440.16', '6','4','25574.0', '3','2','18866.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096398.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008135.0','1018887.0','24', '23','19','157747.35', '23','18','117900.46', '17','11','39846.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096399.0','1044454.0','18', '18','13','104795.67', '18','13','80132.58', '13','6','24663.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008136.0','1018887.0','2', '2','1','17907.88', '2','1','11310.0', '2','1','6597.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096400.0','1044454.0','2', '2','1','4358.0', '1','1','4358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008137.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096401.0','1044454.0','1', '1','1','6587.0', '1','1','6587.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008138.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096402.0','1044454.0','4', '4','1','4936.0', '4','1','4936.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008139.0','1018887.0','1', '1','1','9612.38', '1','1','6497.0', '1','1','3115.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096403.0','1044454.0','59', '56','42','313025.8', '56','40','242158.57', '40','14','70867.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008140.0','1018887.0','4', '2','2','29559.77', '2','2','9322.0', '2','2','20237.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096404.0','1044454.0','1', '1','1','21034.51', '1','1','10643.0', '1','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008141.0','1018887.0','1', '1','1','17273.05', '1','1','6736.0', '1','1','10537.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008142.0','1018887.0','5', '5','4','43357.22', '5','4','24309.0', '2','2','19048.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096406.0','1044454.0','1', '1','1','6374.0', '1','1','6374.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008143.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096407.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008144.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096408.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008145.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096409.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008146.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096410.0','1044454.0','3', '3','2','22744.46', '3','2','10716.0', '2','1','12028.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008147.0','1018887.0','8', '8','7','27616.0', '8','7','27616.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096411.0','1044454.0','19656', '18762','14793','103043801.23', '18494','14604','82997179.94', '11922','4522','20046621.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008148.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096412.0','1044454.0','34', '28','20','62081.0', '28','20','62081.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008149.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096413.0','1044454.0','8', '7','6','30455.74', '7','6','17178.0', '7','1','13277.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008150.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096414.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008151.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096415.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008152.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096416.0','1044454.0','1', '1','1','6092.0', '1','1','6092.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008153.0','1018887.0','19234', '18281','14517','164766652.07', '17989','14378','95753384.43', '12346','7040','69013267.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096417.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008154.0','1018887.0','7', '6','4','14716.0', '6','4','14716.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096418.0','1044454.0','1', '1','1','29707.32', '1','1','18213.0', '1','1','11494.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008155.0','1018887.0','7', '7','5','18368.0', '7','5','18368.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096419.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008156.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096420.0','1044454.0','4', '4','3','26579.0', '4','3','16908.0', '4','3','9671.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008157.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096421.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008158.0','1018887.0','36422', '34908','27870','334944184.22', '34453','27655','200081724.18', '23450','14075','134862460.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096422.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008159.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096423.0','1044454.0','5', '4','3','10744.0', '4','3','10744.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008160.0','1018887.0','2', '2','1','6692.52', '2','1','1156.0', '2','1','5536.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096424.0','1044454.0','1', '1','1','3352.0', '1','1','3352.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008161.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096425.0','1044454.0','1', '1','1','12022.32', '1','1','2890.0', '1','1','9132.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008162.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096426.0','1044454.0','1', '1','1','6092.0', '1','1','6092.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008163.0','1018887.0','1', '1','1','19512.73', '1','1','11783.2', '1','1','7729.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096427.0','1044454.0','1', '1','1','17733.94', '1','1','3736.0', '1','1','13997.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008164.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096428.0','1044454.0','2', '2','1','4688.9', '2','1','4358.0', '2','1','330.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008165.0','1018887.0','20', '17','11','60067.74', '17','11','50862.2', '8','1','9205.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096429.0','1044454.0','1', '1','1','3156.0', '1','1','3156.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008166.0','1018887.0','17', '16','12','82960.66', '16','12','58159.0', '13','5','24801.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096430.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008167.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096431.0','1044454.0','13276', '12223','9784','50389868.97', '11995','9750','44839245.94', '5746','1344','5550623.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008168.0','1018887.0','7', '7','6','36361.51', '7','6','25970.0', '5','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096432.0','1044454.0','23', '20','13','52347.68', '20','13','46411.4', '15','1','5936.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008169.0','1018887.0','1', '1','1','6166.0', '1','1','6166.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096433.0','1044454.0','6', '6','4','8000.0', '6','4','8000.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008170.0','1018887.0','7', '7','7','16358.0', '7','7','16358.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096434.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008171.0','1018887.0','1', '1','1','17646.51', '1','1','5738.0', '1','1','11908.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096435.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008172.0','1018887.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096436.0','1044454.0','1', '1','1','1156.0', '1','1','1156.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008173.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096437.0','1044454.0','5', '5','4','49127.25', '5','4','30186.6', '5','2','18940.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008174.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096438.0','1044454.0','1', '1','1','15882.51', '1','1','4358.0', '1','1','11524.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008175.0','1018887.0','43106', '41401','32165','418423344.64', '40938','31884','252376986.55', '30184','17725','166046358.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096439.0','1044454.0','14609', '14166','11160','126997290.99', '13994','11069','86199232.13', '9058','4572','40798058.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008176.0','1018887.0','46', '36','28','140952.7', '34','27','98951.0', '17','4','42001.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096440.0','1044454.0','13', '12','11','31671.88', '12','11','29074.0', '3','1','2597.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008177.0','1018887.0','5', '5','5','46699.0', '5','5','36316.74', '2','1','10382.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096441.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008178.0','1018887.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096442.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008179.0','1018887.0','1', '1','1','18860.85', '1','1','15038.0', '1','1','3822.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096443.0','1044454.0','1', '1','1','14851.93', '1','1','6162.0', '1','1','8689.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008180.0','1018887.0','1', '1','1','6599.0', '1','1','6599.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096444.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008181.0','1018887.0','1', '1','1','19978.57', '1','1','5879.0', '1','1','14099.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096445.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008182.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096446.0','1044454.0','5407', '5075','3909','36712712.08', '4965','3875','21574612.23', '3377','1823','15138099.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008183.0','1018887.0','1', '1','1','10639.88', '1','1','8042.0', '1','1','2597.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096447.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008184.0','1018887.0','1', '1','1','6195.29', '1','1','4358.0', '1','1','1837.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096448.0','1044454.0','3', '3','3','14092.0', '3','3','10092.0', '3','1','4000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008185.0','1018887.0','69', '65','51','268246.17', '64','50','231255.0', '37','12','36991.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096449.0','1044454.0','2', '2','2','5028.0', '2','2','5028.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008186.0','1018887.0','7', '6','2','4358.0', '6','2','4358.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096450.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008187.0','1018887.0','9', '9','6','57278.96', '9','5','34412.0', '9','4','22866.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096451.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008188.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096452.0','1044454.0','13', '9','6','19432.0', '9','6','19432.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008189.0','1018887.0','2', '2','2','15029.85', '2','2','5156.0', '1','1','9873.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096453.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008190.0','1018887.0','3', '3','3','11074.0', '3','3','11074.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096454.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008191.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096455.0','1044454.0','19', '19','9','56886.75', '18','9','41452.0', '11','2','15434.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008192.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096456.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008193.0','1018887.0','1', '1','1','4818.0', '1','1','4818.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096457.0','1044454.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008194.0','1018887.0','2', '1','1','6092.0', '1','1','6092.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096458.0','1044454.0','5', '5','4','35415.16', '5','4','30219.4', '3','1','5195.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008195.0','1018887.0','2', '2','2','6716.1', '2','2','5710.0', '2','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096459.0','1044454.0','3', '3','2','5548.0', '2','2','5548.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008196.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096460.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008197.0','1018887.0','6', '5','3','15270.0', '4','3','15270.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096461.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008198.0','1018887.0','1', '1','1','8123.84', '1','1','3565.0', '1','1','4558.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096462.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008199.0','1018887.0','1', '1','1','5019.4', '1','0','0.0', '1','1','5019.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096463.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008200.0','1018887.0','7', '3','3','20003.81', '3','3','8358.0', '2','1','11645.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096464.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008201.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096465.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008202.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096466.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008203.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096467.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008204.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096468.0','1044454.0','2', '2','1','4358.0', '2','1','4358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008205.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096469.0','1044454.0','29177', '27396','21764','187084223.15', '26786','21589','127143088.86', '16095','7334','59941134.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008206.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096470.0','1044454.0','1351', '1219','975','4815151.25', '1181','968','4014732.06', '753','185','800419.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008207.0','1018887.0','1', '1','1','14933.0', '1','1','14933.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096471.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008208.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096472.0','1044454.0','1', '1','1','5742.0', '1','1','5742.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008209.0','1018887.0','1', '1','1','3156.0', '1','1','3156.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096473.0','1044454.0','5', '5','5','23878.0', '5','5','23878.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008210.0','1018887.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096474.0','1044454.0','3', '3','2','8716.0', '3','2','8716.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008211.0','1018887.0','17', '14','9','88130.62', '13','8','50056.0', '11','5','38074.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096475.0','1044454.0','27', '26','18','149131.36', '23','18','114235.55', '20','5','34895.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008212.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096476.0','1044454.0','2', '2','1','969.42', '2','1','969.42', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008213.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096477.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008214.0','1018887.0','14', '12','8','53352.0', '12','8','38460.49', '10','1','14891.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096478.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008215.0','1018887.0','6', '6','4','62931.88', '6','4','60946.0', '4','1','1985.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096479.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008216.0','1018887.0','77', '74','45','285856.04', '72','45','214027.0', '47','11','71829.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096480.0','1044454.0','10', '6','4','23980.55', '6','4','21382.67', '5','1','2597.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008217.0','1018887.0','11', '10','7','37457.1', '10','7','25929.0', '6','1','11528.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096481.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008218.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096482.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008219.0','1018887.0','4', '4','3','10716.0', '4','3','10716.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096483.0','1044454.0','4', '2','1','2358.0', '2','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008220.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096484.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008221.0','1018887.0','9970', '9525','7257','84126871.79', '9398','7201','53145534.49', '6185','3421','30981337.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096485.0','1044454.0','2', '2','1','4358.0', '2','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008222.0','1018887.0','7', '7','5','27164.95', '7','5','26387.9', '5','1','777.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096486.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008223.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096487.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008224.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096488.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008225.0','1018887.0','1', '1','1','7558.0', '1','1','7558.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096489.0','1044454.0','3', '2','2','16362.37', '2','2','8092.0', '2','1','8270.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008226.0','1018887.0','21', '21','15','136026.33', '21','15','88737.0', '15','9','47289.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096490.0','1044454.0','37', '30','22','50426.0', '30','22','50426.0', '12','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008227.0','1018887.0','1', '1','1','4936.0', '1','1','4936.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096491.0','1044454.0','24', '24','19','134970.44', '24','19','106506.64', '14','4','28463.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008228.0','1018887.0','1', '1','1','3224.0', '1','1','3224.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096492.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008229.0','1018887.0','6', '5','4','29086.25', '5','3','22056.0', '5','2','7030.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096493.0','1044454.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008230.0','1018887.0','17294', '16493','12941','78160794.38', '16266','12820','66566720.87', '8556','2853','11594073.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096494.0','1044454.0','19', '19','11','34296.13', '19','11','26441.0', '10','1','7855.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008231.0','1018887.0','1', '1','1','12234.0', '1','1','12234.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096495.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008232.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096496.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008233.0','1018887.0','4', '4','4','13351.0', '4','4','13351.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096497.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008234.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096498.0','1044454.0','9082', '8711','6792','66666333.53', '8595','6714','42280876.87', '6336','3528','24385456.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008235.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096499.0','1044454.0','91', '62','46','190213.74', '57','46','176122.04', '16','3','14091.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008236.0','1018887.0','11', '11','9','32172.75', '11','9','29790.0', '4','1','2382.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096500.0','1044454.0','10', '8','5','14588.0', '7','5','14588.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008237.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096501.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008238.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096502.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008239.0','1018887.0','3', '3','2','12820.0', '2','2','12820.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096503.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008240.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096504.0','1044454.0','1', '1','1','1156.0', '1','1','1156.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008241.0','1018887.0','15776', '15114','12768','107399972.57', '14997','12723','83836086.72', '6636','2750','23563885.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096505.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008242.0','1018887.0','14', '12','9','58481.71', '11','9','54019.6', '5','2','4462.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096506.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008243.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096507.0','1044454.0','2', '2','2','12186.43', '2','2','9796.0', '1','1','2390.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008244.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096508.0','1044454.0','17', '14','14','140668.08', '14','14','106573.39', '12','7','34094.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008245.0','1018887.0','1', '1','1','17929.79', '1','1','8131.0', '1','1','9798.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096509.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008246.0','1018887.0','28213', '26731','21690','161738513.2', '26307','21567','117703032.65', '14008','5992','44035480.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096510.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008247.0','1018887.0','4', '4','3','8716.0', '4','3','8716.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096511.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008248.0','1018887.0','1', '1','1','4962.0', '1','1','4962.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096512.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008249.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096513.0','1044454.0','6', '6','5','36884.81', '6','5','23253.0', '4','2','13631.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008250.0','1018887.0','31538', '30418','24165','312949427.63', '30038','23937','194081513.74', '21779','12576','118867913.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096514.0','1044454.0','11', '9','5','36514.23', '9','5','23506.0', '6','1','13008.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008251.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096515.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008252.0','1018887.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096516.0','1044454.0','2', '2','1','12611.64', '2','1','4557.0', '1','1','8054.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008253.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096517.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008254.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096518.0','1044454.0','3', '3','1','4358.0', '2','1','4358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008255.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096519.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008256.0','1018887.0','23', '23','17','214695.21', '23','16','119964.0', '23','11','94731.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096520.0','1044454.0','2897', '2776','2367','28900859.67', '2755','2352','18503715.8', '1691','1043','10397143.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008257.0','1018887.0','6', '6','5','13838.7', '6','4','13074.0', '2','2','764.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096521.0','1044454.0','1', '1','1','13080.21', '1','1','3156.0', '1','1','9924.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008258.0','1018887.0','2', '2','2','6358.0', '2','2','6358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096522.0','1044454.0','3', '2','2','21080.76', '2','2','15885.0', '1','1','5195.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008259.0','1018887.0','1', '1','1','6271.0', '1','1','4358.0', '1','1','1913.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096523.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008260.0','1018887.0','4', '4','4','45974.87', '4','4','24425.0', '4','2','21549.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096524.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008261.0','1018887.0','30', '28','13','20525.42', '28','11','18002.44', '14','4','2522.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096525.0','1044454.0','34', '32','16','34843.64', '31','14','29401.16', '20','6','5442.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008262.0','1018887.0','14', '14','8','14999.09', '14','6','11018.32', '10','3','3980.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096526.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008263.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096527.0','1044454.0','1', '1','1','2655.0', '1','1','2655.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008264.0','1018887.0','6', '6','6','61703.96', '6','6','38356.0', '4','2','23347.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096528.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096529.0','1044454.0','4', '4','2','6716.0', '4','2','6716.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008266.0','1018887.0','10', '8','7','117262.84', '8','7','69037.0', '7','5','48225.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096530.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008267.0','1018887.0','2', '2','2','44561.59', '2','2','17966.0', '2','2','26595.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096531.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008268.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096532.0','1044454.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008269.0','1018887.0','1192', '1158','958','10888831.81', '1143','950','7025556.02', '765','427','3863275.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096533.0','1044454.0','2', '2','1','2358.0', '2','1','2358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008270.0','1018887.0','1', '1','1','14625.14', '1','1','6092.0', '1','1','8533.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096534.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008271.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096535.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008272.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096536.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008273.0','1018887.0','1', '1','1','13606.59', '1','1','11237.94', '1','1','2368.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096537.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008274.0','1018887.0','5', '5','4','4746.25', '5','4','4746.25', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096538.0','1044454.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008275.0','1018887.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096539.0','1044454.0','851', '792','655','8832913.87', '788','653','5624709.44', '519','332','3208204.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008276.0','1018887.0','9', '8','4','24424.0', '8','4','24424.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096540.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008277.0','1018887.0','7', '6','6','52743.32', '6','6','23728.0', '4','4','29015.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096541.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008278.0','1018887.0','1', '1','1','26182.63', '1','1','16592.0', '1','1','9590.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096542.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008279.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096543.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008280.0','1018887.0','1', '1','1','19315.91', '1','1','9558.0', '1','1','9757.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096544.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008281.0','1018887.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096545.0','1044454.0','1', '1','1','18396.97', '1','1','6767.0', '1','1','11629.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008282.0','1018887.0','1', '1','1','6547.76', '1','1','1352.0', '1','1','5195.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096546.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008283.0','1018887.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096547.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008284.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096548.0','1044454.0','3', '2','1','26200.0', '2','1','16049.0', '1','1','10151.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008285.0','1018887.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096549.0','1044454.0','6', '5','2','10786.58', '3','1','4358.0', '4','2','6428.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008286.0','1018887.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096550.0','1044454.0','925', '874','712','9884695.05', '866','710','6300424.73', '569','370','3584270.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008287.0','1018887.0','1', '1','1','18908.0', '1','1','18908.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096551.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008288.0','1018887.0','9', '9','8','52232.07', '9','8','42767.0', '4','3','9465.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096552.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008289.0','1018887.0','4', '4','3','6000.0', '4','3','6000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096553.0','1044454.0','1', '1','1','16592.0', '1','1','16592.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008290.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096554.0','1044454.0','1', '1','1','25464.54', '1','1','14234.0', '1','1','11230.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008291.0','1018887.0','2', '2','1','13247.72', '2','1','3156.0', '1','1','10091.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096555.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008292.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096556.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008293.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096557.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008294.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096558.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008295.0','1018887.0','2', '2','2','13526.0', '2','2','13526.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096559.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008296.0','1018887.0','50', '50','32','223711.4', '50','32','142828.79', '26','10','80882.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096560.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008297.0','1018887.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096561.0','1044454.0','2', '1','1','3891.0', '1','1','3891.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008298.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096562.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008299.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096563.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008300.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096564.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008301.0','1018887.0','2', '2','2','3514.0', '2','2','3514.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096565.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008302.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096566.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008303.0','1018887.0','1', '1','1','9940.1', '1','1','8934.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096567.0','1044454.0','2626', '2510','2114','28370818.67', '2481','2100','17449791.21', '1706','1090','10921027.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008304.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096568.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008305.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096569.0','1044454.0','1', '1','1','513.7', '1','1','513.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008306.0','1018887.0','1', '1','1','6044.29', '1','1','6044.29', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096570.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008307.0','1018887.0','161', '148','44','85961.67', '143','39','76484.84', '96','14','9476.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096571.0','1044454.0','28', '28','18','62500.64', '28','18','54707.0', '16','2','7793.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008308.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096572.0','1044454.0','10', '10','6','19074.0', '10','6','19074.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008309.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096573.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008310.0','1018887.0','1', '1','1','4858.0', '1','1','4358.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096574.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008311.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096575.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008312.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096576.0','1044454.0','98', '92','35','64645.76', '83','26','55328.41', '57','13','9317.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008313.0','1018887.0','1', '1','1','28081.23', '1','1','16752.0', '1','1','11329.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096577.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096578.0','1044454.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008315.0','1018887.0','1', '1','1','4092.0', '1','1','4092.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096579.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008316.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096580.0','1044454.0','5', '5','4','35608.0', '4','4','35608.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008317.0','1018887.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096581.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008318.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096582.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008319.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096583.0','1044454.0','12', '12','9','91764.46', '12','9','54536.0', '8','5','37228.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008320.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096584.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008321.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096585.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008322.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096586.0','1044454.0','1', '1','1','25357.85', '1','1','14858.0', '1','1','10499.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008323.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096587.0','1044454.0','1', '1','1','14234.0', '1','1','14234.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008324.0','1018887.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096588.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008325.0','1018887.0','1', '1','1','3560.0', '1','1','3560.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096589.0','1044454.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008326.0','1018887.0','5', '5','5','38533.02', '5','5','38533.02', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096590.0','1044454.0','2', '2','2','27600.0', '2','2','16858.0', '1','1','10742.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008327.0','1018887.0','1', '1','1','13462.0', '1','1','8962.0', '1','1','4500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096591.0','1044454.0','1', '1','1','14858.0', '1','1','14858.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008328.0','1018887.0','1', '1','1','86.86', '1','1','86.86', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096592.0','1044454.0','7', '7','6','125010.37', '7','6','88438.0', '5','3','36572.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008329.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096593.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008330.0','1018887.0','7494', '7035','5656','27226924.79', '6931','5583','24475985.75', '3160','1013','2750939.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096594.0','1044454.0','181', '162','65','149368.71', '151','54','107164.15', '112','25','42204.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008331.0','1018887.0','1', '1','1','23660.88', '1','1','17063.0', '1','1','6597.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096595.0','1044454.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005405.0','1018887.0','1', '1','1','6331.92', '1','1','4358.0', '1','1','1973.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093669.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005596.0','1018887.0','2', '2','2','10744.0', '2','2','10744.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093860.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005615.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093879.0','1044454.0','1', '1','1','5762.0', '1','1','5762.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008332.0','1018887.0','522', '465','377','4444354.24', '456','371','2869566.5', '288','166','1574787.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096596.0','1044454.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008333.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096597.0','1044454.0','188', '172','99','275922.28', '166','90','211921.56', '114','36','64000.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008334.0','1018887.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096598.0','1044454.0','18', '15','7','9128.09', '13','5','6624.0', '8','4','2504.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008335.0','1018887.0','10', '10','9','34429.79', '10','9','34429.79', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096599.0','1044454.0','13736', '13028','10373','96903915.7', '12840','10284','64636852.1', '8177','4263','32267063.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005437.0','1018887.0','8', '4','3','8358.0', '4','3','8358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093701.0','1044454.0','9', '7','3','33513.08', '7','3','22618.57', '4','2','10894.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008336.0','1018887.0','1', '1','1','6883.4', '1','1','6092.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096600.0','1044454.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005487.0','1018887.0','5', '5','1','2358.0', '4','1','2358.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093751.0','1044454.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005548.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093812.0','1044454.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005438.0','1018887.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093702.0','1044454.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008337.0','1018887.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096601.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008338.0','1018887.0','2', '2','1','4358.0', '2','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096602.0','1044454.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008339.0','1018888.0','1', '1','1','10961.76', '1','1','3028.0', '1','1','7933.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096603.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008340.0','1018888.0','9', '7','2','2564.13', '7','2','2564.13', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096604.0','1044455.0','2', '2','2','12727.42', '2','2','9296.67', '1','1','3430.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005811.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2094075.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008341.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096605.0','1044455.0','1', '1','1','4143.0', '1','1','4143.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008342.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096606.0','1044455.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005610.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093874.0','1044455.0','46', '37','23','49131.23', '37','18','37764.27', '24','11','11366.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008343.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096607.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005454.0','1018888.0','3', '3','3','59209.44', '3','3','25308.0', '3','3','33901.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093718.0','1044455.0','34076', '32811','26507','320703091.61', '32404','26293','205735454.14', '21638','12043','114967637.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005530.0','1018888.0','1', '1','1','6143.0', '1','1','6143.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093794.0','1044455.0','7', '6','2','13100.13', '6','2','3156.0', '2','1','9944.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008344.0','1018888.0','1', '1','1','10997.59', '1','1','1156.0', '1','1','9841.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096608.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008345.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096609.0','1044455.0','1', '1','1','11743.51', '1','1','1352.0', '1','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008346.0','1018888.0','1', '1','1','26200.0', '1','1','12162.0', '1','1','14038.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096610.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008347.0','1018888.0','26', '21','15','100604.17', '21','15','75762.91', '10','3','24841.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096611.0','1044455.0','1', '1','1','5813.06', '1','1','5813.06', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008348.0','1018888.0','3', '2','1','7382.36', '2','1','4358.0', '1','1','3024.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096612.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005372.0','1018888.0','1', '1','1','10256.07', '1','1','6128.0', '1','1','4128.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093636.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005477.0','1018888.0','56', '53','18','27070.21', '49','9','18797.38', '30','11','8272.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093741.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005522.0','1018888.0','1', '1','1','15019.13', '1','1','4299.0', '1','1','10720.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093786.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008349.0','1018888.0','15', '13','8','79222.67', '13','8','48827.94', '10','3','30394.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096613.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008350.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096614.0','1044455.0','6', '6','2','6744.0', '6','2','6744.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008351.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096615.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005648.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093912.0','1044455.0','6', '6','5','16588.07', '6','5','16588.07', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008352.0','1018888.0','1', '1','1','7586.0', '1','1','7586.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096616.0','1044455.0','4', '3','2','13967.41', '3','2','8716.0', '1','1','5251.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008353.0','1018888.0','2', '2','2','6358.0', '2','2','6358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096617.0','1044455.0','1', '1','1','12444.67', '1','1','6440.0', '1','1','6004.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005607.0','1018888.0','22673', '21920','17392','224622253.6', '21661','17288','141822229.36', '15410','8914','82800024.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093871.0','1044455.0','1', '1','1','14858.0', '1','1','14858.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008354.0','1018888.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096618.0','1044455.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005532.0','1018888.0','4', '4','3','11037.39', '4','3','11037.39', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093796.0','1044455.0','1', '1','1','4028.0', '1','1','4028.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008355.0','1018888.0','3', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096619.0','1044455.0','1', '1','1','13401.3', '1','1','4358.0', '1','1','9043.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008356.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096620.0','1044455.0','1', '1','1','11377.76', '1','1','6182.0', '1','1','5195.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008357.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096621.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008358.0','1018888.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096622.0','1044455.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008359.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096623.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005816.0','1018888.0','10', '9','8','45188.1', '9','8','44182.0', '4','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2094080.0','1044455.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005354.0','1018888.0','4', '4','3','55759.99', '4','3','22743.61', '3','3','33016.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093618.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005668.0','1018888.0','2', '2','1','7661.05', '2','1','4358.0', '2','1','3303.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093932.0','1044455.0','3', '3','3','13074.0', '3','3','13074.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008360.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096624.0','1044455.0','1', '1','1','11583.62', '1','1','1156.0', '1','1','10427.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005422.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093686.0','1044455.0','3', '3','1','2000.0', '3','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005505.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093769.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008361.0','1018888.0','460', '430','365','5525884.16', '428','363','3177713.47', '322','229','2348170.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096625.0','1044455.0','5559', '5371','4498','42136790.4', '5316','4467','29248523.42', '3030','1453','12888266.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008362.0','1018888.0','1', '1','1','18889.53', '1','1','8368.0', '1','1','10521.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096626.0','1044455.0','1', '1','1','19986.77', '1','1','18736.77', '1','1','1250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008363.0','1018888.0','75', '63','30','78711.83', '58','20','53567.81', '45','20','25144.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096627.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008364.0','1018888.0','1099', '980','417','851942.82', '910','339','728985.85', '624','128','122956.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096628.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008365.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096629.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005432.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093696.0','1044455.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008366.0','1018888.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096630.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008367.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096631.0','1044455.0','1', '1','1','13339.73', '1','1','3184.0', '1','1','10155.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008368.0','1018888.0','4', '4','4','48310.29', '4','4','10866.0', '3','3','37444.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096632.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008369.0','1018888.0','1', '1','1','16777.51', '1','1','6386.0', '1','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096633.0','1044455.0','1', '1','1','3624.0', '1','1','3624.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005460.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093724.0','1044455.0','1', '1','1','3451.88', '1','1','854.0', '1','1','2597.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005494.0','1018888.0','17', '17','16','174227.71', '17','16','97971.2', '12','10','76256.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093758.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008370.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096634.0','1044455.0','10', '10','3','15919.84', '9','3','10446.0', '4','1','5473.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005497.0','1018888.0','8', '7','7','113914.95', '7','7','70785.0', '5','4','43129.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093761.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2005554.0','1018888.0','2', '2','1','23877.06', '2','1','13485.55', '1','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2093818.0','1044455.0','3', '3','2','6358.0', '3','2','6358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008371.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096635.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005628.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093892.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008372.0','1018888.0','1', '1','1','4699.73', '1','1','4358.0', '1','1','341.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096636.0','1044455.0','6', '5','4','38043.78', '5','4','21849.16', '5','4','16194.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008373.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096637.0','1044455.0','6', '6','4','51441.92', '6','3','31124.84', '5','3','20317.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005587.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093851.0','1044455.0','2', '2','2','14849.81', '2','2','6694.0', '1','1','8155.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008374.0','1018888.0','3', '3','1','16777.51', '3','1','6386.0', '1','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096638.0','1044455.0','44', '37','18','29100.68', '35','15','21570.55', '24','8','7530.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005459.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093723.0','1044455.0','5', '5','4','8000.0', '5','4','8000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008375.0','1018888.0','22', '20','5','10384.19', '18','4','8653.37', '10','3','1730.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096639.0','1044455.0','1', '1','1','12234.0', '1','1','12234.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005576.0','1018888.0','1', '1','1','7159.45', '1','1','7159.45', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093840.0','1044455.0','1', '1','1','25600.0', '1','1','13104.0', '1','1','12496.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008376.0','1018888.0','10', '9','6','21488.9', '9','6','21488.9', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096640.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005718.0','1018888.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093982.0','1044455.0','13', '9','4','6791.4', '8','3','6000.0', '8','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008377.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096641.0','1044455.0','1', '1','1','11196.32', '1','1','3406.0', '1','1','7790.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005699.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093963.0','1044455.0','5', '5','3','30510.37', '5','3','20686.0', '4','1','9824.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005463.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093727.0','1044455.0','2', '2','2','27954.0', '2','2','19216.0', '2','1','8738.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008378.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096642.0','1044455.0','1', '1','1','19452.11', '1','1','4704.0', '1','1','14748.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008379.0','1018888.0','4', '4','4','54726.71', '4','4','45528.0', '3','3','9198.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096643.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008380.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096644.0','1044455.0','1', '1','1','3224.0', '1','1','3224.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005593.0','1018888.0','6', '6','3','22913.63', '5','3','18489.0', '5','1','4424.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093857.0','1044455.0','1', '1','1','24466.0', '1','1','14858.0', '1','1','9608.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005625.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093889.0','1044455.0','67', '55','18','40839.13', '53','13','32009.83', '34','9','8829.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005568.0','1018888.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093832.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005642.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093906.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008381.0','1018888.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096645.0','1044455.0','13', '13','9','37507.58', '13','9','34857.0', '4','1','2650.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008382.0','1018888.0','3', '3','2','7248.0', '2','2','7248.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096646.0','1044455.0','4', '4','4','43782.85', '4','4','38432.0', '1','1','5350.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005492.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093756.0','1044455.0','1', '1','1','14528.0', '1','1','14528.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005502.0','1018888.0','1', '1','1','24185.18', '1','1','9558.0', '1','1','14627.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093766.0','1044455.0','1', '1','1','6092.0', '1','1','6092.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008383.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096647.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005526.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093790.0','1044455.0','1', '1','1','7462.0', '1','1','6962.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008384.0','1018888.0','2', '2','2','7593.0', '2','2','7593.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096648.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008385.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096649.0','1044455.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005558.0','1018888.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093822.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005359.0','1018888.0','1', '1','1','6089.0', '1','1','6089.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093623.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008386.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096650.0','1044455.0','1', '1','1','5364.1', '1','1','4358.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005656.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093920.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008387.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096651.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008388.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096652.0','1044455.0','4', '3','2','11128.0', '3','2','11128.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008389.0','1018888.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096653.0','1044455.0','1', '1','1','17059.51', '1','1','6668.0', '1','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008390.0','1018888.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096654.0','1044455.0','4', '4','2','17291.44', '3','2','12220.0', '4','2','5071.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005566.0','1018888.0','1', '1','1','5588.0', '1','1','5588.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093830.0','1044455.0','1', '1','1','6386.0', '1','1','6386.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008391.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096655.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005644.0','1018888.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093908.0','1044455.0','1', '1','1','15723.08', '1','1','7031.0', '1','1','8692.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005641.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093905.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005436.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093700.0','1044455.0','1', '1','1','12196.34', '1','1','5200.0', '1','1','6996.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008392.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096656.0','1044455.0','1', '1','1','9656.75', '1','1','6092.0', '1','1','3564.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008393.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096657.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005676.0','1018888.0','3', '3','1','2000.0', '3','1','2000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093940.0','1044455.0','1', '1','1','7060.79', '1','1','4358.0', '1','1','2702.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008394.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096658.0','1044455.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008395.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096659.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008396.0','1018888.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096660.0','1044455.0','2', '2','1','1156.0', '2','1','1156.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005627.0','1018888.0','2', '2','2','32077.04', '2','2','9892.0', '2','2','22185.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093891.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008397.0','1018888.0','1', '1','1','2890.0', '1','1','2890.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096661.0','1044455.0','1', '1','1','10208.0', '1','1','10208.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008398.0','1018888.0','1', '1','1','11822.6', '1','1','7091.0', '1','1','4731.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096662.0','1044455.0','25', '24','23','324983.07', '24','23','198606.67', '21','17','126376.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008399.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096663.0','1044455.0','13', '10','6','60078.68', '8','6','38431.0', '7','3','21647.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005730.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093994.0','1044455.0','2', '2','2','6358.0', '2','2','6358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005696.0','1018888.0','1', '1','1','6941.0', '1','1','6941.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093960.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008400.0','1018888.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096664.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005544.0','1018888.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093808.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008401.0','1018888.0','2', '2','2','10754.65', '2','2','8386.0', '1','1','2368.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096665.0','1044455.0','1', '1','1','3156.0', '1','1','3156.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005639.0','1018888.0','1', '1','1','7155.93', '1','1','6386.0', '1','1','769.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093903.0','1044455.0','4', '4','3','29366.42', '4','3','17066.0', '4','1','12300.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008402.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096666.0','1044455.0','5', '5','1','2358.0', '5','1','2358.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008403.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096667.0','1044455.0','1', '1','1','6143.0', '1','1','6143.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005340.0','1018888.0','6', '6','3','18208.38', '6','3','9224.0', '3','1','8984.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093604.0','1044455.0','678', '641','444','1478451.26', '615','393','1225474.3', '391','201','252976.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005458.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093722.0','1044455.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005448.0','1018888.0','1', '1','1','7418.88', '1','1','1156.0', '1','1','6262.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093712.0','1044455.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005549.0','1018888.0','2', '2','1','4141.94', '2','0','0.0', '1','1','4141.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093813.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005450.0','1018888.0','1546', '1419','890','2420605.72', '1332','760','1969526.35', '892','356','451079.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093714.0','1044455.0','3', '3','2','21254.91', '3','2','10072.0', '3','2','11182.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001512.0', '2008404.0','1018888.0','5523', '5082','2943','6595105.85', '4863','2553','5755094.27', '2587','853','840011.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005905.0', '2096668.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005620.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093884.0','1044455.0','15', '15','8','103094.09', '15','8','70052.0', '10','4','33042.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005507.0','1018888.0','1', '1','1','12384.0', '1','1','12384.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093771.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008405.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096669.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005470.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093734.0','1044455.0','2', '2','1','4358.0', '2','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008406.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096670.0','1044455.0','1', '1','1','21596.4', '1','1','9688.26', '1','1','11908.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005510.0','1018888.0','4', '4','3','32396.31', '4','3','17466.0', '2','1','14930.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093774.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005485.0','1018888.0','1', '1','1','16067.43', '1','1','4358.0', '1','1','11709.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093749.0','1044455.0','2', '2','2','10967.5', '2','2','7378.0', '1','1','3589.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008407.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096671.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008408.0','1018888.0','1', '1','1','3926.67', '1','1','2890.0', '1','1','1036.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096672.0','1044455.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005727.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093991.0','1044455.0','4', '2','2','19042.6', '2','2','8716.0', '2','1','10326.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005592.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093856.0','1044455.0','20216', '19569','16342','171626501.23', '19435','16214','110749654.6', '11834','6465','60876846.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008409.0','1018888.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096673.0','1044455.0','1', '1','1','6092.0', '1','1','6092.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008410.0','1018888.0','3', '3','3','6004.0', '3','3','6004.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096674.0','1044455.0','1', '1','1','17930.65', '1','1','1352.0', '1','1','16578.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008411.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096675.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005713.0','1018888.0','4', '4','2','9722.1', '4','2','8716.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093977.0','1044455.0','4594', '4454','3725','47400094.25', '4412','3692','29309671.5', '3023','1901','18090422.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008412.0','1018888.0','1', '1','1','24051.32', '1','1','6386.0', '1','1','17665.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096676.0','1044455.0','6767', '6577','5407','68401497.11', '6531','5361','42886616.94', '4475','2746','25514880.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008413.0','1018888.0','4', '4','2','8716.0', '4','2','8716.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096677.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008414.0','1018888.0','2', '2','2','18049.85', '2','2','11276.0', '1','1','6773.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096678.0','1044455.0','5', '5','5','21960.0', '5','5','21960.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008415.0','1018888.0','2', '2','2','31119.84', '2','2','14967.0', '2','2','16152.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096679.0','1044455.0','1', '1','1','26200.0', '1','1','12841.28', '1','1','13358.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008416.0','1018888.0','1', '1','1','791.4', '0','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096680.0','1044455.0','2', '2','2','15848.08', '2','2','7156.0', '2','1','8692.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008417.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096681.0','1044455.0','6', '6','5','40106.0', '6','5','40106.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008418.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096682.0','1044455.0','2', '2','1','1156.0', '2','1','1156.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008419.0','1018888.0','1', '1','1','10654.14', '1','1','4358.0', '1','1','6296.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096683.0','1044455.0','2', '2','2','25463.12', '2','2','11536.0', '2','1','13927.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008420.0','1018888.0','3', '3','2','5149.4', '2','1','4358.0', '3','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096684.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005457.0','1018888.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2093721.0','1044455.0','1', '1','1','26200.0', '1','1','10737.8', '1','1','15462.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008421.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096685.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008422.0','1018888.0','2', '1','1','5226.0', '1','1','5226.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096686.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008423.0','1018888.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096687.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008424.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096688.0','1044455.0','1', '1','1','13361.45', '1','1','1156.0', '1','1','12205.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005589.0','1018888.0','11', '10','8','58493.02', '10','8','37710.0', '7','2','20783.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093853.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005654.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093918.0','1044455.0','1', '1','1','20228.53', '1','1','5710.0', '1','1','14518.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008425.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096689.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005691.0','1018888.0','1821', '1681','1038','2789750.26', '1562','831','2276450.53', '1120','462','513299.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093955.0','1044455.0','1', '1','1','20283.71', '1','1','9422.0', '1','1','10861.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005743.0','1018888.0','1', '1','1','4136.45', '1','1','4136.45', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2094007.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005472.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093736.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008426.0','1018888.0','1427', '1285','721','1626873.69', '1205','598','1399245.26', '699','260','227628.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096690.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005712.0','1018888.0','3', '3','1','4850.6', '3','1','4850.6', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093976.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008427.0','1018888.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096691.0','1044455.0','1', '1','1','13839.01', '1','1','6092.0', '1','1','7747.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008428.0','1018888.0','1', '1','1','10394.89', '1','1','5862.0', '1','1','4532.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096692.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008429.0','1018888.0','1', '1','1','1232.36', '1','0','0.0', '1','1','1232.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096693.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008430.0','1018888.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096694.0','1044455.0','6', '6','5','16386.0', '6','5','16386.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008431.0','1018888.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096695.0','1044455.0','1', '1','1','6143.0', '1','1','6143.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008432.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096696.0','1044455.0','341', '315','202','599384.08', '305','184','466308.29', '180','65','133075.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005513.0','1018888.0','4', '4','4','81819.38', '4','4','45154.0', '4','4','36665.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2093777.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008433.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096697.0','1044455.0','1', '1','1','12951.96', '1','1','11168.32', '1','1','1783.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008434.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096698.0','1044455.0','4788', '4656','3914','37158066.86', '4618','3886','26485619.28', '2640','1293','10672447.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008435.0','1018888.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096699.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005529.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2093793.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008436.0','1018888.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096700.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005669.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093933.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008437.0','1018888.0','2', '2','2','14072.25', '2','2','7697.0', '2','2','6375.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096701.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008438.0','1018888.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096702.0','1044455.0','5089', '4655','2815','6528673.99', '4381','2337','5387179.17', '2775','1148','1141494.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008439.0','1018888.0','3', '3','3','43164.0', '3','3','31492.0', '2','1','11672.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096703.0','1044455.0','1', '1','1','9228.0', '1','1','9228.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008440.0','1018888.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096704.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005633.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2093897.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008441.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096705.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005474.0','1018888.0','1117', '1001','469','1254679.62', '962','419','1028582.51', '572','136','226097.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2093738.0','1044455.0','51', '42','18','27079.6', '33','8','16000.0', '31','14','11079.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008442.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096706.0','1044455.0','939', '859','469','1353975.27', '798','389','1079623.75', '587','203','274351.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005736.0','1018888.0','1', '1','1','3809.33', '1','1','3017.93', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2094000.0','1044455.0','3', '3','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008443.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096707.0','1044455.0','199', '186','108','330326.56', '175','97','277614.99', '121','28','52711.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008444.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096708.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008445.0','1018888.0','1', '1','1','4765.4', '1','1','4765.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096709.0','1044455.0','17', '17','5','14473.44', '14','4','9887.48', '10','2','4585.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008446.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096710.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008447.0','1018888.0','1', '1','1','23530.34', '1','1','1794.0', '1','1','21736.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096711.0','1044455.0','1', '1','1','3352.0', '1','1','3352.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005657.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093921.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008448.0','1018888.0','49', '44','35','181947.1', '44','31','148089.77', '32','23','33857.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096712.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008449.0','1018888.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096713.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008450.0','1018888.0','1', '1','1','4028.0', '1','1','4028.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096714.0','1044455.0','753', '673','381','1052377.11', '634','331','849656.85', '420','136','202720.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005659.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2093923.0','1044455.0','5', '5','3','21000.89', '5','3','10386.0', '3','1','10614.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008451.0','1018888.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096715.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008452.0','1018888.0','1', '1','1','8345.36', '1','1','4358.0', '1','1','3987.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096716.0','1044455.0','412', '390','286','993518.82', '377','276','852386.58', '271','101','141132.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005799.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2094063.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008453.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096717.0','1044455.0','1', '1','1','6237.15', '1','1','6237.15', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008454.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096718.0','1044455.0','1', '1','1','4824.72', '1','1','1352.0', '1','1','3472.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008455.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096719.0','1044455.0','208', '192','119','301382.93', '172','87','235763.27', '147','61','65619.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008456.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096720.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008457.0','1018888.0','1', '1','1','500.0', '1','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096721.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008458.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096722.0','1044455.0','1', '1','1','1064.4', '1','1','273.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008459.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096723.0','1044455.0','2', '2','1','14234.0', '2','1','14234.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008460.0','1018888.0','1', '1','1','7405.31', '1','1','3072.0', '1','1','4333.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096724.0','1044455.0','2', '2','1','12112.18', '2','1','3672.0', '2','1','8440.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008461.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096725.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005617.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2093881.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008462.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096726.0','1044455.0','1', '1','1','3970.1', '1','1','3970.1', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005539.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2093803.0','1044455.0','1', '1','1','4858.0', '1','1','4358.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008463.0','1018888.0','1356', '1233','816','2720084.3', '1163','744','2261891.99', '806','278','458192.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096727.0','1044455.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005512.0','1018888.0','5', '5','2','8069.54', '4','2','5156.0', '5','2','2913.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2093776.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008464.0','1018888.0','8608', '7846','5287','18894753.46', '7403','4434','17123991.11', '4887','2100','1770762.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096728.0','1044455.0','2', '2','1','2592.16', '2','1','2000.0', '1','1','592.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005754.0','1018888.0','10', '10','8','139982.85', '10','8','64432.65', '8','7','75550.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2094018.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2005694.0','1018888.0','1', '1','1','10275.15', '1','1','1156.0', '1','1','9119.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2093958.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008465.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096729.0','1044455.0','1', '1','1','730.0', '1','1','730.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008466.0','1018888.0','1', '1','1','3368.0', '1','1','3368.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096730.0','1044455.0','1', '1','1','819.93', '1','0','0.0', '1','1','819.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008467.0','1018888.0','4', '3','2','2791.4', '3','1','2000.0', '3','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096731.0','1044455.0','3', '3','3','6000.0', '3','3','6000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008468.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096732.0','1044455.0','3', '3','2','4000.0', '3','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008469.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096733.0','1044455.0','3', '3','2','8828.0', '3','2','8828.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005618.0','1018888.0','3', '3','2','6358.0', '3','2','6358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093882.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008470.0','1018888.0','1', '1','1','26200.0', '1','1','15104.0', '1','1','11096.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096734.0','1044455.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008471.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096735.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008472.0','1018888.0','1', '1','1','4572.7', '1','1','4358.0', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096736.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008473.0','1018888.0','1', '1','1','3792.36', '1','1','3792.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096737.0','1044455.0','3', '3','3','13706.34', '3','3','13635.1', '3','1','71.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008474.0','1018888.0','1', '1','1','3736.0', '1','1','3736.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096738.0','1044455.0','6', '5','2','5241.4', '5','2','4450.0', '4','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093890.0','1044455.0','22', '21','16','48190.53', '17','8','28888.15', '19','11','19302.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008475.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096739.0','1044455.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008476.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096740.0','1044455.0','1', '1','1','8750.0', '1','1','8200.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008477.0','1018888.0','1', '1','1','5184.0', '1','1','5184.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096741.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005594.0','1018888.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093858.0','1044455.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008478.0','1018888.0','1', '1','1','6028.58', '1','1','2890.0', '1','1','3138.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096742.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008479.0','1018888.0','1', '1','1','4708.64', '1','1','3352.0', '1','1','1356.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096743.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008480.0','1018888.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096744.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005835.0','1018888.0','3', '3','2','2880.0', '3','2','2880.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2094099.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008481.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096745.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008482.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096746.0','1044455.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008483.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096747.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008484.0','1018888.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096748.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2005804.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2094068.0','1044455.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008485.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096749.0','1044455.0','147', '130','91','345125.19', '124','85','314728.22', '81','19','30396.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2005805.0','1018888.0','3', '3','2','5149.4', '3','1','4358.0', '2','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2094069.0','1044455.0','2328', '2232','1659','6341798.41', '2144','1300','5305750.3', '1724','976','1036048.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008486.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096750.0','1044455.0','1', '1','1','1156.0', '1','1','1156.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008487.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096751.0','1044455.0','2', '2','2','5617.9', '2','1','3734.0', '2','2','1883.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008488.0','1018888.0','2', '2','1','5909.0', '2','1','5909.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096752.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008489.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096753.0','1044455.0','2', '2','1','4358.0', '2','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008490.0','1018888.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096754.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008491.0','1018888.0','16', '16','13','72964.62', '16','13','49203.0', '9','3','23761.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096755.0','1044455.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008492.0','1018888.0','1', '1','1','6143.0', '1','1','6143.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096756.0','1044455.0','1', '1','1','791.4', '0','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008493.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096757.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008494.0','1018888.0','1', '1','1','2791.4', '1','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096758.0','1044455.0','21', '19','5','7248.14', '14','4','5746.18', '12','2','1501.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008495.0','1018888.0','2', '1','1','9119.7', '1','1','8092.0', '1','1','1027.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096759.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008496.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096760.0','1044455.0','68', '65','41','82053.02', '63','31','69478.05', '48','18','12574.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008497.0','1018888.0','3', '3','3','4226.9', '1','1','2000.0', '3','3','2226.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096761.0','1044455.0','574', '528','233','509732.74', '506','185','428618.75', '298','74','81113.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005649.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2093913.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008498.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096762.0','1044455.0','22', '21','12','51568.77', '17','12','38178.86', '18','2','13389.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008499.0','1018888.0','2', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096763.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008500.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096764.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008501.0','1018888.0','1', '1','1','9325.46', '1','1','8558.0', '1','1','767.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096765.0','1044455.0','70', '61','38','137675.79', '60','34','109824.7', '38','11','27851.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008502.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096766.0','1044455.0','37', '37','31','138834.6', '36','23','101275.72', '32','19','37558.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008503.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096767.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008504.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096768.0','1044455.0','5', '3','1','2000.0', '3','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008505.0','1018888.0','1', '1','1','9945.88', '1','1','7348.0', '1','1','2597.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096769.0','1044455.0','44', '44','14','24015.02', '39','13','22422.29', '31','3','1592.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2005767.0','1018888.0','2', '2','2','23208.63', '2','2','10831.33', '2','1','12377.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2094031.0','1044455.0','1', '1','1','2819.4', '1','1','2028.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008506.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096770.0','1044455.0','2', '2','2','22767.33', '2','2','15299.0', '2','1','7468.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005807.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2094071.0','1044455.0','3', '2','2','2847.05', '2','1','2312.0', '2','1','535.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008507.0','1018888.0','1', '1','1','4572.7', '1','1','4358.0', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096771.0','1044455.0','1', '1','1','13846.21', '1','1','10168.0', '1','1','3678.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008508.0','1018888.0','1959', '1803','1045','2713824.04', '1706','860','2209179.81', '1298','441','504644.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096772.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008509.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096773.0','1044455.0','244', '223','123','258305.25', '202','87','199437.52', '149','59','58867.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008510.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096774.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008511.0','1018888.0','11', '10','6','22389.51', '10','5','19864.0', '6','3','2525.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096775.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008512.0','1018888.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096776.0','1044455.0','7', '7','2','2535.05', '6','1','2000.0', '5','1','535.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008513.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096777.0','1044455.0','1', '1','1','5200.31', '1','1','4015.98', '1','1','1184.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008514.0','1018888.0','2', '2','2','1608.76', '2','2','1608.76', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096778.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008515.0','1018888.0','1023', '943','551','1984137.12', '912','484','1529152.25', '678','242','454984.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096779.0','1044455.0','2', '2','2','14920.05', '2','2','8242.0', '1','1','6678.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008516.0','1018888.0','1', '1','1','6903.53', '1','1','1156.0', '1','1','5747.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096780.0','1044455.0','14', '11','4','10063.78', '11','4','10063.78', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008517.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096781.0','1044455.0','37', '33','17','40061.22', '32','16','37481.27', '24','2','2579.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008518.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096782.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008519.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096783.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008520.0','1018888.0','6237', '5866','4313','15598097.04', '5590','3381','13335877.42', '4240','2242','2262219.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096784.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008521.0','1018888.0','3', '3','3','12871.5', '3','3','11074.0', '2','2','1797.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096785.0','1044455.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005726.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2093990.0','1044455.0','1', '1','1','8342.0', '1','1','8342.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008522.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096786.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008523.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096787.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008524.0','1018888.0','1', '1','1','4820.0', '1','1','4820.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096788.0','1044455.0','1', '1','1','8396.47', '1','1','6375.0', '1','1','2021.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005824.0','1018888.0','2', '2','2','8292.0', '2','2','8292.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2094088.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008525.0','1018888.0','1', '1','1','2592.16', '1','1','2000.0', '1','1','592.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096789.0','1044455.0','599', '535','291','882724.9', '507','258','697368.73', '342','93','185356.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008526.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096790.0','1044455.0','1', '1','1','12391.51', '1','1','2000.0', '1','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008527.0','1018888.0','1', '1','1','1944.16', '1','1','1352.0', '1','1','592.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096791.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008528.0','1018888.0','1', '1','1','2887.55', '1','1','2887.55', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096792.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2005735.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2093999.0','1044455.0','29', '28','10','45936.92', '26','8','38202.7', '20','5','7734.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008529.0','1018888.0','6', '6','1','16679.91', '5','1','1736.0', '5','1','14943.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096793.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008530.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096794.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008531.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096795.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008532.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096796.0','1044455.0','3283', '3086','2246','8337669.87', '2967','1852','7280257.6', '2059','1043','1057412.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2005560.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2093824.0','1044455.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008533.0','1018888.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096797.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008534.0','1018888.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096798.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008535.0','1018888.0','156', '140','71','277940.19', '137','68','229819.36', '105','20','48120.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096799.0','1044455.0','1', '1','1','214.7', '0','0','0.0', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2005537.0','1018888.0','1605', '1400','613','1535549.94', '1308','541','1335301.6', '787','154','200248.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2093801.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008536.0','1018888.0','1', '1','1','4916.55', '1','1','4358.0', '1','1','558.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096800.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005486.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093750.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008537.0','1018888.0','1', '1','1','761.91', '1','0','0.0', '1','1','761.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096801.0','1044455.0','1', '1','1','11373.63', '1','1','2358.0', '1','1','9015.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008538.0','1018888.0','11097', '10391','7481','29134380.75', '9985','6545','25922918.27', '6230','2855','3211462.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096802.0','1044455.0','1', '1','1','2952.0', '1','1','2952.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008539.0','1018888.0','1', '1','1','6033.16', '1','1','1156.0', '1','1','4877.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096803.0','1044455.0','1', '1','1','11292.0', '1','1','11292.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008540.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096804.0','1044455.0','89', '86','45','128075.85', '82','37','94723.27', '53','16','33352.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008541.0','1018888.0','3327', '3054','2102','7458819.72', '2844','1678','6474999.74', '2026','950','983819.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096805.0','1044455.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008542.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096806.0','1044455.0','4', '4','3','35993.83', '4','3','26399.0', '2','1','9594.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008543.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096807.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008544.0','1018888.0','4', '4','3','9566.0', '4','3','9566.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096808.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2005653.0','1018888.0','1', '1','1','13259.51', '1','1','2868.0', '1','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2093917.0','1044455.0','4', '4','2','25842.23', '4','2','10147.0', '2','1','15695.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008545.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096809.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2005569.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2093833.0','1044455.0','312', '284','149','327185.77', '253','108','248405.99', '202','78','78779.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008546.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096810.0','1044455.0','1', '1','1','2912.0', '1','1','2912.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008547.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096811.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008548.0','1018888.0','1350', '1251','808','2833500.99', '1202','728','2184612.66', '805','365','648888.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096812.0','1044455.0','1', '1','1','9699.0', '1','1','9699.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008549.0','1018888.0','1', '1','1','2890.0', '1','1','2890.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096813.0','1044455.0','5', '5','5','29120.98', '5','5','21177.0', '3','2','7943.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008550.0','1018888.0','1', '1','1','24275.51', '1','1','13884.0', '1','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096814.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008551.0','1018888.0','8', '7','1','293.24', '6','1','293.24', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096815.0','1044455.0','3', '3','2','8986.76', '3','2','8986.76', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008552.0','1018888.0','2', '2','1','2941.0', '2','1','2941.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096816.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008553.0','1018888.0','3', '2','1','2000.0', '1','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096817.0','1044455.0','1', '1','1','791.4', '0','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008554.0','1018888.0','3', '3','3','32350.76', '3','3','14773.8', '3','2','17576.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096818.0','1044455.0','1', '1','1','1546.63', '1','1','755.23', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008555.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096819.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008556.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096820.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008557.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096821.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008558.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096822.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008559.0','1018888.0','1', '1','1','12696.0', '1','1','12696.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096823.0','1044455.0','762', '679','414','1097157.11', '629','350','897635.13', '440','162','199521.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008560.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096824.0','1044455.0','4', '4','3','8020.16', '4','3','5156.0', '2','1','2864.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008561.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096825.0','1044455.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005677.0','1018888.0','3', '3','2','4000.0', '3','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2093941.0','1044455.0','3068', '2767','1427','4613369.6', '2610','1216','3637120.68', '1762','552','976248.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008562.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096826.0','1044455.0','8', '7','2','5523.76', '7','2','5523.76', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008563.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096827.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008564.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096828.0','1044455.0','1', '1','1','12909.0', '1','1','12909.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005501.0','1018888.0','2', '2','1','5031.0', '2','1','5031.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093765.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008565.0','1018888.0','2', '2','2','18777.91', '2','2','16636.0', '2','2','2141.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096829.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005698.0','1018888.0','5', '5','3','6000.0', '5','3','6000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093962.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008566.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096830.0','1044455.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005523.0','1018888.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093787.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008567.0','1018888.0','3', '3','3','13652.0', '3','3','13652.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096831.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008568.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096832.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2005572.0','1018888.0','5', '5','5','29620.0', '5','5','25827.0', '2','2','3793.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2093836.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005602.0','1018888.0','1', '1','1','1156.0', '1','1','1156.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093866.0','1044455.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2005669.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2093933.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008569.0','1018888.0','25', '25','16','91751.77', '22','14','76989.07', '22','10','14762.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096833.0','1044455.0','1', '1','1','3372.0', '1','1','3372.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005635.0','1018888.0','2', '2','2','2074.0', '2','2','1574.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093899.0','1044455.0','1', '1','1','4028.0', '1','1','4028.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008570.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096834.0','1044455.0','3', '3','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008571.0','1018888.0','13509', '12255','6090','14883747.93', '11713','5118','12579006.51', '6702','1892','2304741.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096835.0','1044455.0','1', '1','1','1156.0', '1','1','1156.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008572.0','1018888.0','3', '3','2','4000.0', '3','2','4000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096836.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005812.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2094076.0','1044455.0','1', '1','1','2402.42', '1','1','2000.0', '1','1','402.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008573.0','1018888.0','1', '1','1','2314.52', '1','1','2314.52', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096837.0','1044455.0','6', '6','5','28605.73', '6','5','22017.0', '3','2','6588.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005814.0','1018888.0','38', '32','13','55582.4', '30','13','47180.82', '24','5','8401.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2094078.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008574.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096838.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008575.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096839.0','1044455.0','1', '1','1','1736.0', '1','1','1736.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008576.0','1018888.0','2', '2','2','11734.86', '2','2','7923.0', '2','1','3811.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096840.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008577.0','1018888.0','1', '1','1','3615.0', '1','1','3565.0', '1','1','50.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096841.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008578.0','1018888.0','208', '187','58','195641.5', '177','43','130852.3', '114','31','64789.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096842.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008579.0','1018888.0','3', '3','2','9248.0', '3','2','9248.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096843.0','1044455.0','2', '2','1','17557.87', '2','1','9918.0', '2','1','7639.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008580.0','1018888.0','6', '6','5','42141.08', '6','3','38288.0', '5','3','3853.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096844.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008581.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096845.0','1044455.0','3', '3','1','1389.0', '3','1','1389.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008582.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096846.0','1044455.0','6', '5','2','4000.0', '5','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2005564.0','1018888.0','1', '1','1','1156.0', '1','1','1156.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2093828.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005665.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2093929.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005679.0','1018888.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093943.0','1044455.0','7', '7','4','20581.76', '7','4','15386.0', '6','1','5195.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008583.0','1018888.0','5822', '5544','4122','17790525.49', '5367','3482','15097611.6', '3882','1965','2692913.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096847.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005475.0','1018888.0','1', '1','1','4994.76', '1','1','4358.0', '1','1','636.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093739.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008584.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096848.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008585.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096849.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005714.0','1018888.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093978.0','1044455.0','3', '3','3','18307.51', '3','2','7032.0', '3','2','11275.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005837.0','1018888.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2094101.0','1044455.0','2', '2','2','9658.07', '2','2','8866.67', '2','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005800.0','1018888.0','1', '1','1','1200.0', '1','0','0.0', '1','1','1200.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2094064.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005725.0','1018888.0','17', '16','7','33892.02', '16','7','33338.4', '8','1','553.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093989.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008586.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096850.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008587.0','1018888.0','3318', '3136','2316','8461138.47', '2933','1750','7097855.38', '2380','1339','1363283.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096851.0','1044455.0','1', '1','1','11858.0', '1','1','4358.0', '1','1','7500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008588.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096852.0','1044455.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008589.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096853.0','1044455.0','1', '1','1','5514.0', '1','1','5514.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008590.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096854.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005717.0','1018888.0','1', '1','1','1156.0', '1','1','1156.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093981.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008591.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096855.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008592.0','1018888.0','1', '1','1','6860.0', '1','1','6860.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096856.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005715.0','1018888.0','1', '1','1','214.7', '1','0','0.0', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2093979.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008593.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096857.0','1044455.0','1', '1','1','4067.7', '1','1','2578.0', '1','1','1489.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008594.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096858.0','1044455.0','3', '3','1','2000.0', '3','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008595.0','1018888.0','1', '1','1','2592.16', '1','1','2000.0', '1','1','592.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096859.0','1044455.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008596.0','1018888.0','6', '3','1','1797.19', '3','1','1797.19', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096860.0','1044455.0','106', '99','60','91238.38', '82','33','64453.53', '84','34','26784.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008597.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096861.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008598.0','1018888.0','599', '526','221','493712.35', '486','197','425727.19', '328','60','67985.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096862.0','1044455.0','1', '1','1','16837.43', '1','1','5552.0', '1','1','11285.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008599.0','1018888.0','2', '2','1','260.9', '2','0','0.0', '2','1','260.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096863.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008600.0','1018888.0','36', '32','16','35047.65', '27','15','33464.85', '20','2','1582.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096864.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008601.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096865.0','1044455.0','6', '6','5','16331.58', '6','5','14039.02', '6','2','2292.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008602.0','1018888.0','92', '86','39','130939.38', '81','31','91339.29', '64','22','39600.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096866.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005553.0','1018888.0','163', '153','77','250222.36', '148','72','198945.88', '85','23','51276.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2093817.0','1044455.0','3', '3','3','20101.51', '3','3','9710.0', '2','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008603.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096867.0','1044455.0','4', '4','3','10767.0', '4','3','10767.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005619.0','1018888.0','1', '1','1','5079.89', '1','1','5079.89', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2093883.0','1044455.0','2', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008604.0','1018888.0','9', '9','7','102239.2', '9','7','49559.24', '7','5','52679.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096868.0','1044455.0','2', '2','2','9134.93', '2','2','4578.0', '2','1','4556.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008605.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096869.0','1044455.0','3755', '3463','2167','6401025.88', '3362','1997','5386215.11', '1901','621','1014810.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008606.0','1018888.0','5259', '5014','3881','20686438.76', '4854','3444','16161876.83', '3589','2001','4524561.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096870.0','1044455.0','4', '4','3','5700.27', '4','3','5412.2', '2','1','288.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008607.0','1018888.0','2', '2','2','12922.5', '2','2','11125.0', '2','2','1797.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096871.0','1044455.0','1', '1','1','25270.11', '1','1','14878.6', '1','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008608.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096872.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005443.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093707.0','1044455.0','2494', '2281','1164','2454863.94', '2102','867','2002281.59', '1481','487','452582.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008609.0','1018888.0','1', '1','1','12234.0', '1','1','12234.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096873.0','1044455.0','1', '1','1','11394.0', '1','1','11394.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005599.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2093863.0','1044455.0','4', '4','3','7876.2', '3','3','5736.0', '3','1','2140.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005689.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2093953.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2005781.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2094045.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005819.0','1018888.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2094083.0','1044455.0','1017', '918','403','1193354.99', '877','362','970489.32', '535','132','222865.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005802.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2094066.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2005820.0','1018888.0','1', '1','1','10566.99', '1','1','5756.0', '1','1','4810.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2094084.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008610.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096874.0','1044455.0','7', '7','4','28451.51', '7','4','18060.0', '6','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008611.0','1018888.0','1', '1','1','3894.39', '1','1','2531.52', '1','1','1362.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096875.0','1044455.0','3', '3','2','6358.0', '3','2','6358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008612.0','1018888.0','1', '1','1','3352.0', '1','1','3352.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096876.0','1044455.0','3', '3','2','13552.0', '3','2','13552.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008613.0','1018888.0','1', '1','1','2890.0', '1','1','2890.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096877.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008614.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096878.0','1044455.0','2', '2','2','7612.0', '2','2','7612.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001529.0', '2008615.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005906.0', '2096879.0','1044455.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008616.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096880.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008617.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096881.0','1044455.0','2', '2','2','7565.0', '2','2','7565.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008618.0','1018888.0','2', '2','1','4358.0', '2','1','4358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096882.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008619.0','1018888.0','1', '1','1','7725.4', '1','1','6934.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096883.0','1044455.0','250', '218','77','282986.52', '206','69','202877.79', '134','27','80108.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008620.0','1018888.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096884.0','1044455.0','261', '227','104','248245.88', '210','85','200556.94', '153','39','47688.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008621.0','1018888.0','26', '22','9','34806.4', '19','9','33800.3', '13','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096885.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008622.0','1018888.0','5', '5','4','11745.0', '5','4','11745.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096886.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008623.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096887.0','1044455.0','12761', '11826','8052','28732301.02', '11261','6589','25578382.99', '7405','3265','3153918.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008624.0','1018888.0','2', '2','1','6092.0', '2','1','6092.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096888.0','1044455.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008625.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096889.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008626.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096890.0','1044455.0','7', '7','5','38130.16', '7','5','15918.0', '2','2','22212.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008627.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096891.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008628.0','1018888.0','3', '3','1','4358.0', '3','1','4358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096892.0','1044455.0','2', '2','2','15022.78', '2','2','12708.0', '2','1','2314.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008629.0','1018888.0','1', '1','1','11581.76', '1','1','6386.0', '1','1','5195.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096893.0','1044455.0','2', '2','2','15693.34', '2','2','8716.0', '1','1','6977.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008630.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096894.0','1044455.0','1', '1','1','5465.36', '1','1','3894.04', '1','1','1571.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008631.0','1018888.0','1', '1','1','19556.8', '1','1','16696.71', '1','1','2860.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096895.0','1044455.0','1', '1','1','4416.67', '1','1','4028.0', '1','1','388.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008632.0','1018888.0','1', '1','1','2391.3', '1','1','1385.2', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096896.0','1044455.0','2', '2','2','19394.04', '2','2','13594.75', '1','1','5799.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008633.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096897.0','1044455.0','2', '2','2','7149.4', '2','2','6358.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008634.0','1018888.0','1', '1','1','3168.22', '1','1','2000.0', '1','1','1168.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096898.0','1044455.0','2', '2','2','29385.03', '2','2','14256.0', '1','1','15129.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008635.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096899.0','1044455.0','1', '1','1','5149.4', '1','1','4358.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008636.0','1018888.0','3', '2','1','4358.0', '2','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096900.0','1044455.0','1', '1','1','24462.49', '1','1','13730.0', '1','1','10732.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008637.0','1018888.0','3', '3','2','2546.25', '3','1','2000.0', '3','1','546.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096901.0','1044455.0','1', '1','1','12234.0', '1','1','12234.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008638.0','1018888.0','3', '3','2','9098.38', '3','2','8716.0', '3','1','382.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096902.0','1044455.0','61', '55','34','366161.49', '51','34','212574.03', '38','20','153587.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008639.0','1018888.0','11', '11','9','23904.77', '11','8','21529.99', '9','3','2374.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096903.0','1044455.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008640.0','1018888.0','1', '1','1','21261.43', '1','1','13561.08', '1','1','7700.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096904.0','1044455.0','1', '1','1','5144.0', '1','1','5144.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008641.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096905.0','1044455.0','2', '2','2','5323.27', '2','2','5323.27', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008642.0','1018888.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096906.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008643.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096907.0','1044455.0','10', '9','8','10057.08', '8','5','6690.22', '7','4','3366.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008644.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096908.0','1044455.0','1', '1','1','13620.04', '1','1','5835.0', '1','1','7785.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008645.0','1018888.0','1', '1','1','9558.0', '1','1','9558.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096909.0','1044455.0','3', '3','3','22222.1', '3','3','21013.0', '3','1','1209.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008646.0','1018888.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096910.0','1044455.0','1', '1','1','2500.0', '1','1','2000.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008647.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096911.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008648.0','1018888.0','2', '2','1','15438.38', '2','1','4890.0', '2','1','10548.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096912.0','1044455.0','1', '1','1','3230.0', '1','1','3230.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008649.0','1018888.0','4850', '4510','2930','7773114.43', '4183','2332','6207275.35', '3373','1363','1565839.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096913.0','1044455.0','1', '1','1','214.7', '1','0','0.0', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008650.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096914.0','1044455.0','1', '1','1','2050.0', '1','1','2050.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008651.0','1018888.0','1', '1','1','7098.1', '1','1','6092.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096915.0','1044455.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008652.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096916.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008653.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096917.0','1044455.0','502', '464','276','812036.82', '431','244','686328.84', '329','100','125707.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008654.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096918.0','1044455.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008655.0','1018888.0','1', '1','1','6892.64', '1','1','6092.0', '1','1','800.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096919.0','1044455.0','149', '133','85','206162.47', '118','59','164128.62', '103','50','42033.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008656.0','1018888.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096920.0','1044455.0','1', '1','1','2546.25', '1','1','2000.0', '1','1','546.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008657.0','1018888.0','1', '1','1','342.56', '1','0','0.0', '1','1','342.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096921.0','1044455.0','1', '1','1','5886.57', '1','1','5594.51', '1','1','292.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008658.0','1018888.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096922.0','1044455.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008659.0','1018889.0','17', '16','9','60047.01', '16','8','38794.75', '8','3','21252.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096923.0','1044456.0','1', '1','1','2044.0', '1','1','2044.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008660.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096924.0','1044456.0','1', '1','1','23807.65', '1','1','12234.0', '1','1','11573.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008661.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096925.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008662.0','1018889.0','66', '58','30','169209.51', '54','28','104502.93', '38','8','64706.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096926.0','1044456.0','8549', '7668','4273','9214517.98', '6838','3087','7234671.37', '5344','1952','1979846.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008663.0','1018889.0','1', '1','1','6092.0', '1','1','6092.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096927.0','1044456.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008664.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096928.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008665.0','1018889.0','1', '1','1','9429.55', '1','1','3230.0', '1','1','6199.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096929.0','1044456.0','248', '242','199','952923.62', '238','170','789135.8', '180','98','163787.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008666.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096930.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008667.0','1018889.0','14064', '13503','10892','82216491.01', '13308','10336','58564695.65', '8629','4815','23651795.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096931.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008668.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096932.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008669.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096933.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008670.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096934.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008671.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096935.0','1044456.0','1', '1','1','13467.0', '1','1','13467.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008672.0','1018889.0','12', '11','5','10782.6', '11','3','8840.01', '8','2','1942.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096936.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008673.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096937.0','1044456.0','1', '1','1','1915.0', '1','1','1915.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008674.0','1018889.0','7', '6','5','33272.16', '6','5','16356.0', '4','1','16916.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096938.0','1044456.0','1', '1','1','6672.12', '1','1','2802.0', '1','1','3870.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008675.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096939.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008676.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096940.0','1044456.0','106', '98','68','161522.0', '89','43','113062.33', '73','49','48459.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008677.0','1018889.0','4', '3','2','2791.4', '3','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096941.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008678.0','1018889.0','3', '3','3','9349.58', '3','3','6068.0', '3','2','3281.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096942.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008679.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096943.0','1044456.0','1969', '1811','1158','2742456.54', '1660','790','2059604.98', '1347','684','682851.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008680.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096944.0','1044456.0','5', '3','3','28242.36', '3','3','18550.37', '2','2','9691.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008681.0','1018889.0','2', '2','1','3722.4', '2','1','3722.4', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096945.0','1044456.0','4', '4','3','4820.0', '4','3','4820.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008682.0','1018889.0','1', '1','1','3318.0', '1','1','3318.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096946.0','1044456.0','182', '179','140','704869.37', '177','125','584675.95', '123','58','120193.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008683.0','1018889.0','1', '1','1','26200.0', '1','1','15971.39', '1','1','10228.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096947.0','1044456.0','1', '1','1','820.0', '1','1','820.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008684.0','1018889.0','1', '1','1','5588.0', '1','1','5588.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096948.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008685.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096949.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008686.0','1018889.0','1', '1','1','13139.95', '1','1','5058.0', '1','1','8081.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096950.0','1044456.0','8', '8','4','6791.4', '8','3','6000.0', '5','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008687.0','1018889.0','1', '1','1','11858.12', '1','1','814.0', '1','1','11044.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096951.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008688.0','1018889.0','38', '33','17','45352.42', '30','13','34170.09', '23','6','11182.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096952.0','1044456.0','1', '1','1','214.7', '1','0','0.0', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008689.0','1018889.0','2', '2','2','21061.52', '2','2','7746.0', '2','1','13315.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096953.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008690.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096954.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008691.0','1018889.0','1', '1','1','2453.78', '1','1','2239.08', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096955.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008692.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096956.0','1044456.0','8669', '7770','4571','10295062.62', '6856','3207','7819897.96', '5623','2395','2475164.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008693.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096957.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008694.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096958.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008695.0','1018889.0','6936', '6031','3248','7288267.84', '5374','2482','5929990.59', '4169','1386','1358277.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096959.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008696.0','1018889.0','2', '2','2','4000.0', '2','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096960.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008697.0','1018889.0','1', '1','1','1096.74', '1','0','0.0', '1','1','1096.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096961.0','1044456.0','20688', '19674','15842','103714586.19', '19407','15099','75480906.77', '11993','5992','28233679.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008698.0','1018889.0','3', '3','3','6000.0', '3','3','6000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096962.0','1044456.0','11966', '11342','8712','55929016.51', '11133','8189','42264034.42', '7209','3567','13664982.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008699.0','1018889.0','179', '135','61','125347.16', '111','58','119122.2', '88','6','6224.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096963.0','1044456.0','1', '1','1','5743.94', '1','1','4952.54', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008700.0','1018889.0','3597', '3338','2116','5441487.05', '3045','1502','4036787.92', '2511','1209','1404699.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096964.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008701.0','1018889.0','1', '1','1','7182.73', '1','1','6391.33', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096965.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008702.0','1018889.0','1', '1','1','5564.0', '1','1','5564.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096966.0','1044456.0','3527', '3269','1936','5351865.82', '3014','1440','4056741.84', '2416','1009','1295123.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008703.0','1018889.0','1', '1','1','786.08', '1','0','0.0', '1','1','786.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096967.0','1044456.0','4', '4','4','17589.47', '4','4','10050.0', '3','1','7539.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008704.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096968.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008705.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096969.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008706.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096970.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008707.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096971.0','1044456.0','417', '397','251','703086.65', '381','221','592066.38', '267','95','111020.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008708.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096972.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008709.0','1018889.0','2', '2','2','2791.4', '2','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096973.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008710.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096974.0','1044456.0','2', '2','2','17669.08', '2','2','6990.5', '2','2','10678.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008711.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096975.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008712.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096976.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008713.0','1018889.0','83', '73','54','214410.44', '67','48','179011.28', '54','23','35399.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096977.0','1044456.0','1', '1','1','2214.7', '1','1','2000.0', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008714.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096978.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008715.0','1018889.0','1', '1','1','3796.4', '1','1','820.0', '1','1','2976.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096979.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008716.0','1018889.0','1', '1','1','2546.09', '1','1','2546.09', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096980.0','1044456.0','1', '1','1','6383.0', '1','1','6383.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008717.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096981.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008718.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096982.0','1044456.0','964', '894','460','1540805.01', '843','361','1188849.88', '552','214','351955.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008719.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096983.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008720.0','1018889.0','5', '4','2','4262.86', '4','2','2820.0', '4','1','1442.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096984.0','1044456.0','4', '4','3','10213.6', '4','2','8115.0', '3','2','2098.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008721.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096985.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008722.0','1018889.0','2', '2','2','6064.12', '2','2','6064.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096986.0','1044456.0','2', '2','1','791.4', '2','0','0.0', '2','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008723.0','1018889.0','199', '196','117','354436.68', '187','93','265697.03', '154','53','88739.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096987.0','1044456.0','2', '2','1','791.4', '1','0','0.0', '2','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008724.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096988.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008725.0','1018889.0','90', '82','44','101568.18', '73','35','87900.68', '57','17','13667.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096989.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008726.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096990.0','1044456.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008727.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2096991.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008728.0','1018889.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096992.0','1044456.0','1', '1','1','791.4', '0','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008729.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096993.0','1044456.0','2', '2','2','13341.24', '2','2','7178.0', '1','1','6163.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008730.0','1018889.0','1', '1','1','4664.85', '1','1','4050.0', '1','1','614.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096994.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008731.0','1018889.0','16', '15','7','10317.84', '15','6','10202.37', '9','1','115.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096995.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008732.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096996.0','1044456.0','3380', '2939','1242','2520298.25', '2684','885','2015717.07', '1774','546','504581.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008733.0','1018889.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096997.0','1044456.0','2', '2','2','24973.37', '2','2','14227.0', '1','1','10746.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008734.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2096998.0','1044456.0','1', '1','1','451.87', '1','1','451.87', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008735.0','1018889.0','2', '2','2','4000.0', '2','2','4000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2096999.0','1044456.0','11203', '10669','7540','21794121.53', '10370','6233','16637497.48', '7811','3665','5156624.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008736.0','1018889.0','1145', '1074','737','1993769.95', '1021','512','1519065.46', '872','448','474704.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097000.0','1044456.0','1', '1','1','7682.5', '1','1','4970.0', '1','1','2712.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008737.0','1018889.0','3', '3','1','2000.0', '3','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097001.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008738.0','1018889.0','2', '2','1','3216.0', '2','1','3216.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097002.0','1044456.0','32', '26','14','39723.95', '23','13','32658.82', '17','6','7065.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008739.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097003.0','1044456.0','1', '1','1','2791.4', '1','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008740.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097004.0','1044456.0','2586', '2360','1297','3044078.29', '2098','881','2352810.9', '1709','681','691267.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008741.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097005.0','1044456.0','725', '671','320','918119.18', '646','297','819744.08', '438','90','98375.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008742.0','1018889.0','1', '1','1','761.92', '0','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097006.0','1044456.0','1', '1','1','4606.88', '1','1','1326.0', '1','1','3280.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008743.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097007.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008744.0','1018889.0','1', '1','1','532.0', '1','1','532.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097008.0','1044456.0','5', '3','2','8465.04', '3','2','8465.04', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008745.0','1018889.0','156', '144','57','94802.04', '131','47','76809.16', '69','17','17992.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097009.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008746.0','1018889.0','2', '2','1','10139.88', '2','1','7542.0', '2','1','2597.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097010.0','1044456.0','3', '3','2','9978.1', '3','2','8972.0', '2','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008747.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097011.0','1044456.0','29', '27','11','22143.56', '27','10','21352.16', '18','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008748.0','1018889.0','2', '2','2','7558.99', '2','1','2000.0', '1','1','5558.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097012.0','1044456.0','3', '3','1','791.4', '2','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008749.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097013.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008750.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097014.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008751.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097015.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008752.0','1018889.0','4', '4','3','23188.7', '4','3','10569.33', '4','1','12619.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097016.0','1044456.0','1', '1','1','6500.0', '1','1','2000.0', '1','1','4500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008753.0','1018889.0','676', '625','362','835315.11', '572','263','639072.83', '444','183','196242.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097017.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008754.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097018.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008755.0','1018889.0','2', '2','1','163.32', '1','0','0.0', '2','1','163.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097019.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008756.0','1018889.0','1', '1','1','3764.12', '1','1','3764.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097020.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008757.0','1018889.0','1', '1','1','361.92', '1','0','0.0', '1','1','361.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097021.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008758.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097022.0','1044456.0','1', '1','1','2497.69', '1','1','1550.99', '1','1','946.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008759.0','1018889.0','3', '3','1','2000.0', '3','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097023.0','1044456.0','2', '2','2','5664.0', '2','2','5664.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008760.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097024.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008761.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097025.0','1044456.0','1', '1','1','7312.83', '1','1','7312.83', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008762.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097026.0','1044456.0','1', '1','1','6421.0', '1','1','6421.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008763.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097027.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008764.0','1018889.0','2', '2','1','4358.0', '2','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097028.0','1044456.0','13', '11','10','20000.0', '11','10','20000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008765.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097029.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008766.0','1018889.0','1', '1','1','1010.0', '1','1','1010.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097030.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008767.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097031.0','1044456.0','2', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008768.0','1018889.0','2', '2','1','702.13', '2','1','702.13', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097032.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008769.0','1018889.0','1', '1','1','6834.08', '1','1','4488.0', '1','1','2346.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097033.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008770.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097034.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008771.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097035.0','1044456.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008772.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097036.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008773.0','1018889.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097037.0','1044456.0','3', '2','2','17214.42', '2','2','9200.0', '2','1','8014.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008774.0','1018889.0','7', '6','2','4499.82', '6','2','4000.0', '5','1','499.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097038.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008775.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097039.0','1044456.0','8', '5','1','501.36', '5','1','501.36', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008776.0','1018889.0','1628', '1500','875','3116767.72', '1443','724','2257210.54', '962','387','859557.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097040.0','1044456.0','641', '581','298','548095.28', '499','159','395796.92', '386','176','152298.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008777.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097041.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008778.0','1018889.0','1', '1','1','6421.0', '1','1','6421.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097042.0','1044456.0','1', '1','1','16352.25', '1','1','4358.0', '1','1','11994.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008779.0','1018889.0','33', '27','17','39891.6', '25','15','36530.74', '20','4','3360.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097043.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008780.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097044.0','1044456.0','1', '1','1','1120.82', '1','0','0.0', '1','1','1120.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008781.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097045.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008782.0','1018889.0','31', '30','14','44503.13', '30','12','31029.71', '16','5','13473.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097046.0','1044456.0','1', '1','1','2066.96', '1','1','2066.96', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008783.0','1018889.0','1505', '1331','497','930763.62', '1238','422','809613.84', '810','123','121149.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097047.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008784.0','1018889.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097048.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008785.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097049.0','1044456.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008786.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097050.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008787.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097051.0','1044456.0','99', '90','38','59930.96', '85','28','51473.37', '51','16','8457.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008788.0','1018889.0','31', '25','15','32685.91', '21','12','29431.52', '18','5','3254.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097052.0','1044456.0','1', '1','1','71.96', '1','1','71.96', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008789.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097053.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008790.0','1018889.0','340', '297','177','898748.12', '286','160','544452.45', '165','77','354295.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097054.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008791.0','1018889.0','1', '1','1','214.7', '1','0','0.0', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097055.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008792.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097056.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008793.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097057.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008794.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097058.0','1044456.0','4', '3','2','7600.64', '2','2','5190.3', '3','1','2410.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008795.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097059.0','1044456.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008796.0','1018889.0','1', '1','1','1078.5', '1','1','1078.5', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097060.0','1044456.0','1', '1','1','4542.5', '1','1','4542.5', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008797.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097061.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008798.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097062.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008799.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097063.0','1044456.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008800.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097064.0','1044456.0','2', '2','2','8401.39', '2','2','8008.92', '2','2','392.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008801.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097065.0','1044456.0','1', '1','1','500.0', '1','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008802.0','1018889.0','39', '34','20','33940.67', '28','11','24341.22', '23','12','9599.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097066.0','1044456.0','4717', '4054','1760','3574917.39', '3576','1208','2807799.77', '2515','780','767117.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008803.0','1018889.0','1', '1','1','3165.09', '1','1','3165.09', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097067.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008804.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097068.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008805.0','1018889.0','12', '9','3','10348.24', '7','3','9086.0', '5','1','1262.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097069.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008806.0','1018889.0','1', '1','1','24988.54', '1','1','13744.0', '1','1','11244.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097070.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008807.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097071.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008808.0','1018889.0','231', '203','74','133824.45', '190','65','125890.74', '105','10','7933.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097072.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008809.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097073.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008810.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097074.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008811.0','1018889.0','1', '1','1','2791.4', '1','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097075.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008812.0','1018889.0','1', '1','1','21370.81', '1','1','13763.0', '1','1','7607.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097076.0','1044456.0','2', '2','1','4358.0', '2','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008813.0','1018889.0','1', '1','1','14092.64', '1','1','2820.0', '1','1','11272.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097077.0','1044456.0','1', '1','1','3510.66', '1','1','2842.0', '1','1','668.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008814.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097078.0','1044456.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008815.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097079.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008816.0','1018889.0','1', '1','1','2761.92', '1','1','2000.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097080.0','1044456.0','2', '2','1','2206.71', '2','1','2000.0', '1','1','206.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008817.0','1018889.0','1', '1','1','206.71', '1','0','0.0', '1','1','206.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097081.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008818.0','1018889.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097082.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008819.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097083.0','1044456.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008820.0','1018889.0','1', '1','1','936.33', '1','1','936.33', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097084.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008821.0','1018889.0','1', '1','1','2820.0', '1','1','2820.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097085.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008822.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097086.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008823.0','1018889.0','6067', '5446','2703','7166540.67', '5089','2183','5549941.75', '3465','1074','1616598.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097087.0','1044456.0','1', '1','1','11721.0', '1','1','11721.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008824.0','1018889.0','1', '1','1','4250.0', '1','1','4250.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097088.0','1044456.0','1', '1','1','2814.0', '1','1','2814.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008825.0','1018889.0','11', '10','2','4000.0', '8','2','4000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097089.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008826.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097090.0','1044456.0','20', '18','14','29940.78', '17','11','25108.32', '15','7','4832.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008827.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097091.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008828.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097092.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008829.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097093.0','1044456.0','426', '375','192','452340.08', '361','170','405914.3', '246','54','46425.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008830.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097094.0','1044456.0','1', '1','1','11476.95', '1','1','3578.0', '1','1','7898.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008831.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097095.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008832.0','1018889.0','3966', '3240','1406','2854977.1', '2858','1154','2344377.46', '1872','469','510599.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097096.0','1044456.0','2', '2','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008833.0','1018889.0','1', '1','1','3318.2', '1','1','3318.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097097.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008834.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097098.0','1044456.0','1', '1','1','2761.92', '1','1','2000.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008835.0','1018889.0','1', '1','1','849.51', '1','1','849.51', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097099.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008836.0','1018889.0','7786', '7366','5140','14491047.75', '6995','3821','10521290.45', '5747','2972','3969757.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097100.0','1044456.0','2', '2','2','27600.0', '2','2','20033.31', '1','1','7566.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008837.0','1018889.0','1', '1','1','1978.51', '1','1','1187.11', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097101.0','1044456.0','2', '2','2','28181.72', '2','2','10040.0', '1','1','18141.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008838.0','1018889.0','1', '1','1','2427.0', '1','1','2427.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097102.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097103.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008840.0','1018889.0','1', '1','1','13647.77', '1','1','2884.0', '1','1','10763.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097104.0','1044456.0','1', '1','1','4503.82', '1','1','4503.82', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008841.0','1018889.0','4', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097105.0','1044456.0','4', '3','0','0.0', '3','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008842.0','1018889.0','20', '16','9','17280.12', '14','8','15593.34', '11','2','1686.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097106.0','1044456.0','548', '501','232','588958.72', '482','207','490378.27', '286','61','98580.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008843.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097107.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008844.0','1018889.0','1', '1','1','814.0', '1','1','814.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097108.0','1044456.0','3', '3','2','3108.0', '2','2','3108.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008845.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097109.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008846.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097110.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008847.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097111.0','1044456.0','780', '704','319','595057.19', '614','170','399506.27', '464','207','195550.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008848.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097112.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008849.0','1018889.0','1421', '1276','579','1225210.29', '1171','431','997251.86', '814','244','227958.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097113.0','1044456.0','7', '7','5','10679.5', '7','4','9244.0', '5','3','1435.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008850.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097114.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008851.0','1018889.0','152', '129','61','111608.6', '120','44','91209.96', '82','24','20398.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097115.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008852.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097116.0','1044456.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008853.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097117.0','1044456.0','1', '1','1','2934.0', '1','1','2934.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008854.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097118.0','1044456.0','1', '1','1','2605.17', '1','1','2000.0', '1','1','605.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008855.0','1018889.0','7', '7','4','5380.3', '4','1','2000.0', '7','4','3380.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097119.0','1044456.0','2', '2','2','10560.0', '2','2','10560.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008856.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097120.0','1044456.0','25', '22','16','35545.17', '21','15','31530.97', '12','6','4014.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008857.0','1018889.0','5', '5','1','500.49', '5','0','0.0', '2','1','500.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097121.0','1044456.0','70', '65','42','68707.87', '55','25','46838.57', '51','29','21869.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008858.0','1018889.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097122.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008859.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097123.0','1044456.0','2', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008860.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097124.0','1044456.0','469', '423','254','1177651.56', '409','225','713812.74', '279','94','463838.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008861.0','1018889.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097125.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008862.0','1018889.0','1', '1','1','16716.24', '1','1','7487.0', '1','1','9229.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097126.0','1044456.0','1', '1','1','6500.0', '1','1','2000.0', '1','1','4500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008863.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097127.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008864.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097128.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008865.0','1018889.0','2', '1','1','1853.2', '1','1','1061.8', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097129.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008866.0','1018889.0','2', '2','1','2177.66', '2','1','2000.0', '2','1','177.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097130.0','1044456.0','2', '2','2','22135.06', '2','2','11558.0', '2','1','10577.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008867.0','1018889.0','15', '15','5','7021.1', '14','3','5438.3', '9','2','1582.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097131.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008868.0','1018889.0','2', '2','2','12793.76', '2','2','7598.0', '1','1','5195.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097132.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008869.0','1018889.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097133.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008870.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097134.0','1044456.0','420', '378','194','270968.31', '326','134','207515.49', '230','89','63452.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008871.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097135.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008872.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097136.0','1044456.0','1', '1','1','1272.9', '1','1','1272.9', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008873.0','1018889.0','1', '1','1','14125.51', '1','1','3734.0', '1','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097137.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008874.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097138.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008875.0','1018889.0','1', '1','1','6422.0', '1','1','6422.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097139.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008876.0','1018889.0','1385', '1299','792','2233298.65', '1215','637','1792038.41', '969','365','441260.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097140.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008877.0','1018889.0','757', '672','290','678846.44', '621','197','524602.06', '417','139','154244.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097141.0','1044456.0','2495', '2392','1717','5244879.14', '2330','1332','3930485.26', '1877','961','1314393.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008878.0','1018889.0','2', '2','2','4442.0', '2','2','4442.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097142.0','1044456.0','1', '1','1','214.7', '0','0','0.0', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008879.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097143.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008880.0','1018889.0','18', '16','12','24000.0', '16','12','24000.0', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097144.0','1044456.0','42', '35','11','20120.32', '32','10','19114.22', '20','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008881.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097145.0','1044456.0','596', '531','237','429272.12', '481','184','351114.97', '313','88','78157.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008882.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097146.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008883.0','1018889.0','3', '3','2','18389.49', '3','2','4477.0', '1','1','13912.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097147.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001456.0', '2008884.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005907.0', '2097148.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008885.0','1018889.0','15', '14','8','15000.85', '14','8','12527.21', '10','4','2473.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097149.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008886.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097150.0','1044456.0','9', '8','4','2675.51', '7','2','389.75', '5','3','2285.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008887.0','1018889.0','1', '1','1','2094.71', '1','1','2094.71', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097151.0','1044456.0','2', '2','2','4000.0', '2','2','4000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008888.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097152.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008889.0','1018889.0','4', '3','2','4188.17', '3','2','4188.17', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097153.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008890.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097154.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008891.0','1018889.0','92', '84','55','99907.9', '81','51','90860.21', '50','11','9047.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097155.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008892.0','1018889.0','3', '3','2','2710.37', '3','2','2710.37', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097156.0','1044456.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008893.0','1018889.0','132', '110','44','61730.94', '95','27','46345.99', '76','22','15384.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097157.0','1044456.0','606', '513','165','262912.29', '430','110','186577.37', '319','70','76334.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008894.0','1018889.0','15', '13','11','36009.95', '13','9','23065.3', '10','7','12944.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097158.0','1044456.0','2', '2','2','5582.0', '2','2','5582.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001458.0', '2008895.0','1018889.0','6', '6','6','18155.2', '6','6','16357.7', '5','2','1797.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005908.0', '2097159.0','1044456.0','1', '1','1','3904.32', '1','1','3120.0', '1','1','784.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008896.0','1018889.0','47', '44','19','58102.41', '41','18','51199.23', '23','5','6903.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097160.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008897.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097161.0','1044456.0','1', '1','1','5531.88', '1','1','2934.0', '1','1','2597.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008898.0','1018889.0','789', '718','408','735058.85', '649','325','593736.05', '457','153','141322.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097162.0','1044456.0','268', '230','95','232370.44', '215','85','196578.96', '134','30','35791.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008899.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097163.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008900.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097164.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008901.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097165.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008902.0','1018889.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097166.0','1044456.0','1396', '1250','765','1455317.24', '1063','496','1136089.95', '914','380','319227.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008903.0','1018889.0','97', '89','51','86916.01', '76','20','54248.1', '66','40','32667.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097167.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008904.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097168.0','1044456.0','49', '41','19','29956.09', '40','17','27943.86', '20','3','2012.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008905.0','1018889.0','1', '1','1','500.49', '1','0','0.0', '1','1','500.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097169.0','1044456.0','1977', '1783','852','1624840.29', '1602','461','1179233.98', '1102','521','445606.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008906.0','1018889.0','48', '44','21','30444.26', '30','9','20830.77', '37','14','9613.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097170.0','1044456.0','2079', '1842','860','1847139.78', '1703','729','1503416.52', '1017','285','343723.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008907.0','1018889.0','1361', '1172','515','1046186.32', '1097','461','921418.6', '618','114','124767.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097171.0','1044456.0','15', '14','6','15794.15', '13','3','12888.26', '6','3','2905.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008908.0','1018889.0','477', '438','181','358524.54', '404','138','292957.55', '233','67','65566.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097172.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008909.0','1018889.0','9', '7','2','1133.02', '5','1','371.1', '5','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097173.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008910.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097174.0','1044456.0','1', '1','1','7258.01', '1','1','7258.01', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008911.0','1018889.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097175.0','1044456.0','1', '1','1','1710.0', '1','1','1710.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008912.0','1018889.0','5', '3','1','2070.77', '3','1','2070.77', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097176.0','1044456.0','1', '1','1','3545.0', '1','1','3545.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008913.0','1018889.0','1', '1','1','761.92', '0','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097177.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008914.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097178.0','1044456.0','9', '7','1','666.0', '6','1','666.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008915.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097179.0','1044456.0','4', '3','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008916.0','1018889.0','10', '10','4','9286.44', '7','3','8524.52', '5','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097180.0','1044456.0','12', '11','4','5024.36', '11','4','4817.65', '3','1','206.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008917.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097181.0','1044456.0','3370', '3149','1741','3391210.25', '2925','1119','2544142.85', '2179','918','847067.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008918.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097182.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008919.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097183.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008920.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097184.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008921.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097185.0','1044456.0','114', '104','63','145377.0', '93','51','124976.08', '70','26','20400.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008922.0','1018889.0','124', '113','73','128102.97', '92','40','82787.95', '76','46','45315.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097186.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008923.0','1018889.0','5', '5','0','0.0', '5','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097187.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008924.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097188.0','1044456.0','6', '6','2','2761.92', '6','1','2000.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008925.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097189.0','1044456.0','1', '1','1','479.32', '1','1','479.32', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008926.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097190.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008927.0','1018889.0','1', '1','1','2682.0', '1','1','2682.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097191.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008928.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097192.0','1044456.0','1', '1','1','11196.52', '1','1','8502.0', '1','1','2694.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008929.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097193.0','1044456.0','3', '3','2','1523.84', '2','0','0.0', '3','2','1523.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008930.0','1018889.0','308', '279','161','384491.25', '264','142','337957.51', '183','40','46533.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097194.0','1044456.0','1146', '1067','576','1363053.1', '1003','422','1077123.06', '644','285','285930.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008931.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097195.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008932.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097196.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008933.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097197.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008934.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097198.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008935.0','1018889.0','2', '2','1','13993.52', '1','1','5472.0', '2','1','8521.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097199.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008936.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097200.0','1044456.0','21', '16','5','26909.44', '14','3','22756.0', '10','3','4153.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008937.0','1018889.0','67', '60','29','57950.75', '55','22','44630.98', '39','16','13319.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097201.0','1044456.0','2', '2','1','14145.21', '2','1','9042.0', '1','1','5103.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008938.0','1018889.0','4', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097202.0','1044456.0','24', '23','11','51774.75', '23','8','37316.19', '13','6','14458.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008939.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097203.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008940.0','1018889.0','1', '1','1','8738.38', '1','1','6140.5', '1','1','2597.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097204.0','1044456.0','2', '2','1','1056.0', '2','1','1056.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008941.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097205.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008942.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097206.0','1044456.0','1', '1','1','2761.92', '1','1','2000.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008943.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097207.0','1044456.0','1545', '1425','774','1594943.6', '1306','521','1187877.68', '959','377','407065.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008944.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097208.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008945.0','1018889.0','109', '97','48','60326.63', '73','25','37918.5', '69','28','22408.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097209.0','1044456.0','18', '16','5','10327.02', '15','4','8532.87', '11','3','1794.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008946.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097210.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008947.0','1018889.0','24', '24','9','26150.9', '24','7','23451.72', '12','3','2699.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097211.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008948.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097212.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008949.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097213.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008950.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097214.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008951.0','1018889.0','631', '587','389','1189151.28', '562','288','915952.9', '413','222','273198.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097215.0','1044456.0','5', '4','2','4000.0', '4','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008952.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097216.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008953.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097217.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008954.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097218.0','1044456.0','28', '27','15','38150.6', '26','13','33257.68', '22','6','4892.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008955.0','1018889.0','24', '21','11','15920.61', '16','8','10792.84', '15','4','5127.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097219.0','1044456.0','12', '12','6','5437.48', '12','1','2000.0', '7','5','3437.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008956.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097220.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008957.0','1018889.0','1', '1','1','3736.0', '1','1','3736.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097221.0','1044456.0','2', '2','2','1988.62', '1','1','1226.7', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008958.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097222.0','1044456.0','1', '1','1','4048.52', '1','1','3286.6', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008959.0','1018889.0','157', '149','86','135887.6', '125','30','78446.89', '113','68','57440.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097223.0','1044456.0','1', '1','1','203.84', '1','1','203.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008960.0','1018889.0','1', '1','1','227.12', '1','1','227.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097224.0','1044456.0','216', '187','98','180477.8', '172','78','148708.13', '115','33','31769.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008961.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097225.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008962.0','1018889.0','2', '2','2','2287.6', '2','2','2287.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097226.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008963.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097227.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008964.0','1018889.0','3', '3','2','5855.81', '3','2','5855.81', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097228.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008965.0','1018889.0','1', '1','1','2260.4', '1','1','2260.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097229.0','1044456.0','1', '1','1','7501.21', '1','1','5200.0', '1','1','2301.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008966.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097230.0','1044456.0','2185', '1894','781','1233078.48', '1654','507','916562.22', '1097','354','316516.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008967.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097231.0','1044456.0','1249', '1096','556','873577.08', '965','359','630917.34', '687','289','242659.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008968.0','1018889.0','1868', '1742','1117','2338485.9', '1622','659','1691615.77', '1255','715','646870.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097232.0','1044456.0','1', '1','1','9986.28', '1','1','7329.29', '1','1','2656.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008969.0','1018889.0','2', '2','2','2616.43', '2','2','2616.43', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097233.0','1044456.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008970.0','1018889.0','73', '69','39','62827.08', '66','26','50031.44', '48','17','12795.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097234.0','1044456.0','76', '70','48','70998.26', '57','22','47075.62', '48','34','23922.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008971.0','1018889.0','1', '1','1','2761.92', '1','1','2000.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097235.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008972.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097236.0','1044456.0','370', '331','154','323677.71', '307','102','261481.94', '203','69','62195.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008973.0','1018889.0','1', '1','1','3710.0', '1','1','3710.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097237.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008974.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097238.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008975.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097239.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008976.0','1018889.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097240.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008977.0','1018889.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097241.0','1044456.0','3', '3','3','6000.0', '3','3','6000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008978.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097242.0','1044456.0','1', '1','1','130.45', '1','1','130.45', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008979.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097243.0','1044456.0','1', '1','1','4932.08', '1','1','4064.6', '1','1','867.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008980.0','1018889.0','2', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097244.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008981.0','1018889.0','1', '1','1','5936.0', '1','1','5936.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097245.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008982.0','1018889.0','217', '189','63','107190.02', '158','43','84111.19', '110','29','23078.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097246.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008983.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097247.0','1044456.0','455', '373','175','309821.03', '301','110','239125.13', '228','93','70695.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008984.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097248.0','1044456.0','2', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008985.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097249.0','1044456.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008986.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097250.0','1044456.0','1', '1','1','21440.26', '1','1','7371.0', '1','1','14069.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008987.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097251.0','1044456.0','1', '1','1','250.0', '1','0','0.0', '1','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008988.0','1018889.0','1', '1','1','7602.06', '1','1','7438.0', '1','1','164.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097252.0','1044456.0','1', '1','1','901.77', '1','1','901.77', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008989.0','1018889.0','306', '250','162','1480788.8', '248','158','842582.19', '162','71','638206.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097253.0','1044456.0','3', '3','3','7400.62', '3','3','6638.7', '3','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008990.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097254.0','1044456.0','7', '7','6','21566.73', '7','5','19143.79', '5','4','2422.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008991.0','1018889.0','1', '1','1','651.15', '1','1','651.15', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097255.0','1044456.0','1', '1','1','2761.92', '1','1','2000.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008992.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097256.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008993.0','1018889.0','4', '4','3','4449.55', '4','2','3687.63', '3','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097257.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008994.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097258.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008995.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097259.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008996.0','1018889.0','316', '210','82','167686.23', '160','57','121970.0', '151','30','45716.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097260.0','1044456.0','149', '145','109','312306.98', '140','72','246244.95', '111','62','66062.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008997.0','1018889.0','250', '244','163','482324.61', '221','94','341494.13', '187','113','140830.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097261.0','1044456.0','1', '1','1','18579.01', '1','1','4358.0', '1','1','14221.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008998.0','1018889.0','1', '1','1','3004.0', '1','1','3004.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097262.0','1044456.0','1', '1','1','2109.55', '1','0','0.0', '1','1','2109.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008999.0','1018889.0','52', '50','35','94160.37', '48','28','68897.8', '30','18','25262.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097263.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009000.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097264.0','1044456.0','521', '442','238','466960.0', '392','182','390492.21', '262','90','76467.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009001.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097265.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009002.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097266.0','1044456.0','7525', '7045','4235','11810769.28', '6609','2726','8602835.68', '4810','2572','3207933.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009003.0','1018889.0','1', '1','1','1629.92', '1','1','868.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097267.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009004.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097268.0','1044456.0','4', '4','4','11779.87', '4','4','11720.0', '2','1','59.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009005.0','1018889.0','1', '1','1','761.92', '0','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097269.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009006.0','1018889.0','26', '20','9','17377.96', '18','8','15011.45', '11','4','2366.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097270.0','1044456.0','17', '15','8','8095.36', '9','1','2000.0', '12','8','6095.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009007.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097271.0','1044456.0','10', '8','5','16766.76', '4','4','14081.0', '8','4','2685.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009008.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097272.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009009.0','1018889.0','1', '1','1','924.06', '1','1','924.06', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097273.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009010.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097274.0','1044456.0','46', '41','26','55556.33', '38','17','45245.25', '26','13','10311.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009011.0','1018889.0','16235', '14789','7747','18847020.11', '14075','5934','14911112.48', '9652','3367','3935907.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097275.0','1044456.0','1215', '1129','651','1336772.02', '1019','359','950718.17', '795','411','386053.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009012.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097276.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009013.0','1018889.0','53', '45','18','16328.4', '36','8','7244.39', '26','12','9084.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097277.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009014.0','1018889.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097278.0','1044456.0','1', '1','1','8212.0', '1','1','8212.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009015.0','1018889.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097279.0','1044456.0','1', '1','1','2968.63', '1','1','2000.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009016.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097280.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009017.0','1018889.0','2', '2','2','8716.0', '2','2','8716.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097281.0','1044456.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009018.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097282.0','1044456.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009019.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097283.0','1044456.0','2', '2','2','15307.71', '2','2','14500.0', '1','1','807.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009020.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097284.0','1044456.0','6713', '6036','3078','6058229.41', '5709','1857','4375402.7', '3763','1746','1682826.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009021.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097285.0','1044456.0','2', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009022.0','1018889.0','2', '2','2','10463.0', '2','2','10463.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097286.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009023.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097287.0','1044456.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009024.0','1018889.0','2', '2','1','8445.48', '2','1','1030.0', '1','1','7415.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097288.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009025.0','1018889.0','144', '140','101','343860.02', '139','73','258089.78', '104','59','85770.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097289.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009026.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097290.0','1044456.0','2', '2','1','4358.0', '2','1','4358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009027.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097291.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009028.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097292.0','1044456.0','1', '1','1','5711.62', '1','1','4949.7', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009029.0','1018889.0','1', '1','1','24094.0', '1','1','14858.0', '1','1','9236.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097293.0','1044456.0','1', '1','1','22025.43', '1','1','10239.0', '1','1','11786.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009030.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097294.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009031.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097295.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009032.0','1018889.0','51', '35','28','278883.51', '35','28','201868.0', '25','12','77015.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097296.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009033.0','1018889.0','6506', '6135','3358','7209951.84', '5830','1892','5071918.24', '4152','2135','2138033.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097297.0','1044456.0','192', '158','85','149798.01', '124','44','112065.66', '98','51','37732.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009034.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097298.0','1044456.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009035.0','1018889.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097299.0','1044456.0','12', '10','4','10085.72', '8','3','7030.0', '6','2','3055.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009036.0','1018889.0','192', '167','104','300404.02', '158','72','244943.82', '123','70','55460.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097300.0','1044456.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009037.0','1018889.0','3', '2','2','6354.94', '2','2','5386.31', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097301.0','1044456.0','2', '2','1','23266.07', '2','1','14210.0', '1','1','9056.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009038.0','1018889.0','674', '631','405','1172462.1', '582','272','785317.05', '453','258','387145.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097302.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009039.0','1018889.0','1', '1','1','3004.0', '1','1','3004.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097303.0','1044456.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009040.0','1018889.0','1', '1','1','25600.0', '1','1','14276.0', '1','1','11324.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097304.0','1044456.0','1', '1','1','15469.74', '1','1','4358.0', '1','1','11111.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009041.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097305.0','1044456.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009042.0','1018889.0','1', '1','1','3362.0', '1','1','3362.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097306.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009043.0','1018889.0','1', '1','1','7895.54', '1','1','7133.62', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097307.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009044.0','1018889.0','3', '3','2','14902.73', '2','2','10492.0', '3','1','4410.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097308.0','1044456.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009045.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097309.0','1044456.0','1', '1','1','4021.17', '1','1','4021.17', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009046.0','1018889.0','6', '4','4','37469.63', '4','4','16814.0', '3','2','20655.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097310.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009047.0','1018889.0','1', '1','1','4170.0', '0','0','0.0', '1','1','4170.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097311.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009048.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097312.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009049.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097313.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009050.0','1018889.0','1118', '1051','942','12585029.67', '1043','927','7292750.99', '820','559','5292278.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097314.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009051.0','1018889.0','1', '1','1','10912.55', '1','1','8143.0', '1','1','2769.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097315.0','1044456.0','100', '95','75','458657.31', '94','64','300278.78', '70','39','158378.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009052.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097316.0','1044456.0','3', '3','3','45043.01', '3','3','20634.0', '3','2','24409.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009053.0','1018889.0','292', '145','60','224341.96', '112','55','200831.22', '70','8','23510.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097317.0','1044456.0','1', '1','1','16422.87', '1','1','7370.0', '1','1','9052.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009054.0','1018889.0','10222', '9424','6230','34500350.28', '9122','5748','25265216.28', '5332','2116','9235134.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097318.0','1044456.0','2', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009055.0','1018889.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097319.0','1044456.0','3159', '3016','2256','14967870.26', '2973','1949','10671595.32', '2195','1201','4296274.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009056.0','1018889.0','44', '42','28','90152.21', '39','28','77826.78', '25','6','12325.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097320.0','1044456.0','706', '682','493','2374913.66', '669','394','1862278.0', '523','285','512635.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009057.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097321.0','1044456.0','4', '3','2','6358.0', '3','2','6358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009058.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097322.0','1044456.0','1', '1','1','6533.0', '1','1','6533.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009059.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097323.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009060.0','1018889.0','28', '23','21','308384.18', '22','21','218474.32', '20','11','89909.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097324.0','1044456.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009061.0','1018889.0','1', '1','1','8785.83', '1','1','6524.26', '1','1','2261.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097325.0','1044456.0','4', '4','4','26154.72', '4','4','18629.0', '3','2','7525.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009062.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097326.0','1044456.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009063.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097327.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009064.0','1018889.0','1', '1','1','3004.0', '1','1','3004.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097328.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009065.0','1018889.0','1', '1','1','5326.63', '1','1','4358.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097329.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009066.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097330.0','1044456.0','8', '8','8','96397.67', '8','8','39062.89', '6','5','57334.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009067.0','1018889.0','1', '1','1','3864.0', '1','1','3864.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097331.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009068.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097332.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009069.0','1018889.0','1', '1','1','14144.55', '1','1','5864.0', '1','1','8280.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097333.0','1044456.0','2', '2','2','10125.2', '2','2','6121.0', '2','1','4004.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009070.0','1018889.0','5', '5','4','21543.85', '5','4','12078.0', '4','2','9465.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097334.0','1044456.0','1', '1','1','3004.0', '1','1','3004.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009071.0','1018889.0','1', '1','1','3864.0', '1','1','3864.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097335.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009072.0','1018889.0','2', '2','1','13424.96', '2','1','4014.0', '2','1','9410.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097336.0','1044456.0','1', '1','1','7318.0', '1','1','7318.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009073.0','1018889.0','2', '2','1','17589.94', '1','1','6706.0', '2','1','10883.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097337.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009074.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097338.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009075.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097339.0','1044456.0','2', '2','2','4000.0', '2','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009076.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097340.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009077.0','1018889.0','310', '284','143','232838.65', '263','70','159302.23', '183','95','73536.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097341.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009078.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097342.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009079.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097343.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009080.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097344.0','1044456.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009081.0','1018889.0','1', '1','1','25600.0', '1','1','14858.0', '1','1','10742.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097345.0','1044456.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009082.0','1018889.0','5036', '4725','4090','47809660.02', '4668','4035','27402316.76', '3341','2186','20407343.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097346.0','1044456.0','1', '1','1','22126.97', '1','1','4358.0', '1','1','17768.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009083.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097347.0','1044456.0','280', '235','161','1213465.65', '223','157','756854.47', '144','58','456611.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009084.0','1018889.0','9', '7','6','89956.1', '7','6','56959.0', '5','4','32997.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097348.0','1044456.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009085.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097349.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009086.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097350.0','1044456.0','1', '1','1','4879.12', '1','1','4879.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009087.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097351.0','1044456.0','431', '417','319','1788821.51', '411','266','1385295.92', '300','172','403525.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009088.0','1018889.0','1', '1','1','65.39', '1','1','65.39', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097352.0','1044456.0','18765', '17813','10941','52542083.41', '17529','8999','39836955.22', '11251','4968','12705128.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009089.0','1018889.0','3', '3','1','761.92', '1','0','0.0', '3','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097353.0','1044456.0','5', '5','2','7206.21', '5','2','6799.0', '4','1','407.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009090.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097354.0','1044456.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009091.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097355.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009092.0','1018889.0','1', '1','1','16170.29', '1','1','5864.0', '1','1','10306.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097356.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009093.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097357.0','1044456.0','1', '1','1','5200.0', '1','1','5200.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009094.0','1018889.0','595', '566','375','1277880.16', '539','276','953381.79', '426','229','324498.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097358.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009095.0','1018889.0','6', '6','5','48569.39', '6','5','12734.0', '3','3','35835.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097359.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009096.0','1018889.0','1', '1','1','5864.0', '1','1','5864.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097360.0','1044456.0','11723', '11034','7245','45182998.69', '10779','6151','32100569.02', '6936','3353','13082429.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009097.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097361.0','1044456.0','1', '1','1','44421.0', '1','1','27887.21', '1','1','16533.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009098.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097362.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009099.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097363.0','1044456.0','1', '1','1','24666.21', '1','1','5864.0', '1','1','18802.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009100.0','1018889.0','24', '23','13','43142.79', '23','9','37189.22', '15','8','5953.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097364.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009101.0','1018889.0','1', '1','1','5464.64', '1','1','4510.0', '1','1','954.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097365.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009102.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097366.0','1044456.0','1', '1','1','9558.0', '1','1','9558.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009103.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097367.0','1044456.0','6', '5','3','14789.82', '5','3','12899.73', '4','2','1890.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009104.0','1018889.0','6', '6','4','47125.76', '6','4','27328.0', '4','2','19797.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097368.0','1044456.0','1', '1','1','6816.42', '1','1','4609.9', '1','1','2206.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009105.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097369.0','1044456.0','1', '1','1','17549.89', '1','1','4517.0', '1','1','13032.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009106.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097370.0','1044456.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009107.0','1018889.0','1', '1','1','1710.0', '1','1','1710.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097371.0','1044456.0','1', '1','1','5984.0', '1','1','5984.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009108.0','1018889.0','1', '1','1','11276.32', '1','1','3004.0', '1','1','8272.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097372.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009109.0','1018889.0','1', '1','1','24391.22', '1','1','14006.0', '1','1','10385.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097373.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009110.0','1018889.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097374.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009111.0','1018889.0','3', '3','3','66242.28', '3','3','41282.0', '2','2','24960.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097375.0','1044456.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009112.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097376.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009113.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097377.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009114.0','1018889.0','1', '1','1','2358.0', '1','1','2358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097378.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009115.0','1018889.0','5', '4','2','6637.74', '3','1','2000.0', '3','1','4637.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097379.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009116.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097380.0','1044456.0','1', '1','1','10543.32', '1','1','5465.0', '1','1','5078.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009117.0','1018889.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097381.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009118.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097382.0','1044456.0','1', '1','1','23818.0', '1','1','14858.0', '1','1','8960.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009119.0','1018889.0','10520', '9850','7893','82771453.83', '9706','7653','44279469.23', '6886','4281','38491984.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097383.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009120.0','1018889.0','30', '30','19','105713.27', '30','17','78768.33', '18','12','26944.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097384.0','1044456.0','1', '1','1','22514.78', '1','1','3004.0', '1','1','19510.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009121.0','1018889.0','1', '1','1','2761.92', '1','1','2000.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097385.0','1044456.0','1', '1','1','1004.0', '1','1','1004.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009122.0','1018889.0','1', '1','1','25600.0', '1','1','16658.0', '1','1','8942.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097386.0','1044456.0','3', '3','3','10304.0', '3','3','10304.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009123.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097387.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009124.0','1018889.0','5', '5','4','13074.0', '5','4','13074.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097388.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009125.0','1018889.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097389.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009126.0','1018889.0','7', '5','4','41516.0', '5','4','30317.49', '2','1','11198.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097390.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009127.0','1018889.0','2', '2','1','24690.18', '2','1','3634.0', '1','1','21056.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097391.0','1044456.0','1', '1','1','32598.0', '1','1','21856.0', '1','1','10742.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009128.0','1018889.0','1', '1','1','18806.33', '1','1','14858.0', '1','1','3948.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097392.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009129.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097393.0','1044456.0','1', '1','1','5864.0', '1','1','5864.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009130.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097394.0','1044456.0','81', '76','63','289160.91', '75','52','240883.17', '56','31','48277.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009131.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097395.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009132.0','1018889.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097396.0','1044456.0','13', '12','7','94751.67', '12','7','53966.0', '8','3','40785.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009133.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097397.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009134.0','1018889.0','2', '1','1','14858.0', '1','1','14858.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097398.0','1044456.0','1', '1','1','23168.84', '1','1','14006.0', '1','1','9162.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009135.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097399.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009136.0','1018889.0','36', '35','26','183695.6', '33','24','135991.0', '26','11','47704.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097400.0','1044456.0','7', '6','6','46497.88', '6','6','31544.0', '6','4','14953.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009137.0','1018889.0','1', '1','1','6110.64', '1','0','0.0', '1','1','6110.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097401.0','1044456.0','2', '2','1','4358.0', '2','1','4358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009138.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097402.0','1044456.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009139.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097403.0','1044456.0','1', '1','1','5366.85', '1','1','1004.0', '1','1','4362.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009140.0','1018889.0','1', '1','1','892.7', '1','0','0.0', '1','1','892.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097404.0','1044456.0','1', '1','1','500.0', '1','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009141.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097405.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009142.0','1018889.0','11761', '10997','9505','110184428.4', '10903','9350','64674678.06', '7822','5009','45509750.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097406.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009143.0','1018889.0','6', '6','6','74703.6', '6','6','36982.18', '3','3','37721.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097407.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009144.0','1018889.0','3872', '3658','2559','13270385.06', '3606','2233','11010390.91', '2154','901','2259994.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097408.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009145.0','1018889.0','244', '229','202','2904049.14', '229','202','1834212.88', '166','113','1069836.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097409.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009146.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097410.0','1044456.0','2', '2','2','14677.92', '2','2','13916.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009147.0','1018889.0','9573', '8943','7330','64138938.29', '8836','6839','41674343.49', '6048','3431','22464594.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097411.0','1044456.0','1', '1','1','18189.59', '1','1','4358.0', '1','1','13831.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009148.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097412.0','1044456.0','3', '3','2','28244.82', '3','2','8236.0', '3','2','20008.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009149.0','1018889.0','8', '8','4','9454.86', '7','4','9454.86', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097413.0','1044456.0','1', '1','1','2537.62', '1','0','0.0', '1','1','2537.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009150.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097414.0','1044456.0','64', '52','18','29194.61', '47','16','27509.42', '34','2','1685.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009151.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097415.0','1044456.0','6', '5','1','2000.0', '4','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009152.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097416.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009153.0','1018889.0','1', '1','1','11790.0', '1','1','11790.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097417.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009154.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097418.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009155.0','1018889.0','1', '1','1','6162.34', '0','0','0.0', '1','1','6162.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097419.0','1044456.0','372', '347','252','2723115.41', '326','232','1503792.42', '239','152','1219322.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009156.0','1018889.0','1', '1','1','6113.76', '1','1','6113.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097420.0','1044456.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009157.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097421.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009158.0','1018889.0','682', '589','223','462215.46', '524','185','385215.55', '350','70','76999.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097422.0','1044456.0','5514', '4410','1370','2796583.24', '3927','1178','2480967.07', '2407','280','315616.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009159.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097423.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009160.0','1018889.0','2180', '1710','501','856673.69', '1447','367','732655.42', '938','154','124018.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097424.0','1044456.0','9', '9','3','3457.2', '8','2','2695.28', '6','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009161.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097425.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009162.0','1018889.0','341', '315','118','301679.73', '304','90','200573.36', '175','45','101106.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097426.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009163.0','1018889.0','25', '25','7','13565.09', '25','7','13565.09', '19','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097427.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009164.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097428.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009165.0','1018889.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097429.0','1044456.0','1', '1','1','9591.7', '1','1','3004.0', '1','1','6587.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009166.0','1018889.0','1', '1','1','26200.0', '1','1','6647.0', '1','1','19553.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097430.0','1044456.0','1', '1','1','5864.0', '1','1','5864.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009167.0','1018889.0','10', '10','6','22329.04', '10','6','18566.87', '7','4','3762.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097431.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009168.0','1018889.0','1', '1','1','2960.0', '1','1','2960.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097432.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009169.0','1018889.0','4', '4','3','34130.71', '4','2','16858.0', '4','2','17272.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097433.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009170.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097434.0','1044456.0','1', '1','1','3537.87', '1','1','2775.95', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009171.0','1018889.0','1331', '1045','348','527341.34', '894','218','413117.32', '547','150','114224.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097435.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009172.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097436.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009173.0','1018889.0','50', '31','6','15845.72', '21','4','12762.0', '24','3','3083.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097437.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009174.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097438.0','1044456.0','6', '6','1','2000.0', '5','1','2000.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009175.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097439.0','1044456.0','4506', '3646','1238','2701256.05', '3281','1073','2304063.08', '2092','305','397192.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009176.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009177.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097441.0','1044456.0','1', '1','1','2761.92', '1','1','2000.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009178.0','1018889.0','1', '1','1','13498.83', '1','1','4358.0', '1','1','9140.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097442.0','1044456.0','100', '91','50','96347.04', '83','40','80080.49', '61','25','16266.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009179.0','1018889.0','4', '4','2','6716.0', '4','2','6716.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097443.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009180.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097444.0','1044456.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009181.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097445.0','1044456.0','1', '1','1','4705.26', '1','0','0.0', '1','1','4705.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009182.0','1018889.0','1', '1','1','1038.0', '1','1','1038.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097446.0','1044456.0','1', '1','1','3710.0', '1','1','3710.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009183.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097447.0','1044456.0','7256', '5992','2046','4353209.91', '5406','1778','3760672.73', '3429','465','592537.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009184.0','1018889.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097448.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009185.0','1018889.0','1', '1','1','1184.0', '1','1','1184.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097449.0','1044456.0','40', '37','15','32517.48', '35','11','25638.32', '27','6','6879.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009186.0','1018889.0','1', '1','1','4825.84', '1','1','4488.85', '1','1','336.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097450.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009187.0','1018889.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097451.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009188.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097452.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009189.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097453.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009190.0','1018889.0','2', '2','2','14270.0', '2','2','14270.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097454.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009191.0','1018889.0','1', '1','1','6205.14', '1','1','3948.0', '1','1','2257.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097455.0','1044456.0','1570', '1496','985','7782193.46', '1460','860','5403080.58', '937','458','2379112.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009192.0','1018889.0','1', '1','1','5903.0', '1','1','5903.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097456.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008757.0','1018889.0','1', '1','1','3803.25', '1','1','1004.0', '1','1','2799.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097021.0','1044456.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009193.0','1018889.0','1951', '1545','498','751590.1', '1303','315','598245.58', '861','204','153344.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097457.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009194.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097458.0','1044456.0','1', '1','1','4710.41', '1','1','4358.0', '1','1','352.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009195.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097459.0','1044456.0','3', '3','3','34834.58', '3','3','20134.0', '3','2','14700.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009196.0','1018889.0','3', '3','2','4000.0', '3','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097460.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009197.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097461.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009198.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097462.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009199.0','1018889.0','1', '1','1','3184.0', '1','1','3184.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097463.0','1044456.0','7', '6','5','27746.71', '5','4','20040.0', '5','2','7706.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008765.0','1018889.0','2', '2','1','2358.0', '2','1','2358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097029.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008628.0','1018889.0','3', '3','3','12750.59', '3','2','11027.0', '3','2','1723.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096892.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009200.0','1018889.0','2', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097464.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008869.0','1018889.0','1107', '941','409','543400.87', '750','169','325166.09', '614','277','218234.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097133.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009201.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097465.0','1044456.0','4', '3','1','4358.0', '3','1','4358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009202.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097466.0','1044456.0','36', '31','24','106301.59', '31','23','85438.01', '23','8','20863.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009203.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097467.0','1044456.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008673.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096937.0','1044456.0','1', '1','1','10526.63', '1','1','9558.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008498.0','1018889.0','1', '1','1','3056.72', '1','1','3056.72', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096762.0','1044456.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009204.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097468.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009205.0','1018889.0','3', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097469.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009206.0','1018889.0','1', '1','1','5362.0', '1','1','5362.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097470.0','1044456.0','6', '4','1','761.92', '3','0','0.0', '2','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008842.0','1018889.0','1', '1','1','6134.0', '1','1','6134.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097106.0','1044456.0','3', '2','2','9408.03', '2','2','5139.86', '2','2','4268.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009207.0','1018889.0','4', '4','1','968.63', '4','0','0.0', '3','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097471.0','1044456.0','2', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009208.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097472.0','1044456.0','1', '1','1','5127.55', '1','1','2358.0', '1','1','2769.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009209.0','1018889.0','14868', '13924','10199','71093067.7', '13642','9528','47399371.38', '9785','4695','23693696.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097473.0','1044456.0','1', '1','1','4489.09', '1','1','4489.09', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009210.0','1018889.0','1', '1','1','761.92', '0','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097474.0','1044456.0','5899', '5589','3458','19817008.39', '5351','2654','13140562.0', '3799','1985','6676446.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009211.0','1018889.0','2', '1','1','9558.0', '1','1','9558.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097475.0','1044456.0','1', '1','1','5119.92', '1','1','4358.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009212.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097476.0','1044456.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009213.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097477.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009214.0','1018889.0','4', '4','3','9785.77', '4','2','6616.0', '3','2','3169.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097478.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009215.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097479.0','1044456.0','6769', '5602','1840','3504181.09', '5017','1454','2995356.05', '3051','550','508825.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008880.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097144.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009216.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097480.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008500.0','1018889.0','1', '1','1','6134.0', '1','1','6134.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096764.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009217.0','1018889.0','2', '2','2','28609.35', '2','2','14298.89', '2','2','14310.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097481.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008629.0','1018889.0','3', '3','2','16092.71', '3','1','4358.0', '3','2','11734.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096893.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009218.0','1018889.0','6', '5','0','0.0', '5','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097482.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009219.0','1018889.0','2', '2','2','4608.0', '2','1','4358.0', '2','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097483.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009220.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097484.0','1044456.0','1', '1','1','3583.48', '1','1','2510.0', '1','1','1073.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009221.0','1018889.0','15', '12','7','77858.52', '10','7','41204.0', '9','5','36654.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097485.0','1044456.0','1', '1','1','6860.0', '1','1','6860.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009222.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097486.0','1044456.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009223.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097487.0','1044456.0','1', '1','1','12794.65', '1','1','8263.58', '1','1','4531.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009224.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097488.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009225.0','1018889.0','2', '2','2','15584.17', '2','2','15584.17', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097489.0','1044456.0','1027', '858','370','792281.35', '777','319','694934.96', '500','72','97346.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009226.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097490.0','1044456.0','1008', '803','252','526513.08', '712','229','475680.03', '432','35','50833.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009227.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097491.0','1044456.0','11', '6','2','1182.34', '5','1','547.94', '5','1','634.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009228.0','1018889.0','3', '3','3','6250.0', '3','3','6000.0', '1','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097492.0','1044456.0','681', '580','236','405360.53', '515','186','333466.68', '334','77','71893.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009229.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097493.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009230.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097494.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009231.0','1018889.0','383', '364','78','143186.11', '354','66','111315.35', '218','22','31870.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097495.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009232.0','1018889.0','3', '3','3','34283.38', '3','3','18321.0', '3','2','15962.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097496.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009233.0','1018889.0','1', '1','1','5119.92', '1','1','4358.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097497.0','1044456.0','258', '241','85','102346.27', '228','69','88014.52', '130','18','14331.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009234.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097498.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009235.0','1018889.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097499.0','1044456.0','1', '1','1','22514.43', '1','1','4358.0', '1','1','18156.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2008871.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097135.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008759.0','1018889.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097023.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009236.0','1018889.0','1', '1','1','13455.0', '1','1','4358.0', '1','1','9097.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097500.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009237.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097501.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008811.0','1018889.0','6', '6','5','40708.13', '6','5','35123.0', '5','2','5585.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097075.0','1044456.0','9', '9','7','81908.3', '9','7','50429.05', '7','3','31479.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009238.0','1018889.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097502.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009239.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097503.0','1044456.0','7', '4','4','10635.57', '4','3','6000.0', '1','1','4635.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009240.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097504.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009241.0','1018889.0','4', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097505.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009242.0','1018889.0','960', '811','424','670309.41', '615','179','447664.27', '559','283','222645.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097506.0','1044456.0','4', '4','2','17500.1', '3','2','13092.0', '3','2','4408.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009243.0','1018889.0','527', '454','151','241142.89', '429','132','198828.1', '260','42','42314.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097507.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009244.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097508.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009245.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097509.0','1044456.0','1', '1','1','11136.0', '1','1','11136.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009246.0','1018889.0','2', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097510.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009247.0','1018889.0','6936', '6551','4247','31370858.38', '6389','3826','19362147.92', '4501','2225','12008710.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097511.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009248.0','1018889.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097512.0','1044456.0','1', '1','1','1004.0', '1','1','1004.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009249.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097513.0','1044456.0','2', '2','2','6358.0', '2','2','6358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009250.0','1018889.0','2', '2','2','38267.85', '2','2','22416.0', '2','2','15851.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097514.0','1044456.0','2', '2','1','4358.0', '2','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009251.0','1018889.0','1', '1','1','2753.52', '1','1','2678.87', '1','1','74.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097515.0','1044456.0','1', '1','1','25064.03', '1','1','12812.67', '1','1','12251.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009252.0','1018889.0','32', '31','22','143082.58', '31','22','114889.88', '18','6','28192.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097516.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009253.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097517.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009254.0','1018889.0','22', '19','9','19218.0', '19','9','19218.0', '10','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097518.0','1044456.0','10', '6','1','761.92', '6','0','0.0', '4','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009255.0','1018889.0','17', '16','9','8756.09', '15','3','4184.57', '12','6','4571.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097519.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009256.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097520.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009257.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097521.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009258.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097522.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009259.0','1018889.0','320', '305','184','516516.48', '286','103','395914.91', '223','126','120601.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097523.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009260.0','1018889.0','179', '129','51','101735.39', '108','33','66779.11', '77','21','34956.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097524.0','1044456.0','460', '430','172','455015.79', '413','139','361503.91', '255','69','93511.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008791.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097055.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009261.0','1018889.0','14', '13','10','50415.06', '12','9','32024.0', '5','4','18391.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097525.0','1044456.0','3', '3','2','25270.36', '2','2','19870.0', '2','1','5400.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009262.0','1018889.0','1', '1','1','1004.0', '1','1','1004.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097526.0','1044456.0','4', '4','4','27706.53', '4','4','16696.0', '3','1','11010.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008651.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096915.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008455.0','1018889.0','9', '8','8','48864.75', '8','8','21316.0', '5','5','27548.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096719.0','1044456.0','1', '1','1','6679.52', '1','1','5012.0', '1','1','1667.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008626.0','1018889.0','1', '1','1','14858.0', '1','1','14858.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096890.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008826.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097090.0','1044456.0','2', '2','2','34403.0', '2','2','23722.85', '2','1','10680.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009263.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097527.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009264.0','1018889.0','1', '1','1','3004.0', '1','1','3004.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097528.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009265.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097529.0','1044456.0','1498', '1258','431','1008864.11', '1159','380','858318.8', '726','103','150545.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009266.0','1018889.0','4', '4','3','6358.0', '4','3','6358.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097530.0','1044456.0','4', '2','1','5993.47', '2','1','5686.98', '1','1','306.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008820.0','1018889.0','1', '1','1','4758.0', '1','1','4358.0', '1','1','400.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097084.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009267.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097531.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009268.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097532.0','1044456.0','3', '3','3','30965.91', '3','3','25419.0', '2','1','5546.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009269.0','1018889.0','2', '1','1','22502.72', '1','1','9558.0', '1','1','12944.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097533.0','1044456.0','2', '2','2','25088.53', '2','2','12422.0', '2','1','12666.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009270.0','1018889.0','2', '2','2','9477.92', '2','2','8716.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097534.0','1044456.0','5030', '4818','3097','13947803.38', '4714','2407','11019226.14', '3258','1584','2928577.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009271.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097535.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009272.0','1018889.0','75', '64','41','220780.1', '62','39','164318.23', '46','14','56461.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097536.0','1044456.0','7', '7','3','3175.34', '7','1','2000.0', '4','2','1175.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009273.0','1018889.0','5', '3','2','5864.0', '3','2','5864.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097537.0','1044456.0','370', '310','110','199496.58', '280','85','179270.82', '178','31','20225.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009274.0','1018889.0','10395', '9893','7141','47211285.44', '9775','6351','32369514.55', '6273','3210','14841770.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097538.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009275.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097539.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009276.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097540.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009277.0','1018889.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097541.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009278.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097542.0','1044456.0','7585', '7062','4785','31901087.08', '6871','4271','22043874.45', '4562','2299','9857212.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009279.0','1018889.0','5364', '4453','1488','2975292.25', '4078','1323','2633576.69', '2438','293','341715.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097543.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008453.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096717.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009280.0','1018889.0','163', '148','50','98044.13', '130','35','67285.14', '85','24','30758.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097544.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008767.0','1018889.0','38', '35','15','28876.72', '33','15','28312.61', '19','1','564.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097031.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009281.0','1018889.0','4', '4','3','6974.0', '4','3','6974.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097545.0','1044456.0','8', '5','1','2000.0', '5','1','2000.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009282.0','1018889.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097546.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009283.0','1018889.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097547.0','1044456.0','9', '8','7','45189.9', '8','7','23002.0', '7','4','22187.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009284.0','1018889.0','83', '76','29','53300.64', '73','27','46146.5', '48','6','7154.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097548.0','1044456.0','1', '1','1','15469.89', '1','1','6134.0', '1','1','9335.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009285.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097549.0','1044456.0','159', '154','80','241725.23', '143','52','184063.63', '91','44','57661.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009286.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097550.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009287.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097551.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008769.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097033.0','1044456.0','56', '48','24','90030.2', '46','24','77538.0', '28','2','12492.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009288.0','1018889.0','1', '1','1','9582.0', '1','1','9582.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097552.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009289.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097553.0','1044456.0','1', '1','1','6105.31', '1','1','6105.31', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009290.0','1018889.0','4131', '3856','2782','24157167.19', '3789','2632','15406463.61', '2301','1230','8750703.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097554.0','1044456.0','11738', '11050','8061','57543562.58', '10853','7494','38369611.73', '6846','3469','19173950.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009291.0','1018889.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097555.0','1044456.0','17', '11','2','6358.0', '8','2','6358.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009292.0','1018889.0','1', '1','1','9174.28', '1','1','6706.0', '1','1','2468.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097556.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009293.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097557.0','1044456.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009294.0','1018889.0','30', '26','13','71148.15', '23','12','53002.0', '16','3','18146.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097558.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008838.0','1018889.0','5', '5','4','16002.77', '5','3','10685.16', '4','3','5317.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097102.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009295.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097559.0','1044456.0','1', '1','1','1738.97', '1','1','1738.97', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008873.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097137.0','1044456.0','3', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009296.0','1018889.0','3', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097560.0','1044456.0','1', '1','1','6963.71', '1','1','6757.0', '1','1','206.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009297.0','1018889.0','1', '1','1','14186.08', '1','1','5970.0', '1','1','8216.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097561.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008624.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096888.0','1044456.0','63', '57','16','22747.53', '57','14','20868.29', '32','3','1879.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009298.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097562.0','1044456.0','1', '1','1','16256.68', '1','1','5864.0', '1','1','10392.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009299.0','1018889.0','1', '1','1','6817.35', '1','1','2358.0', '1','1','4459.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097563.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009300.0','1018889.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097564.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008739.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097003.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009301.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097565.0','1044456.0','2', '2','2','8883.21', '2','2','6716.0', '2','1','2167.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009302.0','1018889.0','3', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097566.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009303.0','1018889.0','2', '2','1','761.92', '1','0','0.0', '2','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097567.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009304.0','1018889.0','1', '1','1','10378.98', '1','1','9558.0', '1','1','820.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097568.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009305.0','1018889.0','1', '1','1','129.21', '1','1','129.21', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097569.0','1044456.0','122', '102','37','47171.5', '80','15','28820.5', '58','23','18351.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009306.0','1018889.0','3', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097570.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009272.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097536.0','1044456.0','1', '1','1','5403.56', '1','0','0.0', '1','1','5403.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009307.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097571.0','1044456.0','4', '4','3','28810.85', '4','3','21707.0', '4','2','7103.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009308.0','1018889.0','11', '11','7','45323.36', '9','7','30146.0', '9','2','15177.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097572.0','1044456.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009309.0','1018889.0','15865', '14807','9298','61425798.43', '14470','8163','44862855.35', '8363','3956','16562943.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097573.0','1044456.0','93', '66','51','345467.99', '61','51','221969.2', '39','15','123498.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009310.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097574.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009311.0','1018889.0','52', '34','25','104479.53', '32','25','84425.0', '14','6','20054.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097575.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009312.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097576.0','1044456.0','1', '1','1','5292.54', '1','1','5292.54', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009313.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097577.0','1044456.0','204', '190','110','213276.82', '179','53','131323.06', '151','77','81953.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009314.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097578.0','1044456.0','375', '323','182','399113.26', '305','161','336881.14', '190','55','62232.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009315.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097579.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009316.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097580.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009317.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097581.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009318.0','1018889.0','1', '1','1','2643.63', '1','1','1675.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097582.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009319.0','1018889.0','1', '1','1','3419.5', '1','1','2884.0', '1','1','535.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097583.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009320.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097584.0','1044456.0','3964', '3685','1965','3590834.22', '3450','997','2408814.76', '2448','1304','1182019.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009321.0','1018889.0','2504', '2353','1392','2862161.31', '2172','788','2019070.34', '1646','904','843090.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097585.0','1044456.0','1', '1','1','1114.88', '1','1','1114.88', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008840.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097104.0','1044456.0','12', '11','5','7317.95', '9','3','4825.48', '7','4','2492.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009322.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097586.0','1044456.0','4', '4','1','2000.0', '4','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009323.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097587.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009324.0','1018889.0','48', '45','29','151750.37', '42','27','120820.71', '28','9','30929.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097588.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008740.0','1018889.0','172', '166','83','170862.26', '148','53','127484.74', '114','41','43377.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097004.0','1044456.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009325.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097589.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009326.0','1018889.0','2', '2','2','23677.14', '2','2','19872.0', '2','1','3805.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097590.0','1044456.0','1', '1','1','7086.11', '1','1','7086.11', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009327.0','1018889.0','1', '1','1','8809.7', '1','1','4358.0', '1','1','4451.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097591.0','1044456.0','6770', '6321','5277','49792483.04', '6213','5078','28860722.08', '4413','2943','20931760.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008809.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097073.0','1044456.0','3', '3','3','8358.0', '3','3','8358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009328.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097592.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008851.0','1018889.0','1', '1','1','2124.93', '1','1','2124.93', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097115.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009329.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097593.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009330.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097594.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009331.0','1018889.0','2', '2','2','6061.65', '2','2','4858.35', '2','1','1203.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097595.0','1044456.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009332.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097596.0','1044456.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009333.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097597.0','1044456.0','1', '1','1','12649.06', '1','1','7282.0', '1','1','5367.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008705.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096969.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009334.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097598.0','1044456.0','3724', '3494','2013','4365544.07', '3319','1155','3181791.11', '2375','1263','1183752.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008539.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096803.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008741.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097005.0','1044456.0','1', '1','1','5459.4', '1','1','4697.48', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009335.0','1018889.0','3', '2','1','12081.07', '2','1','1008.0', '2','1','11073.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097599.0','1044456.0','1', '1','1','9553.76', '1','1','4358.0', '1','1','5195.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009336.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097600.0','1044456.0','1', '1','1','1004.0', '1','1','1004.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009337.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097601.0','1044456.0','2', '2','2','3631.64', '2','1','2368.7', '2','1','1262.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009338.0','1018889.0','1', '1','1','6295.0', '1','1','6295.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097602.0','1044456.0','6', '6','4','13251.71', '6','4','9761.55', '3','2','3490.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009339.0','1018889.0','36', '35','23','53644.11', '32','15','45018.14', '28','13','8625.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097603.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009340.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097604.0','1044456.0','1', '1','1','7708.24', '1','1','4134.0', '1','1','3574.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009341.0','1018889.0','2', '2','2','7256.97', '2','2','6716.0', '1','1','540.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097605.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009342.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097606.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009343.0','1018889.0','4213', '4034','2336','8831108.98', '3898','1636','7043715.89', '2624','1251','1787393.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097607.0','1044456.0','1', '1','1','26200.0', '1','1','16364.0', '1','1','9836.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009344.0','1018889.0','1', '1','1','1315.0', '1','1','1315.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097608.0','1044456.0','919', '853','434','1091413.64', '787','264','799097.92', '578','258','292315.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009345.0','1018889.0','594', '564','327','584681.42', '528','158','406317.92', '403','222','178363.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097609.0','1044456.0','1', '1','1','5864.0', '1','1','5864.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009346.0','1018889.0','28', '24','12','20972.67', '22','10','16704.88', '16','5','4267.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097610.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009347.0','1018889.0','6', '5','4','33449.9', '5','4','16938.0', '3','1','16511.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097611.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009348.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097612.0','1044456.0','6807', '6374','5212','48881276.93', '6248','5011','29902032.79', '4339','2638','18979244.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009349.0','1018889.0','23', '22','12','45091.82', '19','10','30156.76', '14','7','14935.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097613.0','1044456.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009306.0','1018889.0','1', '1','1','283.15', '1','1','283.15', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097570.0','1044456.0','19', '17','11','83037.31', '15','11','51086.0', '10','3','31951.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008480.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096744.0','1044456.0','2', '2','1','3053.47', '2','1','2358.0', '1','1','695.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009350.0','1018889.0','817', '781','480','1057468.33', '741','264','738193.76', '536','299','319274.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097614.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009351.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097615.0','1044456.0','1', '1','1','10397.12', '1','1','2358.0', '1','1','8039.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009352.0','1018889.0','2', '2','1','12500.0', '2','1','12500.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097616.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008683.0','1018889.0','1', '1','1','21738.89', '1','1','7950.0', '1','1','13788.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096947.0','1044456.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009353.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097617.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009354.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097618.0','1044456.0','10', '9','7','13962.81', '9','3','10295.0', '6','4','3667.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009355.0','1018889.0','1', '1','1','761.92', '0','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097619.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009356.0','1018889.0','261', '245','125','232024.26', '232','70','169519.15', '172','74','62505.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097620.0','1044456.0','1', '1','1','7268.43', '1','1','6183.04', '1','1','1085.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009357.0','1018889.0','1', '1','1','8205.0', '1','1','8205.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097621.0','1044456.0','2', '2','1','1546.91', '2','1','1546.91', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009358.0','1018889.0','1600', '1497','755','2158432.2', '1377','450','1406349.52', '1053','487','752082.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097622.0','1044456.0','4', '4','1','761.92', '3','0','0.0', '2','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009359.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097623.0','1044456.0','1', '1','1','14858.0', '1','1','14858.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009360.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097624.0','1044456.0','1', '1','1','12573.76', '1','1','3506.0', '1','1','9067.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008654.0','1018889.0','1', '1','1','4740.0', '1','1','4740.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096918.0','1044456.0','1368', '1273','608','1053325.43', '1207','403','811786.37', '844','286','241539.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009361.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097625.0','1044456.0','239', '231','102','216157.14', '222','74','175947.62', '137','38','40209.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009362.0','1018889.0','6', '6','3','5358.0', '6','1','4358.0', '5','2','1000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097626.0','1044456.0','1293', '1112','598','1527149.4', '1040','503','1181179.95', '669','235','345969.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009363.0','1018889.0','1', '1','1','1257.92', '1','1','289.29', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097627.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008766.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097030.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009364.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097628.0','1044456.0','13', '11','8','16374.62', '10','5','13610.65', '9','4','2763.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008457.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096721.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009365.0','1018889.0','119', '105','39','78905.09', '101','31','69298.43', '55','12','9606.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097629.0','1044456.0','3664', '3290','1469','3082124.4', '2984','1040','2322983.0', '2068','711','759141.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009366.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097630.0','1044456.0','18', '18','12','21969.72', '17','7','16590.86', '13','7','5378.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009367.0','1018889.0','410', '380','171','308701.85', '364','121','240466.71', '221','80','68235.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097631.0','1044456.0','1', '1','1','3004.0', '1','1','3004.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009368.0','1018889.0','1447', '1369','765','2988046.01', '1310','563','2298032.46', '925','403','690013.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097632.0','1044456.0','1', '1','1','9764.71', '1','1','9558.0', '1','1','206.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001533.0', '2009369.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005909.0', '2097633.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009370.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097634.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009371.0','1018889.0','48', '39','29','178932.25', '39','27','122789.65', '24','10','56142.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097635.0','1044456.0','4', '2','1','2586.92', '2','1','1825.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009372.0','1018889.0','1', '1','1','3630.66', '1','1','3630.66', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097636.0','1044456.0','13', '12','6','10285.76', '10','4','8000.0', '9','3','2285.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009373.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097637.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009374.0','1018889.0','1', '1','1','10996.57', '1','1','1588.0', '1','1','9408.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097638.0','1044456.0','2', '2','1','2358.0', '2','1','2358.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009375.0','1018889.0','1', '1','1','7961.92', '1','1','7200.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097639.0','1044456.0','2', '2','1','206.71', '2','0','0.0', '1','1','206.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009376.0','1018889.0','30', '28','6','12676.94', '24','3','10173.34', '12','3','2503.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097640.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009377.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097641.0','1044456.0','11', '10','8','52423.74', '10','8','46894.54', '6','2','5529.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009378.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097642.0','1044456.0','500', '474','292','593607.94', '445','176','434882.78', '329','172','158725.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008737.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097001.0','1044456.0','2', '1','1','500.0', '0','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009379.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097643.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008882.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097146.0','1044456.0','14', '12','5','8320.28', '11','3','7108.81', '11','2','1211.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009380.0','1018889.0','8', '8','4','3426.6', '7','1','2694.0', '7','3','732.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097644.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009381.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097645.0','1044456.0','1', '1','1','561.65', '1','1','561.65', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009382.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097646.0','1044456.0','11', '10','7','14718.19', '10','7','13749.56', '5','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009383.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097647.0','1044456.0','1', '1','1','2730.0', '1','1','2730.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009384.0','1018889.0','3', '3','1','2000.0', '3','1','2000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097648.0','1044456.0','11', '11','8','14283.65', '11','7','12129.68', '8','2','2153.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009385.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097649.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009386.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097650.0','1044456.0','5', '3','2','2497.69', '3','1','2000.0', '3','1','497.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009387.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097651.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009388.0','1018889.0','1203', '1128','627','1341258.51', '1068','411','1023301.4', '804','350','317957.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097652.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009389.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097653.0','1044456.0','5', '4','4','5279.16', '2','2','3548.61', '3','2','1730.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009390.0','1018889.0','1', '1','1','2156.0', '1','1','2156.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097654.0','1044456.0','1', '1','1','13501.7', '1','1','7709.0', '1','1','5792.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009391.0','1018889.0','5', '4','4','6010.3', '3','3','5248.38', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097655.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008703.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096967.0','1044456.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009392.0','1018889.0','62', '55','14','38428.25', '49','12','36697.7', '25','3','1730.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097656.0','1044456.0','1009', '880','322','436896.26', '696','139','294554.86', '521','195','142341.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008849.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097113.0','1044456.0','1', '1','1','798.0', '1','1','798.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009393.0','1018889.0','53', '43','12','21471.27', '34','8','18978.8', '26','4','2492.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097657.0','1044456.0','2', '1','1','24051.8', '1','1','6638.0', '1','1','17413.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008652.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096916.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009394.0','1018889.0','226', '190','75','101518.51', '166','36','70033.72', '104','49','31484.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097658.0','1044456.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009395.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097659.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009396.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097660.0','1044456.0','1', '1','1','1851.26', '1','1','946.0', '1','1','905.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008557.0','1018889.0','111', '102','46','88880.38', '93','43','80626.02', '58','8','8254.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096821.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009397.0','1018889.0','2357', '2213','1230','2785467.13', '2083','912','2220877.64', '1507','540','564589.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097661.0','1044456.0','65', '62','41','64714.73', '54','21','41932.99', '46','28','22781.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008707.0','1018889.0','121', '110','60','122722.66', '104','38','87571.63', '71','32','35151.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096971.0','1044456.0','2033', '1855','864','1645375.57', '1656','494','1108716.23', '1286','532','536659.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009398.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097662.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009399.0','1018889.0','5239', '4571','1894','3490470.52', '4016','1333','2721534.7', '2768','813','768935.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097663.0','1044456.0','305', '278','149','300866.27', '245','86','222019.65', '199','89','78846.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009400.0','1018889.0','5', '5','4','4847.84', '4','2','3324.0', '4','2','1523.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097664.0','1044456.0','1', '1','1','2317.04', '1','1','2317.04', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009401.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097665.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009402.0','1018889.0','2', '2','1','5541.57', '2','1','5541.57', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097666.0','1044456.0','17', '17','8','15931.36', '14','6','13677.55', '8','3','2253.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009403.0','1018889.0','1', '1','1','3430.92', '1','1','2669.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097667.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009404.0','1018889.0','1484', '1209','399','544695.91', '1027','263','409566.58', '702','164','135129.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097668.0','1044456.0','1', '1','1','1484.0', '1','1','1484.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009405.0','1018889.0','1', '1','1','206.71', '0','0','0.0', '1','1','206.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097669.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009406.0','1018889.0','94', '90','59','190468.4', '85','34','118588.31', '74','41','71880.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097670.0','1044456.0','3', '3','0','0.0', '1','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009407.0','1018889.0','750', '649','289','411664.16', '520','120','247562.76', '427','198','164101.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097671.0','1044456.0','303', '256','68','114623.46', '223','53','97744.44', '136','20','16879.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008710.0','1018889.0','1436', '1279','466','768620.57', '1126','258','541815.3', '793','249','226805.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096974.0','1044456.0','2903', '2479','865','1687771.75', '2262','728','1532519.72', '1387','207','155252.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009408.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097672.0','1044456.0','11', '7','2','2200.0', '4','0','0.0', '5','2','2200.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009409.0','1018889.0','2', '2','1','2452.15', '2','1','2452.15', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097673.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009410.0','1018889.0','2', '2','2','14665.52', '2','2','4614.4', '2','2','10051.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097674.0','1044456.0','3', '3','3','2285.76', '0','0','0.0', '3','3','2285.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008793.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097057.0','1044456.0','398', '356','173','272952.96', '318','71','167351.96', '223','125','105601.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009411.0','1018889.0','1', '1','1','972.82', '1','1','516.11', '1','1','456.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097675.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009412.0','1018889.0','19', '18','11','33032.25', '18','11','26424.16', '5','4','6608.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097676.0','1044456.0','1', '1','1','1608.19', '1','1','1608.19', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009413.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097677.0','1044456.0','47', '39','18','51567.08', '36','13','34733.41', '25','9','16833.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009414.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097678.0','1044456.0','1', '1','1','2884.0', '1','1','2884.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008762.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097026.0','1044456.0','21', '18','7','7680.88', '16','2','2757.87', '10','7','4923.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009415.0','1018889.0','67', '53','27','75842.66', '47','23','60678.0', '29','7','15164.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097679.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009416.0','1018889.0','1', '1','1','652.65', '1','0','0.0', '1','1','652.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097680.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008655.0','1018889.0','7', '7','3','4968.63', '7','2','4000.0', '4','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096919.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009417.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097681.0','1044456.0','2007', '1744','609','1084826.48', '1514','376','759983.8', '1015','283','324842.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009418.0','1018889.0','1', '1','1','3942.72', '1','1','804.0', '1','1','3138.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097682.0','1044456.0','309', '266','146','258838.51', '235','79','195143.06', '180','79','63695.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009419.0','1018889.0','331', '290','114','211696.67', '251','79','127644.41', '171','59','84052.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097683.0','1044456.0','1', '1','1','2509.7', '1','1','2000.0', '1','1','509.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009420.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097684.0','1044456.0','2', '2','1','3172.0', '2','1','3172.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009421.0','1018889.0','57', '50','32','58308.01', '40','23','47576.21', '37','14','10731.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097685.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009422.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097686.0','1044456.0','27', '25','18','77595.22', '25','16','59742.93', '15','8','17852.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008521.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096785.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009423.0','1018889.0','85', '79','36','108089.62', '68','22','77223.66', '48','24','30865.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097687.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008715.0','1018889.0','3948', '3678','2079','4371757.27', '3471','1164','3082514.31', '2537','1363','1289242.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096979.0','1044456.0','26', '23','5','7006.36', '21','3','5482.52', '10','2','1523.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009424.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097688.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009425.0','1018889.0','24', '22','12','27118.62', '22','10','22482.18', '16','7','4636.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097689.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009426.0','1018889.0','1', '1','1','3344.0', '1','1','3344.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097690.0','1044456.0','2326', '2040','880','1381889.83', '1685','405','912816.49', '1326','558','469073.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009427.0','1018889.0','1093', '1003','604','1285120.47', '922','361','947258.3', '719','360','337862.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097691.0','1044456.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009428.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097692.0','1044456.0','293', '279','164','391469.81', '264','79','266783.5', '191','125','124686.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009429.0','1018889.0','1', '1','1','1164.0', '1','1','1164.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097693.0','1044456.0','10', '8','3','7901.66', '8','3','5615.0', '1','1','2286.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009430.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097694.0','1044456.0','1', '1','1','2653.36', '1','1','2000.0', '1','1','653.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008816.0','1018889.0','252', '229','133','331838.83', '214','110','289400.16', '111','45','42438.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097080.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008653.0','1018889.0','1', '1','1','182.31', '1','0','0.0', '1','1','182.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096917.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009431.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097695.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009432.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097696.0','1044456.0','233', '183','78','163329.38', '163','61','138238.6', '113','23','25090.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009433.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097697.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009434.0','1018889.0','1', '1','1','2724.0', '1','1','2724.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097698.0','1044456.0','264', '243','149','346907.59', '230','114','268538.47', '173','81','78369.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009435.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097699.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009436.0','1018889.0','5', '5','3','3553.63', '5','1','2585.0', '5','2','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097700.0','1044456.0','1', '1','1','2724.0', '1','1','2724.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009437.0','1018889.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097701.0','1044456.0','55', '51','11','20522.07', '47','8','16761.29', '26','4','3760.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009438.0','1018889.0','7', '7','4','9228.98', '6','2','6529.8', '6','3','2699.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097702.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009439.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097703.0','1044456.0','5', '5','4','4806.41', '5','1','3075.86', '5','3','1730.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009440.0','1018889.0','7759', '7356','4110','8168375.98', '6862','2205','5572560.25', '5252','2702','2595815.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097704.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009441.0','1018889.0','1', '1','1','2617.35', '1','1','2617.35', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097705.0','1044456.0','1', '1','1','2694.0', '1','1','2694.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009442.0','1018889.0','3', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097706.0','1044456.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009443.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097707.0','1044456.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009444.0','1018889.0','1', '1','1','206.71', '1','0','0.0', '1','1','206.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097708.0','1044456.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009445.0','1018889.0','29', '27','11','9437.95', '25','3','2800.72', '13','9','6637.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097709.0','1044456.0','1', '1','1','4170.0', '1','1','4170.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009446.0','1018889.0','7', '7','4','4409.98', '5','2','2679.43', '6','2','1730.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097710.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009447.0','1018889.0','5', '5','4','5217.42', '5','3','4804.0', '2','2','413.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097711.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009448.0','1018889.0','1043', '952','521','1057958.54', '876','345','779187.72', '672','307','278770.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097712.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008829.0','1018889.0','3', '2','1','761.92', '2','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097093.0','1044456.0','2', '2','1','306.68', '2','1','306.68', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009449.0','1018889.0','9', '9','4','2039.73', '9','3','1626.31', '4','2','413.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097713.0','1044456.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009450.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097714.0','1044456.0','6459', '5865','2747','6074917.92', '5541','2001','4398752.52', '3689','1281','1676165.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009451.0','1018889.0','1', '1','1','2761.92', '1','1','2000.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097715.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009452.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097716.0','1044456.0','5409', '4823','2252','4884490.86', '4284','1509','3534839.57', '3194','1114','1349651.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009453.0','1018889.0','2', '1','1','968.63', '0','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097717.0','1044456.0','17', '16','9','40028.94', '16','9','39822.23', '12','1','206.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009454.0','1018889.0','3', '3','3','2285.76', '1','0','0.0', '3','3','2285.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097718.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009455.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097719.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009456.0','1018889.0','845', '754','316','648436.12', '681','240','519478.71', '407','100','128957.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097720.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009457.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097721.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009458.0','1018889.0','2', '2','2','4434.0', '2','2','4434.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097722.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009459.0','1018889.0','4', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097723.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009460.0','1018889.0','1', '1','1','2655.25', '1','1','2655.25', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097724.0','1044456.0','7', '6','5','21927.13', '6','5','20833.54', '4','1','1093.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009461.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097725.0','1044456.0','1', '1','1','1403.55', '1','1','1403.55', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008650.0','1018889.0','1', '1','1','2126.4', '1','1','1626.4', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096914.0','1044456.0','1', '1','1','4284.65', '1','1','4284.65', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009462.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097726.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009463.0','1018889.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097727.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009464.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097728.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009465.0','1018889.0','1', '1','1','7045.0', '1','1','2000.0', '1','1','5045.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097729.0','1044456.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009466.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097730.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009467.0','1018889.0','1', '1','1','6502.0', '1','1','6502.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097731.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009468.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097732.0','1044456.0','1', '1','1','1185.34', '1','0','0.0', '1','1','1185.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009469.0','1018889.0','748', '672','274','366162.03', '537','120','229784.65', '444','168','136377.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097733.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009470.0','1018889.0','8', '5','1','2000.0', '5','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097734.0','1044456.0','1', '1','1','217.84', '1','0','0.0', '1','1','217.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009471.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097735.0','1044456.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008885.0','1018889.0','282', '256','153','221307.21', '222','100','156119.68', '180','78','65187.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097149.0','1044456.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009472.0','1018889.0','375', '315','130','177157.91', '270','101','149857.3', '187','41','27300.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097736.0','1044456.0','1', '1','1','4793.17', '1','1','3825.0', '1','1','968.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009473.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097737.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009474.0','1018889.0','24', '23','15','48042.49', '21','11','35755.88', '17','11','12286.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097738.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009475.0','1018889.0','1', '1','1','2761.92', '1','1','2000.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097739.0','1044456.0','918', '853','492','922287.52', '789','239','636649.58', '597','340','285637.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009476.0','1018889.0','235', '204','98','343420.86', '195','79','241921.0', '121','59','101499.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097740.0','1044456.0','215', '204','125','247950.78', '197','88','185666.81', '141','69','62283.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009477.0','1018889.0','1', '1','1','2224.78', '1','1','868.0', '1','1','1356.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097741.0','1044456.0','1', '1','1','5067.43', '1','1','2156.0', '1','1','2911.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009478.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097742.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009479.0','1018889.0','2848', '2696','1715','5480752.12', '2605','1250','4098606.44', '1865','970','1382145.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097743.0','1044456.0','621', '572','292','535959.95', '508','201','424708.67', '358','134','111251.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008553.0','1018889.0','265', '236','105','155825.92', '187','47','104643.23', '152','70','51182.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096817.0','1044456.0','567', '510','247','507192.65', '456','157','362375.36', '337','131','144817.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009480.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097744.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008538.0','1018889.0','1', '1','1','2370.67', '1','0','0.0', '1','1','2370.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096802.0','1044456.0','2', '2','1','3702.0', '2','1','3702.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009481.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097745.0','1044456.0','8', '5','3','5623.18', '5','3','5623.18', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009482.0','1018889.0','1', '1','1','2206.71', '1','1','2000.0', '1','1','206.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097746.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009483.0','1018889.0','3', '3','2','1523.84', '2','0','0.0', '3','2','1523.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097747.0','1044456.0','210', '192','107','239811.29', '172','79','198770.58', '115','46','41040.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009484.0','1018889.0','3', '3','2','1523.84', '3','0','0.0', '2','2','1523.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097748.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009485.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097749.0','1044456.0','708', '639','332','635525.38', '568','238','499906.9', '431','138','135618.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008789.0','1018889.0','18', '15','9','14822.16', '14','7','13091.61', '11','2','1730.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097053.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008481.0','1018889.0','94', '87','50','170525.08', '79','36','117744.38', '68','30','52780.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096745.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009486.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097750.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009487.0','1018889.0','2', '2','1','2968.63', '2','1','2000.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097751.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008713.0','1018889.0','2', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096977.0','1044456.0','1', '1','1','968.63', '0','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009488.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097752.0','1044456.0','54', '51','31','51340.41', '50','15','42648.16', '41','18','8692.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009489.0','1018889.0','15', '14','6','15668.96', '13','3','10506.73', '7','4','5162.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097753.0','1044456.0','1112', '1055','704','2067450.02', '1023','441','1392965.99', '764','463','674484.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008568.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096832.0','1044456.0','160', '145','87','205502.97', '143','49','158195.8', '111','59','47307.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009490.0','1018889.0','61', '57','39','84037.16', '47','21','62561.13', '39','26','21476.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097754.0','1044456.0','9', '9','6','11680.95', '9','4','10157.11', '7','2','1523.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009491.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097755.0','1044456.0','1', '1','1','961.63', '0','0','0.0', '1','1','961.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009492.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097756.0','1044456.0','1', '1','1','1144.34', '1','1','1144.34', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008675.0','1018889.0','1456', '1319','675','1288607.78', '1129','403','931587.96', '838','386','357019.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096939.0','1044456.0','1', '1','1','11606.63', '1','1','2724.0', '1','1','8882.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009493.0','1018889.0','1', '1','1','2217.42', '1','1','2217.42', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097757.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009494.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097758.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009495.0','1018889.0','31', '28','12','11424.83', '22','6','6865.01', '17','6','4559.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097759.0','1044456.0','8', '7','5','7089.97', '7','4','5566.13', '5','2','1523.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009496.0','1018889.0','34', '31','13','33487.81', '27','10','27629.98', '23','7','5857.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097760.0','1044456.0','11', '10','3','3202.42', '10','3','2667.95', '3','1','534.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009497.0','1018889.0','23', '23','9','15503.76', '23','6','13218.0', '9','3','2285.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097761.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009498.0','1018889.0','1', '1','1','4632.22', '1','1','3398.0', '1','1','1234.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097762.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009499.0','1018889.0','1', '1','1','22005.04', '1','1','9011.0', '1','1','12994.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097763.0','1044456.0','5', '5','1','164.06', '5','0','0.0', '4','1','164.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009500.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097764.0','1044456.0','2139', '2029','1153','2576820.86', '1891','698','1906582.12', '1399','695','670238.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009501.0','1018889.0','447', '429','293','982555.4', '406','203','699812.57', '319','188','282742.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097765.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009502.0','1018889.0','2502', '2260','1229','2453718.15', '1927','736','1730410.32', '1536','687','723307.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097766.0','1044456.0','1', '1','1','733.7', '1','1','733.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009503.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097767.0','1044456.0','1', '1','1','10381.89', '1','1','2746.0', '1','1','7635.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009504.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097768.0','1044456.0','313', '298','148','277360.47', '290','120','216170.03', '151','61','61190.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009505.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097769.0','1044456.0','1', '1','1','1290.0', '1','1','1290.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009506.0','1018889.0','2', '2','1','10731.76', '2','1','5536.0', '2','1','5195.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097770.0','1044456.0','54', '53','34','77283.25', '47','19','49191.38', '44','23','28091.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009507.0','1018889.0','1', '1','1','1624.69', '1','1','1624.69', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097771.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009508.0','1018889.0','270', '246','113','164185.24', '197','57','108451.56', '164','68','55733.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097772.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009509.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097773.0','1044456.0','1', '1','1','380.0', '1','1','380.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009510.0','1018889.0','1', '1','1','2358.0', '1','1','2358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097774.0','1044456.0','1', '1','1','3873.26', '1','1','3873.26', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009511.0','1018889.0','9', '5','0','0.0', '2','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097775.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009512.0','1018889.0','204', '194','137','506680.26', '190','117','371594.04', '141','59','135086.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097776.0','1044456.0','1', '1','1','1982.0', '1','1','1982.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009513.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097777.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009514.0','1018889.0','566', '550','392','1532179.79', '541','311','1117953.0', '408','239','414226.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097778.0','1044456.0','1', '1','1','3543.17', '1','1','1167.0', '1','1','2376.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009515.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097779.0','1044456.0','3', '3','2','5812.61', '3','2','4082.06', '2','2','1730.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009516.0','1018889.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097780.0','1044456.0','82', '78','39','126155.1', '73','28','86393.14', '50','20','39761.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009517.0','1018889.0','306', '286','178','438749.77', '278','108','325622.93', '192','105','113126.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097781.0','1044456.0','2', '2','2','2761.92', '2','1','2000.0', '2','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009518.0','1018889.0','1', '1','1','1749.3', '1','1','1749.3', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097782.0','1044456.0','2', '2','1','4304.7', '2','0','0.0', '2','1','4304.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009519.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097783.0','1044456.0','271', '232','74','122832.27', '217','58','107954.12', '118','19','14878.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009520.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097784.0','1044456.0','55', '46','10','18059.23', '42','10','17350.28', '30','1','708.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009521.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097785.0','1044456.0','11', '11','6','23445.28', '11','4','20479.49', '8','4','2965.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009522.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097786.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009523.0','1018889.0','675', '637','437','1094909.56', '610','313','892734.36', '459','227','202175.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097787.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009524.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097788.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009525.0','1018889.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097789.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009526.0','1018889.0','1', '1','1','761.92', '0','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097790.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009527.0','1018889.0','7', '5','3','5117.12', '5','3','5117.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097791.0','1044456.0','1', '1','1','3018.48', '1','1','1945.0', '1','1','1073.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009528.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097792.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009529.0','1018889.0','2', '2','2','12526.63', '2','2','11558.0', '2','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097793.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009530.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097794.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009531.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097795.0','1044456.0','47', '45','30','107081.9', '42','21','60218.75', '37','20','46863.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009532.0','1018889.0','35', '31','14','24657.29', '29','12','21559.65', '12','5','3097.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097796.0','1044456.0','2651', '2435','1208','2658493.73', '2234','932','2149579.1', '1638','487','508914.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009533.0','1018889.0','1', '1','1','3506.0', '1','1','3506.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097797.0','1044456.0','1', '1','1','1092.0', '1','1','1092.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009534.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097798.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009535.0','1018889.0','91', '81','17','35608.62', '76','11','22700.54', '34','7','12908.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097799.0','1044456.0','10', '9','4','10285.25', '9','4','8670.49', '5','2','1614.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009536.0','1018889.0','2317', '2203','1282','2890877.45', '2073','847','2205334.07', '1540','705','685543.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097800.0','1044456.0','1', '1','1','7200.0', '1','1','7200.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009537.0','1018889.0','192', '173','88','141822.48', '147','41','92477.84', '133','61','49344.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097801.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009538.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097802.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009539.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097803.0','1044456.0','106', '99','73','246821.74', '91','48','167616.91', '81','48','79204.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009540.0','1018889.0','83', '78','47','117886.66', '68','28','72459.23', '57','33','45427.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097804.0','1044456.0','1', '1','1','1223.09', '1','1','1223.09', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009541.0','1018889.0','831', '763','523','1331825.8', '716','394','1084947.5', '555','236','246878.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097805.0','1044456.0','5', '5','3','4761.92', '5','2','4000.0', '4','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009542.0','1018889.0','276', '243','135','260857.19', '213','98','214756.63', '157','61','46100.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097806.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009543.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097807.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009544.0','1018889.0','3', '3','1','2184.4', '3','1','2000.0', '3','1','184.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097808.0','1044456.0','6309', '5902','3201','7426013.85', '5569','2149','5659701.64', '4085','1665','1766312.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009545.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097809.0','1044456.0','39', '38','30','91076.61', '36','23','74641.16', '32','17','16435.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009546.0','1018889.0','3', '3','3','8567.07', '3','3','7775.29', '2','1','791.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097810.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009547.0','1018889.0','1', '1','1','4105.0', '1','1','4105.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097811.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009548.0','1018889.0','74', '72','49','141241.64', '71','37','112011.23', '54','31','29230.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097812.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009549.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097813.0','1044456.0','31', '28','10','19829.12', '25','6','15367.91', '16','7','4461.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009550.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097814.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009551.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097815.0','1044456.0','3', '3','2','18635.22', '3','2','4485.0', '1','1','14150.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009552.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097816.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009553.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097817.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009554.0','1018889.0','122', '95','18','27422.65', '85','16','23136.29', '45','3','4286.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097818.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009555.0','1018889.0','11', '11','5','4978.58', '10','3','3454.74', '7','2','1523.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097819.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009556.0','1018889.0','560', '519','190','501590.71', '510','164','385761.06', '258','59','115829.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097820.0','1044456.0','1', '1','1','15886.07', '1','1','1348.0', '1','1','14538.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009557.0','1018889.0','2', '2','1','968.63', '1','0','0.0', '2','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097821.0','1044456.0','6058', '5779','4094','10245975.09', '5593','2949','7845145.83', '4135','2280','2400829.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009558.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097822.0','1044456.0','7', '7','4','7834.68', '7','4','7072.76', '6','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009559.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097823.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009560.0','1018889.0','1', '1','1','5299.22', '1','1','5299.22', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097824.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009561.0','1018889.0','1', '1','1','3899.92', '1','1','3138.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097825.0','1044456.0','1', '1','1','4759.8', '1','1','2684.0', '1','1','2075.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009562.0','1018889.0','1', '1','1','2778.0', '1','1','2778.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097826.0','1044456.0','28', '23','11','25322.85', '22','10','23252.22', '13','3','2070.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009563.0','1018889.0','77', '76','51','148649.2', '65','38','104883.64', '56','32','43765.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097827.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009564.0','1018889.0','1', '1','1','7115.65', '1','1','6463.0', '1','1','652.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097828.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009565.0','1018889.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097829.0','1044456.0','1', '1','1','4948.63', '1','1','3980.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009566.0','1018889.0','1', '1','1','3038.0', '1','1','3038.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097830.0','1044456.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009567.0','1018889.0','1', '1','1','2968.63', '1','1','2000.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097831.0','1044456.0','6', '5','2','7287.92', '5','1','6526.0', '2','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009568.0','1018889.0','990', '818','273','567871.76', '754','218','448600.62', '467','96','119271.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097832.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009569.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097833.0','1044456.0','1454', '1337','491','1137981.22', '1292','426','938416.22', '691','148','199565.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009570.0','1018889.0','1484', '1096','341','663579.49', '922','268','583540.05', '567','88','80039.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097834.0','1044456.0','1332', '1146','424','1073680.18', '1076','361','921358.97', '609','140','152321.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009571.0','1018889.0','534', '489','310','878825.68', '457','206','621578.72', '356','198','257246.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097835.0','1044456.0','1', '1','1','7302.99', '1','1','778.0', '1','1','6524.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009572.0','1018889.0','23', '19','7','7002.6', '16','1','2000.0', '17','6','5002.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097836.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009573.0','1018889.0','808', '705','384','547321.2', '552','156','310760.4', '526','281','236560.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097837.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009574.0','1018889.0','1', '1','1','2806.45', '1','1','2563.53', '1','1','242.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097838.0','1044456.0','1', '1','1','24713.32', '1','1','8898.0', '1','1','15815.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009575.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097839.0','1044456.0','1', '1','1','9285.24', '1','1','6864.57', '1','1','2420.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009576.0','1018889.0','1', '1','1','3912.65', '1','1','3912.65', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097840.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009577.0','1018889.0','62', '59','40','117810.5', '53','25','78971.58', '46','34','38838.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097841.0','1044456.0','1', '1','1','5153.94', '1','1','5153.94', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009578.0','1018889.0','1', '1','1','784.19', '1','1','577.48', '1','1','206.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097842.0','1044456.0','729', '606','264','586429.78', '539','216','488060.05', '325','88','98369.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009579.0','1018889.0','1', '1','1','761.92', '0','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097843.0','1044456.0','1', '1','1','670.0', '1','1','670.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009580.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097844.0','1044456.0','9', '9','8','9606.0', '9','2','4214.64', '8','7','5391.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009581.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097845.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009582.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097846.0','1044456.0','65', '56','29','70434.59', '44','16','46764.9', '36','20','23669.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009583.0','1018889.0','2', '2','1','968.63', '2','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097847.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009584.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097848.0','1044456.0','20', '17','10','7986.03', '14','5','3007.37', '12','7','4978.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009585.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097849.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009586.0','1018889.0','1', '1','1','1945.0', '1','1','1945.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097850.0','1044456.0','1', '1','1','19020.46', '1','1','6607.0', '1','1','12413.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009587.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097851.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009588.0','1018889.0','1', '1','1','3112.0', '1','1','3112.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097852.0','1044456.0','1', '1','1','14858.0', '1','1','14858.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008887.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097151.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009589.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097853.0','1044456.0','77', '75','55','270793.53', '74','47','182578.09', '54','28','88215.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009590.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097854.0','1044456.0','1000', '957','608','1580577.12', '891','410','1170792.12', '714','355','409785.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009591.0','1018889.0','1', '1','1','5656.71', '1','1','5200.0', '1','1','456.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097855.0','1044456.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009592.0','1018889.0','3', '3','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097856.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008770.0','1018889.0','1', '1','1','152.18', '1','1','152.18', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097034.0','1044456.0','7', '5','3','3523.84', '4','1','2000.0', '3','2','1523.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009593.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097857.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009594.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097858.0','1044456.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008657.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096921.0','1044456.0','1', '1','1','6111.55', '1','1','5611.55', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008768.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097032.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009595.0','1018889.0','344', '317','191','349367.75', '262','85','216132.06', '218','134','133235.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097859.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009596.0','1018889.0','1', '1','1','772.0', '1','1','772.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097860.0','1044456.0','19', '19','16','55786.5', '19','13','40754.99', '16','13','15031.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009597.0','1018889.0','1', '1','1','522.06', '1','1','522.06', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097861.0','1044456.0','1', '1','1','3354.99', '1','1','2000.0', '1','1','1354.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009598.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097862.0','1044456.0','1', '1','1','3093.59', '1','1','2000.0', '1','1','1093.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009599.0','1018889.0','2', '2','1','679.04', '2','0','0.0', '1','1','679.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097863.0','1044456.0','1', '1','1','928.0', '1','1','928.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009600.0','1018889.0','5021', '4733','3145','8854652.83', '4561','2231','6626069.51', '3448','1792','2228583.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097864.0','1044456.0','1', '1','1','5105.06', '1','1','2684.0', '1','1','2421.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009601.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097865.0','1044456.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009602.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097866.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009603.0','1018889.0','1002', '858','194','303422.78', '775','148','256494.26', '474','58','46928.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097867.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009604.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097868.0','1044456.0','11', '10','5','7507.5', '9','4','5983.66', '10','2','1523.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009605.0','1018889.0','4', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097869.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009606.0','1018889.0','1', '1','1','1228.0', '1','1','1228.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097870.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009607.0','1018889.0','312', '288','106','223157.94', '271','89','189377.59', '153','36','33780.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097871.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009608.0','1018889.0','1', '1','1','10931.21', '1','1','830.0', '1','1','10101.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097872.0','1044456.0','251', '239','160','410816.42', '231','118','322917.65', '164','76','87898.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009609.0','1018889.0','1', '1','1','912.99', '1','1','744.15', '1','1','168.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097873.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009610.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097874.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009611.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097875.0','1044456.0','7', '6','2','3330.39', '5','1','3123.68', '5','1','206.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009612.0','1018889.0','1', '1','1','564.11', '1','0','0.0', '1','1','564.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097876.0','1044456.0','6657', '5969','2985','6052473.44', '5419','2120','4605053.18', '4022','1432','1447420.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009613.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097877.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009614.0','1018889.0','1', '1','1','2778.0', '1','1','2778.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097878.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009615.0','1018889.0','11031', '10385','6900','18551672.7', '9986','5126','14061236.92', '7307','3603','4490435.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097879.0','1044456.0','2', '2','2','8197.06', '2','2','7075.9', '2','1','1121.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009616.0','1018889.0','24', '22','11','20281.81', '19','8','17582.63', '15','4','2699.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097880.0','1044456.0','1', '1','1','2662.69', '1','1','2000.0', '1','1','662.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009617.0','1018889.0','7', '6','2','2050.0', '6','1','2000.0', '2','1','50.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097881.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009618.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097882.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009619.0','1018889.0','3', '3','1','2761.92', '2','1','2000.0', '3','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097883.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009620.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097884.0','1044456.0','2613', '2171','915','1605719.88', '1782','487','1096945.94', '1374','520','508773.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009621.0','1018889.0','721', '631','325','520983.72', '511','184','363910.06', '417','186','157073.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097885.0','1044456.0','31', '28','12','34066.04', '24','9','26883.65', '21','8','7182.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009622.0','1018889.0','1', '1','1','761.92', '0','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097886.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009623.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097887.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009624.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097888.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008719.0','1018889.0','25', '22','11','17809.6', '16','7','14000.0', '15','5','3809.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096983.0','1044456.0','402', '341','173','380655.38', '299','111','250073.34', '204','86','130582.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009625.0','1018889.0','7', '7','3','2492.47', '3','0','0.0', '4','3','2492.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097889.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009626.0','1018889.0','19', '12','1','761.92', '7','0','0.0', '11','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097890.0','1044456.0','6', '6','2','1200.72', '6','2','846.1', '3','1','354.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008680.0','1018889.0','1', '1','1','3218.0', '1','1','3218.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096944.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009627.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097891.0','1044456.0','53', '50','30','32965.9', '38','10','18076.0', '40','20','14889.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009628.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097892.0','1044456.0','2364', '1982','956','1272693.22', '1529','389','767406.59', '1333','641','505286.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009629.0','1018889.0','1664', '1401','492','766103.54', '1183','261','555932.88', '783','272','210170.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097893.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009630.0','1018889.0','101', '88','49','69020.79', '63','22','43610.46', '66','33','25410.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097894.0','1044456.0','25', '18','9','6522.45', '12','4','2688.07', '9','5','3834.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009631.0','1018889.0','2', '2','2','1523.84', '2','0','0.0', '2','2','1523.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097895.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009632.0','1018889.0','1', '1','1','8402.48', '1','1','7581.5', '1','1','820.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097896.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009633.0','1018889.0','4', '4','2','1730.55', '3','0','0.0', '4','2','1730.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097897.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009634.0','1018889.0','1', '1','1','1282.88', '1','1','1282.88', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097898.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009635.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097899.0','1044456.0','284', '255','146','216474.54', '222','85','144289.4', '186','89','72185.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009636.0','1018889.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097900.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009637.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097901.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009638.0','1018889.0','2', '2','1','18179.18', '2','1','8732.0', '2','1','9447.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097902.0','1044456.0','3', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009639.0','1018889.0','4', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097903.0','1044456.0','156', '139','91','162382.67', '110','49','96067.85', '92','55','66314.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009640.0','1018889.0','1', '1','1','15005.71', '1','1','2595.0', '1','1','12410.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097904.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009641.0','1018889.0','36', '33','20','39784.52', '27','15','31958.61', '24','10','7825.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097905.0','1044456.0','1', '1','1','968.63', '0','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009642.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097906.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009643.0','1018889.0','15', '10','5','9466.09', '9','5','9466.09', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097907.0','1044456.0','930', '786','384','591429.28', '641','205','368380.61', '498','231','223048.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009644.0','1018889.0','1', '1','1','4358.0', '1','1','4358.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097908.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009645.0','1018889.0','609', '461','164','265781.85', '358','92','190286.73', '278','82','75495.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097909.0','1044456.0','18', '15','6','7418.41', '14','5','6656.49', '10','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008794.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097058.0','1044456.0','599', '511','278','444218.42', '403','123','240760.21', '360','190','203458.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009646.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097910.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009647.0','1018889.0','1', '1','1','904.0', '1','1','697.29', '1','1','206.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097911.0','1044456.0','49', '42','20','33559.82', '37','16','25140.4', '23','9','8419.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009648.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097912.0','1044456.0','2', '2','1','761.92', '2','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009649.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097913.0','1044456.0','1', '1','1','4173.8', '1','1','2000.0', '1','1','2173.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009650.0','1018889.0','689', '614','353','590469.03', '544','178','384681.38', '420','231','205787.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097914.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009651.0','1018889.0','140', '134','105','459043.43', '130','79','334138.67', '99','63','124904.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097915.0','1044456.0','4', '2','1','3354.16', '2','1','3038.0', '1','1','316.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009652.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097916.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008559.0','1018889.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096823.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009653.0','1018889.0','1', '1','1','19543.15', '1','1','16346.0', '1','1','3197.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097917.0','1044456.0','1', '1','1','842.0', '1','1','842.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009654.0','1018889.0','19', '14','3','4500.79', '11','3','4294.08', '7','1','206.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097918.0','1044456.0','68', '65','41','54767.68', '47','16','27271.2', '52','31','27496.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009655.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097919.0','1044456.0','30', '26','10','28715.95', '24','7','25441.0', '16','4','3274.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009656.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097920.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009657.0','1018889.0','2627', '2098','721','1359284.43', '1753','470','1051022.11', '1166','320','308262.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097921.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009658.0','1018889.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097922.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008461.0','1018889.0','97', '90','52','100244.43', '80','32','75722.01', '65','32','24522.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096725.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009659.0','1018889.0','55', '46','24','28522.11', '33','6','13980.71', '40','19','14541.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097923.0','1044456.0','1', '1','1','1698.91', '1','1','1698.91', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008875.0','1018889.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097139.0','1044456.0','17', '16','7','7084.96', '10','4','4799.2', '9','3','2285.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009660.0','1018889.0','399', '306','96','214305.57', '259','75','185614.11', '166','30','28691.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097924.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009661.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097925.0','1044456.0','6', '5','2','1523.84', '5','0','0.0', '3','2','1523.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009662.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097926.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009663.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097927.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009664.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097928.0','1044456.0','219', '205','122','350330.11', '197','84','263047.13', '144','65','87282.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009665.0','1018889.0','4', '4','1','2000.0', '4','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097929.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009666.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097930.0','1044456.0','137', '106','59','164092.04', '99','47','136214.07', '66','23','27877.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009667.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097931.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009668.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097932.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009669.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097933.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009670.0','1018889.0','105', '95','46','85668.31', '88','25','56509.57', '53','31','29158.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097934.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009671.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097935.0','1044456.0','3', '2','2','973.31', '1','1','211.39', '2','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009672.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097936.0','1044456.0','3', '3','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009673.0','1018889.0','12', '8','4','8372.08', '7','4','8372.08', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097937.0','1044456.0','1', '1','1','603.5', '1','1','603.5', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009674.0','1018889.0','1', '1','1','2072.6', '1','1','2072.6', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097938.0','1044456.0','3', '3','1','5200.0', '3','1','5200.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009675.0','1018889.0','16', '16','5','13248.23', '14','3','11458.11', '12','2','1790.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097939.0','1044456.0','134', '127','53','83949.07', '109','33','61801.91', '81','25','22147.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009676.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097940.0','1044456.0','144', '136','92','192369.9', '115','60','153181.35', '103','52','39188.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009677.0','1018889.0','619', '509','267','601585.46', '475','217','496354.48', '252','91','105230.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097941.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009678.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097942.0','1044456.0','68', '55','26','37278.09', '47','9','19068.88', '34','22','18209.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009679.0','1018889.0','1', '1','1','5308.83', '1','1','5102.12', '1','1','206.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097943.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009680.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097944.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009681.0','1018889.0','2', '2','1','968.63', '2','0','0.0', '2','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097945.0','1044456.0','97', '89','48','93784.24', '81','23','62857.17', '62','38','30927.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009682.0','1018889.0','227', '218','130','395845.78', '207','89','276799.29', '155','74','119046.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097946.0','1044456.0','1', '1','1','1570.63', '1','1','1570.63', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009683.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097947.0','1044456.0','25', '22','9','15456.69', '21','9','15456.69', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009684.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097948.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009685.0','1018889.0','16', '15','6','14557.26', '15','4','12116.52', '9','3','2440.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097949.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009686.0','1018889.0','13', '11','7','19653.45', '10','4','11751.14', '9','5','7902.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097950.0','1044456.0','205', '188','126','252364.56', '148','73','191223.5', '140','81','61141.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008631.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096895.0','1044456.0','3', '3','3','4475.62', '3','2','2964.29', '2','2','1511.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009687.0','1018889.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097951.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009688.0','1018889.0','22', '20','9','13209.61', '17','5','9056.3', '14','5','4153.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097952.0','1044456.0','1', '1','1','4215.67', '1','1','1845.0', '1','1','2370.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009689.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097953.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009690.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097954.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009691.0','1018889.0','1', '1','1','1764.78', '1','0','0.0', '1','1','1764.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097955.0','1044456.0','402', '351','95','149859.09', '325','80','134873.53', '165','19','14985.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009692.0','1018889.0','78', '70','40','126385.95', '57','32','104864.95', '48','15','21521.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097956.0','1044456.0','1', '1','1','535.79', '1','0','0.0', '1','1','535.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009693.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097957.0','1044456.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009694.0','1018889.0','58', '49','13','35264.94', '44','10','30479.73', '24','6','4785.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097958.0','1044456.0','3823', '3178','1306','2369251.92', '2731','928','1901022.65', '1920','483','468229.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009695.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097959.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008815.0','1018889.0','548', '511','173','260507.58', '482','115','204355.88', '311','73','56151.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097079.0','1044456.0','11', '10','5','7832.48', '9','3','4556.65', '6','2','3275.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009696.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097960.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009697.0','1018889.0','83', '75','43','86189.91', '65','25','60577.16', '48','26','25612.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097961.0','1044456.0','19', '18','7','14387.16', '17','4','7394.86', '12','4','6992.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009698.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097962.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009699.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097963.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008569.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096833.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009700.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097964.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009701.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097965.0','1044456.0','1', '1','1','7205.28', '1','1','2205.28', '1','1','5000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009702.0','1018889.0','4', '3','1','10449.34', '3','1','2988.0', '3','1','7461.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097966.0','1044456.0','9', '9','6','22737.52', '8','4','18086.28', '8','4','4651.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009703.0','1018889.0','183', '167','88','161621.66', '141','55','101018.43', '113','56','60603.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097967.0','1044456.0','33', '31','22','54587.73', '29','17','47269.73', '21','10','7318.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009704.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097968.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009705.0','1018889.0','1687', '1573','823','1503466.29', '1464','468','1071827.34', '1037','504','431638.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097969.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009706.0','1018889.0','2148', '2055','1331','4873961.46', '1986','995','3583526.99', '1407','733','1290434.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097970.0','1044456.0','1', '1','1','143.16', '1','1','143.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009707.0','1018889.0','1243', '1106','308','490000.5', '1000','213','405942.26', '616','106','84058.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097971.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008844.0','1018889.0','142', '117','79','218194.77', '114','73','205925.56', '68','19','12269.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097108.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009708.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097972.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009709.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097973.0','1044456.0','238', '220','103','242450.32', '203','77','196426.45', '125','43','46023.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009710.0','1018889.0','479', '445','243','555332.69', '414','185','443039.92', '267','98','112292.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097974.0','1044456.0','21', '17','5','7853.22', '15','3','5522.83', '11','3','2330.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009711.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097975.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009712.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097976.0','1044456.0','1', '1','1','968.63', '1','0','0.0', '1','1','968.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009713.0','1018889.0','37', '34','21','42931.84', '33','14','31378.26', '24','11','11553.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097977.0','1044456.0','37', '35','21','23899.4', '31','7','14257.6', '26','14','9641.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009714.0','1018889.0','654', '623','395','1331984.6', '605','284','985892.67', '406','212','346091.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097978.0','1044456.0','61', '57','35','55689.59', '49','28','43260.51', '45','17','12429.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009715.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097979.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009716.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097980.0','1044456.0','1280', '1149','565','919758.43', '967','308','630085.09', '746','344','289673.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009717.0','1018889.0','2', '2','1','761.92', '2','0','0.0', '2','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097981.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008813.0','1018889.0','151', '137','51','121232.65', '126','37','78693.52', '68','21','42539.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097077.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009718.0','1018889.0','751', '667','339','838434.05', '595','228','641075.07', '401','167','197358.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097982.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009719.0','1018889.0','1707', '1448','652','1210021.21', '1284','490','994578.46', '846','227','215442.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097983.0','1044456.0','583', '548','323','715999.5', '502','228','555168.1', '351','156','160831.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009720.0','1018889.0','2', '2','1','2275.18', '2','1','2275.18', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097984.0','1044456.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009721.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097985.0','1044456.0','11', '10','1','761.92', '9','0','0.0', '6','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009722.0','1018889.0','1', '1','1','3560.75', '1','1','2000.0', '1','1','1560.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097986.0','1044456.0','1', '1','1','2824.0', '1','1','2824.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009723.0','1018889.0','1', '1','1','744.0', '1','1','744.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097987.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009724.0','1018889.0','2415', '2137','1086','2196755.36', '1838','642','1556143.86', '1483','620','640611.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097988.0','1044456.0','2', '2','1','761.92', '2','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009725.0','1018889.0','80', '71','37','60701.79', '64','16','38107.53', '56','27','22594.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097989.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009726.0','1018889.0','1', '1','1','2206.71', '1','1','2000.0', '1','1','206.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097990.0','1044456.0','5', '5','4','5460.55', '5','3','5050.77', '3','1','409.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008522.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096786.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009727.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097991.0','1044456.0','2463', '2212','1112','2018321.96', '1921','653','1473740.74', '1477','602','544581.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009728.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097992.0','1044456.0','114', '97','67','102297.75', '68','23','50806.33', '78','51','51491.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009729.0','1018889.0','22', '17','9','20155.01', '14','5','17874.37', '11','4','2280.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097993.0','1044456.0','1', '1','1','2824.0', '1','1','2824.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009730.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097994.0','1044456.0','2', '2','2','19174.3', '2','2','6828.0', '2','1','12346.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009731.0','1018889.0','3470', '3276','1933','6218300.22', '3183','1402','4395039.31', '2229','1102','1823260.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097995.0','1044456.0','1', '1','1','748.99', '1','0','0.0', '1','1','748.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009732.0','1018889.0','1', '1','1','5200.0', '1','1','5200.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097996.0','1044456.0','188', '174','110','199994.0', '162','73','147725.21', '122','59','52268.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009733.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097997.0','1044456.0','18', '17','2','6908.99', '15','1','5582.96', '8','2','1326.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009734.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097998.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009735.0','1018889.0','184', '156','99','218052.35', '140','74','184454.87', '96','42','33597.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097999.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009736.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098000.0','1044456.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009737.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098001.0','1044456.0','99', '86','52','68735.64', '74','34','51641.68', '62','23','17093.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008743.0','1018889.0','15', '14','7','13334.95', '14','4','8455.0', '12','5','4879.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097007.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009738.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098002.0','1044456.0','1', '1','1','761.92', '1','0','0.0', '1','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009739.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098003.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009740.0','1018889.0','1', '1','1','4193.0', '1','1','4193.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098004.0','1044456.0','815', '739','370','502985.65', '618','125','289708.22', '533','284','213277.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009741.0','1018889.0','1', '1','1','1012.53', '0','0','0.0', '1','1','1012.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098005.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009742.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098006.0','1044456.0','1', '1','1','2206.71', '1','1','2000.0', '1','1','206.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009743.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098007.0','1044456.0','8', '6','0','0.0', '5','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008712.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096976.0','1044456.0','4706', '4338','2244','4968312.62', '3982','1484','3765957.75', '2804','1182','1202354.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008633.0','1018889.0','1', '1','1','1416.87', '1','1','1416.87', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096897.0','1044456.0','6', '6','2','1523.84', '5','0','0.0', '5','2','1523.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009744.0','1018889.0','1', '1','1','15420.53', '1','1','4060.0', '1','1','11360.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098008.0','1044456.0','1', '1','1','3527.09', '1','1','3527.09', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009745.0','1018889.0','1', '1','1','300.0', '1','0','0.0', '1','1','300.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098009.0','1044456.0','55', '50','32','93592.4', '40','18','67717.26', '42','24','25875.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009746.0','1018889.0','1', '1','1','17331.69', '1','1','3282.0', '1','1','14049.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098010.0','1044456.0','1', '1','1','2171.35', '1','0','0.0', '1','1','2171.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009747.0','1018889.0','4989', '4731','2966','8552512.5', '4523','2143','6317663.06', '3397','1709','2234849.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098011.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009748.0','1018889.0','1200', '1109','593','1215292.46', '1025','475','978922.05', '738','225','236370.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098012.0','1044456.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009749.0','1018889.0','150', '139','63','97823.65', '133','53','88760.85', '83','14','9062.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098013.0','1044456.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009750.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098014.0','1044456.0','195', '178','105','344894.29', '168','89','278409.36', '115','45','66484.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009751.0','1018889.0','1', '1','1','3004.15', '1','1','3004.15', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098015.0','1044456.0','1296', '1143','949','8301153.15', '1117','878','4174998.01', '841','572','4126155.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009752.0','1018889.0','407', '385','203','236381.99', '308','74','128438.62', '281','138','107943.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098016.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009753.0','1018889.0','183', '176','67','168328.39', '172','67','154536.24', '121','10','13792.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098017.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009754.0','1018889.0','243', '227','95','176480.45', '215','80','163323.77', '148','24','13156.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098018.0','1044456.0','43', '34','22','65652.84', '32','22','54374.31', '26','4','11278.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008570.0','1018889.0','140', '134','61','52557.66', '131','45','37347.54', '93','33','15210.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096834.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009755.0','1018889.0','804', '743','408','991714.39', '677','263','688719.86', '502','238','302994.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098019.0','1044456.0','941', '895','571','1285325.84', '831','386','989395.38', '666','311','295930.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009756.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098020.0','1044456.0','1', '1','1','1012.53', '1','0','0.0', '1','1','1012.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009757.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098021.0','1044456.0','396', '367','162','257279.41', '342','125','208519.36', '187','54','48760.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009758.0','1018889.0','639', '593','290','612134.34', '526','180','441329.61', '407','150','170804.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098022.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009759.0','1018889.0','4', '3','2','3012.53', '2','1','2000.0', '2','1','1012.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098023.0','1044456.0','18', '17','9','23149.78', '14','2','15634.66', '11','8','7515.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009760.0','1018889.0','3', '3','1','2000.0', '3','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098024.0','1044456.0','1', '1','1','6664.0', '1','1','6664.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009761.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098025.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009762.0','1018889.0','892', '832','392','908370.05', '785','330','800113.99', '544','113','108256.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098026.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009763.0','1018889.0','4', '4','2','4673.21', '4','2','4673.21', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098027.0','1044456.0','1', '1','1','5483.87', '1','1','5483.87', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009764.0','1018889.0','1', '1','1','1674.16', '1','1','1674.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098028.0','1044456.0','1', '1','1','2616.31', '1','1','2616.31', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009765.0','1018889.0','1', '1','1','2369.74', '1','1','2369.74', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098029.0','1044456.0','1', '1','1','1255.33', '1','1','1255.33', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009766.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098030.0','1044456.0','1', '1','1','9600.47', '1','1','6967.94', '1','1','2632.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009767.0','1018889.0','1', '1','1','3437.35', '1','1','2000.0', '1','1','1437.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098031.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009768.0','1018889.0','1', '1','1','3573.81', '1','1','3416.08', '1','1','157.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098032.0','1044456.0','4', '3','2','2605.2', '3','1','2000.0', '3','1','605.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009769.0','1018889.0','1', '1','1','2796.45', '1','1','2000.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098033.0','1044456.0','2737', '2532','1232','1843660.39', '2158','493','1093739.8', '1741','873','749920.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008764.0','1018889.0','1', '1','1','2290.06', '1','1','2290.06', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097028.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009770.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098034.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009771.0','1018889.0','82', '78','32','55188.75', '76','29','50890.59', '43','7','4298.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098035.0','1044456.0','16', '16','10','20827.34', '11','2','14239.66', '13','9','6587.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009772.0','1018889.0','2', '2','1','796.45', '1','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098036.0','1044456.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009773.0','1018889.0','154', '144','36','49763.16', '133','29','44102.14', '57','8','5661.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098037.0','1044456.0','106', '100','50','132324.05', '94','47','124878.13', '69','7','7445.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009774.0','1018889.0','1', '1','1','635.36', '1','1','635.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098038.0','1044456.0','694', '592','230','442647.96', '548','186','368122.78', '348','73','74525.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009775.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098039.0','1044456.0','2', '2','1','1448.35', '2','1','1448.35', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009776.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098040.0','1044456.0','1', '1','1','2266.92', '1','1','2266.92', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009777.0','1018889.0','2548', '2404','1290','2612506.87', '2253','713','1850485.81', '1646','812','762021.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098041.0','1044456.0','516', '467','172','373628.8', '454','163','355194.68', '274','24','18434.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009778.0','1018889.0','9654', '9106','5160','16381830.79', '8652','4062','11324798.57', '6380','2495','5057032.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098042.0','1044456.0','142', '140','69','128177.55', '137','57','99980.16', '76','20','28197.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009779.0','1018889.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098043.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009780.0','1018889.0','1', '1','1','3762.92', '1','1','3762.92', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098044.0','1044456.0','1', '1','1','4660.44', '1','1','4660.44', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009781.0','1018889.0','5261', '4920','2655','5616440.51', '4524','1598','4084477.92', '3360','1525','1531962.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098045.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009782.0','1018889.0','1', '1','1','216.08', '1','0','0.0', '1','1','216.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098046.0','1044456.0','4297', '3971','1984','3884970.76', '3700','1290','2844350.6', '2755','1098','1040620.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009783.0','1018889.0','55', '54','20','38081.03', '53','16','31225.33', '34','10','6855.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098047.0','1044456.0','4', '3','1','150.0', '3','0','0.0', '3','1','150.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009784.0','1018889.0','1', '1','1','3222.09', '1','1','3222.09', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098048.0','1044456.0','1', '1','1','2592.97', '1','1','2000.0', '1','1','592.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009785.0','1018889.0','22', '18','7','8556.88', '17','5','6963.98', '9','2','1592.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098049.0','1044456.0','14', '13','9','18044.49', '13','8','17248.04', '8','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009786.0','1018889.0','1', '1','1','2732.01', '1','1','2732.01', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098050.0','1044456.0','76', '67','23','24738.69', '58','17','20917.36', '31','6','3821.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009787.0','1018889.0','300', '284','194','553918.59', '262','163','454824.19', '185','65','99094.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098051.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009788.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098052.0','1044456.0','23', '21','6','7889.48', '20','6','7889.48', '12','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009789.0','1018889.0','18', '18','12','12454.28', '17','10','10258.05', '12','4','2196.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098053.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009790.0','1018889.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098054.0','1044456.0','1', '1','1','796.45', '1','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009791.0','1018889.0','3612', '3422','2094','4906102.81', '3261','1289','3699443.73', '2401','1265','1206659.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098055.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009792.0','1018889.0','1', '1','1','796.45', '1','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098056.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009793.0','1018889.0','120', '108','42','79502.98', '99','33','70277.0', '72','17','9225.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098057.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009794.0','1018889.0','3', '3','1','2000.0', '2','1','2000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098058.0','1044456.0','2419', '2234','1257','2155638.57', '1908','546','1259711.57', '1602','919','895927.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009795.0','1018889.0','1', '1','1','3991.06', '1','1','3402.0', '1','1','589.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098059.0','1044456.0','21', '21','9','17333.87', '21','9','17183.87', '15','1','150.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009796.0','1018889.0','9', '9','6','14763.82', '6','3','5682.26', '8','5','9081.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098060.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009797.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098061.0','1044456.0','6', '6','4','4659.88', '6','4','4659.88', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009798.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098062.0','1044456.0','1', '1','1','3122.0', '1','1','3122.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009799.0','1018889.0','20', '19','9','13780.07', '17','6','11390.72', '10','3','2389.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098063.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009800.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098064.0','1044456.0','2', '2','2','3272.43', '2','1','2529.46', '1','1','742.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009801.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098065.0','1044456.0','3380', '3230','1607','3777870.22', '3128','1368','3183123.31', '2366','543','594746.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009802.0','1018889.0','4', '4','2','4104.76', '4','2','2976.0', '4','1','1128.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098066.0','1044456.0','1', '1','1','2487.44', '1','1','2487.44', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009803.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098067.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009804.0','1018889.0','1', '1','1','2044.71', '1','1','1248.26', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098068.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009805.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098069.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009806.0','1018889.0','43', '35','11','17649.54', '30','10','16853.09', '20','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098070.0','1044456.0','95', '84','19','42811.66', '76','16','35025.94', '49','5','7785.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009807.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098071.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009808.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098072.0','1044456.0','503', '444','273','748262.44', '381','166','492094.89', '300','165','256167.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009809.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098073.0','1044456.0','1', '1','1','377.81', '1','1','377.81', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009810.0','1018889.0','2', '2','2','869.25', '2','0','0.0', '2','2','869.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098074.0','1044456.0','1', '1','1','2563.24', '1','1','2563.24', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009811.0','1018889.0','5', '5','5','13631.62', '5','5','13631.62', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098075.0','1044456.0','22', '21','9','8060.69', '21','7','6949.84', '17','2','1110.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009812.0','1018889.0','1221', '1117','871','6062606.84', '1079','783','3551258.42', '761','456','2511348.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098076.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009813.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098077.0','1044456.0','2817', '2648','1536','3907880.11', '2384','792','2622820.78', '1889','1053','1285059.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009814.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098078.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009815.0','1018889.0','2962', '2801','1581','2252272.01', '2481','587','1322904.32', '1967','1194','929367.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098079.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009816.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098080.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008658.0','1018889.0','171', '160','135','452492.38', '155','133','418283.1', '108','31','34209.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096922.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009817.0','1018889.0','72', '66','41','85662.18', '66','40','76823.96', '35','7','8838.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098081.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009818.0','1018889.0','1', '1','1','12157.02', '1','1','9408.0', '1','1','2749.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098082.0','1044456.0','119', '111','42','75385.84', '108','37','66130.33', '51','8','9255.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009819.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098083.0','1044456.0','1', '1','1','796.45', '1','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009820.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098084.0','1044456.0','2', '2','2','1200.33', '1','1','187.8', '2','2','1012.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009821.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098085.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009822.0','1018889.0','6', '4','3','16940.54', '4','3','12883.0', '1','1','4057.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098086.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009823.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098087.0','1044456.0','1', '1','1','796.45', '1','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009824.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098088.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009825.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098089.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009826.0','1018889.0','55', '53','32','56961.91', '51','26','48996.85', '33','10','7965.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098090.0','1044456.0','1', '1','1','1342.06', '1','1','1125.98', '1','1','216.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009827.0','1018889.0','3', '3','2','4036.69', '2','1','2000.0', '3','2','2036.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098091.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009828.0','1018889.0','3978', '3576','1596','2495483.06', '3165','891','1772913.85', '2427','922','722569.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098092.0','1044456.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009829.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098093.0','1044456.0','392', '349','241','336861.55', '265','111','205077.7', '266','166','131783.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009830.0','1018889.0','1', '1','1','1076.88', '1','1','1076.88', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098094.0','1044456.0','331', '299','127','269720.61', '268','87','199493.43', '163','56','70227.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009831.0','1018889.0','8', '7','5','10413.06', '7','4','10098.0', '3','2','315.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098095.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009832.0','1018889.0','11', '9','4','2833.05', '7','1','293.7', '4','3','2539.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098096.0','1044456.0','1', '1','1','146.9', '1','1','146.9', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009833.0','1018889.0','274', '257','162','238342.7', '219','65','139690.48', '184','117','98652.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098097.0','1044456.0','4', '4','4','18991.42', '4','4','8862.75', '3','1','10128.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009834.0','1018889.0','2', '2','1','387.78', '2','1','387.78', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098098.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009835.0','1018889.0','3', '3','2','1505.31', '3','0','0.0', '3','2','1505.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098099.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009836.0','1018889.0','74', '68','34','62111.44', '64','21','45714.9', '42','22','16396.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098100.0','1044456.0','5', '5','5','4287.17', '5','5','4287.17', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009837.0','1018889.0','6', '4','3','3435.96', '4','2','3285.99', '3','1','149.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098101.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009838.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098102.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009839.0','1018889.0','253', '234','99','177201.53', '222','76','130429.0', '133','39','46772.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098103.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008797.0','1018889.0','1347', '1157','603','1284571.63', '1009','379','1006518.01', '735','298','278053.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097061.0','1044456.0','6', '5','1','2000.0', '5','1','2000.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009840.0','1018889.0','5', '5','1','2000.0', '5','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098104.0','1044456.0','2297', '2193','1389','2947755.63', '2004','784','2029784.49', '1545','914','917971.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009841.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098105.0','1044456.0','359', '342','168','273781.58', '324','143','239802.46', '213','42','33979.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009842.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098106.0','1044456.0','1', '1','1','796.45', '1','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009843.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098107.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009844.0','1018889.0','2', '2','2','2712.99', '1','1','1400.91', '2','2','1312.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098108.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009845.0','1018889.0','1491', '1253','540','1164070.97', '1088','418','965010.88', '757','178','199060.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098109.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009846.0','1018889.0','330', '286','117','229411.05', '256','91','189225.56', '174','31','40185.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098110.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009847.0','1018889.0','1074', '990','538','1052687.84', '884','388','856820.21', '648','228','195867.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098111.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009848.0','1018889.0','1', '1','1','411.68', '1','1','411.68', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098112.0','1044456.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009849.0','1018889.0','1', '1','1','796.45', '0','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098113.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009850.0','1018889.0','12', '12','5','4896.12', '11','3','3303.22', '7','2','1592.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098114.0','1044456.0','1', '1','1','980.36', '1','0','0.0', '1','1','980.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009851.0','1018889.0','636', '594','236','383945.07', '568','204','342309.85', '337','46','41635.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098115.0','1044456.0','53', '48','25','72142.88', '43','17','54092.91', '29','13','18049.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009852.0','1018889.0','112', '107','43','80347.03', '105','35','73681.66', '76','14','6665.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098116.0','1044456.0','186', '181','107','263424.2', '172','81','210048.27', '111','57','53375.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009853.0','1018889.0','1', '1','1','216.08', '1','0','0.0', '1','1','216.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098117.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009854.0','1018889.0','1', '1','1','12500.0', '1','1','12500.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098118.0','1044456.0','3', '2','1','710.46', '2','1','710.46', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009855.0','1018889.0','460', '429','257','711527.19', '409','169','542794.05', '318','153','168733.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098119.0','1044456.0','3', '3','2','34112.2', '3','2','12023.0', '3','2','22089.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009856.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098120.0','1044456.0','3002', '2827','1486','2725217.75', '2654','923','2021747.02', '1896','798','703470.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009857.0','1018889.0','681', '630','337','694545.55', '576','248','547261.03', '421','151','147284.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098121.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009858.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098122.0','1044456.0','2417', '2270','1128','2137190.94', '2150','811','1675911.32', '1550','507','461279.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009859.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098123.0','1044456.0','3', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009860.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098124.0','1044456.0','1', '1','1','161.21', '1','0','0.0', '1','1','161.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009861.0','1018889.0','118', '109','46','65843.79', '95','34','53152.41', '54','18','12691.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098125.0','1044456.0','516', '483','235','484855.08', '456','191','395831.32', '294','74','89023.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009862.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098126.0','1044456.0','42', '38','22','22668.96', '28','6','8690.43', '22','18','13978.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009863.0','1018889.0','2', '2','1','5119.92', '2','1','4358.0', '2','1','761.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098127.0','1044456.0','130', '124','90','191553.22', '117','57','139289.24', '94','58','52263.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009864.0','1018889.0','65', '57','23','54613.96', '52','19','47267.59', '38','5','7346.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098128.0','1044456.0','7', '6','3','6000.0', '6','3','6000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009865.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098129.0','1044456.0','2', '2','1','2310.63', '2','1','1710.0', '1','1','600.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009866.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098130.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008823.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097087.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009867.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098131.0','1044456.0','2', '2','1','2708.76', '2','1','2708.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009868.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098132.0','1044456.0','335', '306','151','357337.61', '286','127','273493.18', '163','42','83844.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009869.0','1018889.0','1', '1','1','5295.05', '1','1','5295.05', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098133.0','1044456.0','1', '1','1','1975.78', '1','1','1975.78', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009870.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098134.0','1044456.0','1', '1','1','3464.0', '1','1','3464.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009871.0','1018889.0','15', '14','13','34154.2', '14','12','30647.64', '11','2','3506.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098135.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009872.0','1018889.0','5', '5','2','2592.98', '5','2','2592.98', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098136.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009873.0','1018889.0','55', '55','25','23310.73', '53','17','17864.52', '38','10','5446.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098137.0','1044456.0','2941', '2771','1614','5054514.26', '2666','1274','3234168.69', '2041','849','1820345.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008857.0','1018889.0','1528', '1439','810','1496627.9', '1306','468','1081648.57', '1055','489','414979.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097121.0','1044456.0','4', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009874.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098138.0','1044456.0','1', '1','1','3840.29', '1','1','3840.29', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009875.0','1018889.0','3363', '3150','1514','2472159.88', '2854','795','1618638.53', '2111','959','853521.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098139.0','1044456.0','1', '1','1','2640.08', '1','1','2640.08', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009876.0','1018889.0','1', '1','1','1552.0', '1','1','1552.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098140.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009877.0','1018889.0','40', '28','13','23472.97', '26','13','23472.97', '14','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098141.0','1044456.0','1', '1','1','976.0', '1','1','976.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009878.0','1018889.0','4', '3','1','216.08', '3','0','0.0', '2','1','216.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098142.0','1044456.0','12', '12','4','9160.33', '11','4','9160.33', '10','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009879.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098143.0','1044456.0','13', '11','2','4000.0', '11','2','4000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009880.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098144.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009881.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098145.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009882.0','1018889.0','56', '49','29','66398.81', '49','26','60921.74', '35','6','5477.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098146.0','1044456.0','34', '26','9','54085.01', '23','9','43620.99', '12','3','10464.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009883.0','1018889.0','3', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098147.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009884.0','1018889.0','203', '191','108','286428.04', '188','83','244394.27', '134','49','42033.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098148.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009885.0','1018889.0','1', '1','1','796.45', '1','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098149.0','1044456.0','2', '2','2','7285.55', '2','2','6758.49', '2','1','527.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009886.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098150.0','1044456.0','7', '7','4','11362.7', '6','4','10753.99', '6','1','608.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009887.0','1018889.0','17', '17','6','10119.15', '13','2','5590.18', '12','6','4528.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098151.0','1044456.0','56', '55','16','20677.61', '53','14','18150.73', '35','4','2526.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009888.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098152.0','1044456.0','2', '2','1','2120.67', '2','1','2120.67', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009889.0','1018889.0','2445', '2217','814','1682217.96', '2077','746','1500311.11', '1317','130','181906.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098153.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009890.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098154.0','1044456.0','1', '1','1','976.0', '1','1','976.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008524.0','1018889.0','55', '51','24','42605.13', '43','17','35258.66', '36','11','7346.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096788.0','1044456.0','1144', '1081','584','1235559.86', '1023','491','1074570.75', '788','222','160989.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009891.0','1018889.0','26', '18','6','13346.45', '15','5','10000.0', '16','3','3346.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098155.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009892.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098156.0','1044456.0','52', '51','34','102856.81', '50','33','97800.23', '37','5','5056.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009893.0','1018889.0','7', '6','3','6309.38', '6','3','6309.38', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098157.0','1044456.0','148', '142','53','124072.67', '136','46','109147.5', '95','16','14925.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009894.0','1018889.0','27', '25','16','30749.91', '22','9','21573.36', '20','12','9176.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098158.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009895.0','1018889.0','1', '1','1','796.45', '1','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098159.0','1044456.0','1568', '1437','724','1415745.47', '1358','532','1092805.72', '984','341','322939.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009896.0','1018889.0','1', '1','1','10910.22', '1','1','5027.0', '1','1','5883.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098160.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009897.0','1018889.0','552', '520','235','357628.92', '448','110','248301.51', '350','144','109327.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098161.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009898.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098162.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008562.0','1018889.0','1', '1','1','9278.06', '1','1','2000.0', '1','1','7278.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096826.0','1044456.0','4', '4','2','4886.44', '4','2','2931.29', '3','2','1955.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009899.0','1018889.0','59', '58','28','37324.53', '57','23','31963.46', '39','9','5361.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098163.0','1044456.0','12', '11','5','4198.33', '11','0','0.0', '8','5','4198.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009900.0','1018889.0','16', '16','8','12054.83', '12','3','6479.68', '11','7','5575.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098164.0','1044456.0','1', '1','1','983.32', '1','1','983.32', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009901.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098165.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009902.0','1018889.0','1', '1','1','796.45', '1','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098166.0','1044456.0','5358', '4836','2276','3955586.65', '4323','1259','2770426.02', '3316','1331','1185160.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008773.0','1018889.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097037.0','1044456.0','1885', '1792','906','2059985.13', '1755','787','1758494.15', '1286','314','301490.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009903.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098167.0','1044456.0','8', '8','5','10933.28', '8','5','10383.29', '6','1','549.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009904.0','1018889.0','557', '515','238','397783.63', '493','199','347573.41', '314','70','50210.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098168.0','1044456.0','197', '166','55','133818.28', '153','53','106285.0', '84','9','27533.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009905.0','1018889.0','107', '100','70','110518.52', '90','51','85383.84', '82','32','25134.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098169.0','1044456.0','1', '1','1','394.4', '1','1','394.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009906.0','1018889.0','1', '1','1','436.81', '1','1','436.81', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098170.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009907.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098171.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009908.0','1018889.0','214', '205','128','226482.03', '202','121','193331.27', '110','31','33150.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098172.0','1044456.0','1', '1','1','5715.72', '1','1','976.0', '1','1','4739.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009909.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098173.0','1044456.0','2', '2','2','4000.0', '2','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009910.0','1018889.0','215', '154','65','137106.22', '134','54','110345.87', '105','23','26760.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098174.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009911.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098175.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009912.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098176.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009913.0','1018889.0','533', '503','311','505313.93', '456','164','346003.11', '369','196','159310.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098177.0','1044456.0','44', '40','13','45585.93', '34','12','41394.86', '23','3','4191.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008634.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096898.0','1044456.0','38', '37','23','36252.03', '36','16','26811.17', '27','12','9440.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009914.0','1018889.0','48', '42','13','21328.79', '42','11','16531.83', '17','5','4796.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098178.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009915.0','1018889.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098179.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009916.0','1018889.0','658', '511','396','1363159.53', '466','301','953314.99', '354','213','409844.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098180.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009917.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098181.0','1044456.0','113', '105','46','83639.34', '93','33','70640.8', '63','16','12998.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009918.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098182.0','1044456.0','709', '661','382','976896.04', '626','344','842532.36', '442','110','134363.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009919.0','1018889.0','2', '2','2','1162.53', '2','0','0.0', '2','2','1162.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098183.0','1044456.0','365', '346','180','335077.0', '339','162','296449.91', '196','46','38627.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009920.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098184.0','1044456.0','2', '2','1','1730.55', '1','1','1203.49', '2','1','527.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009921.0','1018889.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098185.0','1044456.0','373', '347','199','298142.86', '299','97','195011.67', '244','132','103131.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009922.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098186.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009923.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098187.0','1044456.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009924.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098188.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009925.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098189.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009926.0','1018889.0','1', '1','1','796.45', '1','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098190.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009927.0','1018889.0','32', '28','16','45915.47', '25','12','38207.34', '19','7','7708.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098191.0','1044456.0','146', '141','63','144322.32', '138','55','130421.75', '89','17','13900.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009928.0','1018889.0','1', '1','1','2833.58', '1','1','2833.58', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098192.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009929.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098193.0','1044456.0','13', '13','9','16933.13', '11','4','5401.71', '9','6','11531.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009930.0','1018889.0','135', '127','72','130444.0', '115','46','96826.2', '91','40','33617.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098194.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009931.0','1018889.0','2', '2','2','3012.53', '2','1','2000.0', '1','1','1012.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098195.0','1044456.0','38', '35','18','21709.37', '35','16','19256.2', '13','4','2453.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009932.0','1018889.0','1', '1','1','2231.28', '1','1','2231.28', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098196.0','1044456.0','128', '122','46','51816.66', '111','21','26455.1', '85','30','25361.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009933.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098197.0','1044456.0','1060', '1000','640','1358801.38', '896','347','947387.63', '729','436','411413.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009934.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098198.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009935.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098199.0','1044456.0','5', '5','1','2000.0', '5','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009936.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098200.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009937.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098201.0','1044456.0','4627', '4417','2206','4991942.3', '4254','1753','3902150.09', '3045','976','1089792.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009938.0','1018889.0','159', '139','51','82361.32', '125','30','66210.92', '74','24','16150.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098202.0','1044456.0','5685', '5293','2486','3192103.06', '4650','878','1771334.44', '3504','1869','1420768.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009939.0','1018889.0','8', '7','2','3804.88', '6','2','3289.25', '4','1','515.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098203.0','1044456.0','928', '856','420','550704.26', '693','140','293756.58', '605','319','256947.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009940.0','1018889.0','21', '20','9','6981.49', '15','3','2567.08', '10','6','4414.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098204.0','1044456.0','376', '361','197','422127.17', '345','165','365867.46', '241','77','56259.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009941.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098205.0','1044456.0','35', '32','11','23518.0', '28','6','17708.47', '14','6','5809.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009942.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098206.0','1044456.0','2', '2','2','4314.86', '2','2','4314.86', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009943.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098207.0','1044456.0','1', '1','1','85.65', '1','1','85.65', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009944.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098208.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009945.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098209.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009946.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098210.0','1044456.0','1525', '1273','609','1094079.5', '1079','332','784724.41', '810','374','309355.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009947.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098211.0','1044456.0','133', '125','83','145295.42', '106','42','102038.1', '80','54','43257.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009948.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098212.0','1044456.0','109', '104','54','62425.49', '92','27','43081.59', '72','34','19343.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009949.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098213.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009950.0','1018889.0','24', '18','6','10293.69', '17','6','10074.8', '8','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098214.0','1044456.0','1059', '610','97','219061.56', '461','89','192358.13', '351','12','26703.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009951.0','1018889.0','4', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098215.0','1044456.0','10', '10','7','9939.89', '9','5','8337.48', '8','3','1602.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009952.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098216.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009953.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098217.0','1044456.0','1031', '861','323','504128.7', '704','163','356700.85', '530','184','147427.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009954.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098218.0','1044456.0','117', '112','64','120354.41', '87','38','93698.92', '81','32','26655.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009955.0','1018889.0','1', '1','1','2543.25', '1','1','2543.25', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098219.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009956.0','1018889.0','1297', '815','193','475994.83', '656','184','448279.44', '476','12','27715.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098220.0','1044456.0','125', '117','64','128993.76', '104','51','111410.27', '83','21','17583.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009957.0','1018889.0','2', '2','1','8315.55', '2','1','3828.0', '2','1','4487.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098221.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009958.0','1018889.0','1', '1','1','806.83', '0','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098222.0','1044456.0','11', '10','4','6806.83', '8','3','6000.0', '5','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009959.0','1018889.0','154', '141','101','186277.7', '121','53','139781.04', '83','55','46496.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098223.0','1044456.0','1', '1','1','796.45', '1','0','0.0', '1','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009960.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098224.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009961.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098225.0','1044456.0','2966', '2387','892','1455754.81', '1936','509','1074817.61', '1424','453','380937.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009962.0','1018889.0','3', '2','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098226.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009963.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098227.0','1044456.0','2649', '2155','900','1512382.55', '1780','515','1056772.63', '1347','494','455609.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009964.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098228.0','1044456.0','2', '2','1','323.38', '2','1','323.38', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009965.0','1018889.0','2', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098229.0','1044456.0','807', '783','501','1154176.25', '716','362','865899.75', '550','269','288276.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009966.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098230.0','1044456.0','1', '1','1','1725.75', '1','1','1725.75', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009967.0','1018889.0','171', '166','132','315680.8', '155','88','234439.49', '129','92','81241.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098231.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009968.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098232.0','1044456.0','1', '1','1','2208.96', '1','1','1889.41', '1','1','319.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008833.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097097.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009969.0','1018889.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098233.0','1044456.0','2', '2','2','3470.89', '2','1','2674.44', '2','1','796.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009970.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098234.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009971.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098235.0','1044456.0','1', '1','1','550.0', '0','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009972.0','1018889.0','682', '638','455','682315.81', '542','255','457052.72', '454','274','225263.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098236.0','1044456.0','66', '63','47','104114.24', '53','32','72481.89', '50','24','31632.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009973.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098237.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009974.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098238.0','1044456.0','881', '471','96','245787.38', '336','91','233947.8', '285','7','11839.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009975.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098239.0','1044456.0','894', '502','110','255891.83', '360','100','245260.64', '275','10','10631.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009976.0','1018889.0','203', '122','20','69036.12', '89','20','54510.6', '86','3','14525.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098240.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009977.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098241.0','1044456.0','1', '1','1','880.7', '1','1','880.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009978.0','1018889.0','1', '1','1','593.47', '1','1','593.47', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098242.0','1044456.0','1867', '1174','253','466900.47', '911','220','428051.57', '629','44','38848.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009979.0','1018889.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098243.0','1044456.0','7', '6','2','3716.12', '5','1','2000.0', '4','1','1716.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009980.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098244.0','1044456.0','18', '13','5','8873.04', '11','5','8873.04', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009981.0','1018889.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098245.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009982.0','1018889.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098246.0','1044456.0','1685', '1345','410','770316.08', '1125','323','674984.52', '719','117','95331.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009983.0','1018889.0','2273', '2049','1478','3325194.97', '1831','1146','2732464.84', '1321','632','592730.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098247.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009984.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098248.0','1044456.0','1', '1','1','3450.32', '1','1','2000.0', '1','1','1450.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008888.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097152.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009985.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098249.0','1044456.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009986.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098250.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009987.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098251.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009988.0','1018889.0','8', '7','5','7547.55', '7','5','7547.55', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098252.0','1044456.0','1', '1','1','657.0', '1','1','657.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009989.0','1018889.0','7', '6','3','8727.13', '4','2','4000.0', '5','2','4727.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098253.0','1044456.0','1', '1','1','5000.0', '0','0','0.0', '1','1','5000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009990.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098254.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009991.0','1018889.0','1', '1','1','2465.46', '1','1','2000.0', '1','1','465.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098255.0','1044456.0','4', '3','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009992.0','1018889.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098256.0','1044456.0','4', '4','1','7000.0', '3','1','2000.0', '4','1','5000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009993.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098257.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009994.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098258.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009995.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098259.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009996.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098260.0','1044456.0','875', '514','90','163913.97', '385','81','156471.55', '267','10','7442.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009997.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098261.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009998.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098262.0','1044456.0','57', '52','13','24525.01', '43','8','20859.91', '28','6','3665.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2009999.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098263.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010000.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098264.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010001.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098265.0','1044456.0','13', '12','8','18564.33', '11','5','14949.39', '9','4','3614.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010002.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098266.0','1044456.0','442', '301','63','135347.41', '263','60','127865.38', '131','4','7482.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010003.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098267.0','1044456.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010004.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098268.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010005.0','1018889.0','21', '11','2','9200.0', '10','2','9200.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098269.0','1044456.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010006.0','1018889.0','43', '38','20','48712.8', '35','19','44756.18', '26','7','3956.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098270.0','1044456.0','7', '6','2','2725.34', '6','1','2000.0', '1','1','725.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010007.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098271.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010008.0','1018889.0','983', '889','513','954128.49', '776','332','726451.95', '563','268','227676.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098272.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010009.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098273.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010010.0','1018889.0','231', '154','31','54176.54', '114','26','50205.15', '86','6','3971.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098274.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010011.0','1018889.0','497', '459','331','753258.45', '428','269','618246.98', '322','142','135011.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098275.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010012.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098276.0','1044456.0','5', '5','4','8000.0', '5','4','8000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010013.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098277.0','1044456.0','415', '332','161','221527.73', '258','85','153819.79', '204','87','67707.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010014.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098278.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010015.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098279.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010016.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098280.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010017.0','1018889.0','7', '2','1','2000.0', '1','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098281.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010018.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098282.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010019.0','1018889.0','1026', '617','127','307210.68', '494','114','255717.35', '305','17','51493.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098283.0','1044456.0','2', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010020.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098284.0','1044456.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010021.0','1018889.0','7', '5','2','4000.0', '4','2','4000.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098285.0','1044456.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010022.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098286.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010023.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098287.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010024.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098288.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010025.0','1018889.0','3', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098289.0','1044456.0','24', '13','1','2000.0', '9','1','2000.0', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010026.0','1018889.0','9', '4','1','2000.0', '4','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098290.0','1044456.0','1', '1','1','13301.0', '1','1','13301.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010027.0','1018889.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098291.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010028.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098292.0','1044456.0','4', '4','2','4101.44', '3','2','4101.44', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010029.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098293.0','1044456.0','198', '116','13','24550.0', '70','12','24000.0', '84','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010030.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098294.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010031.0','1018889.0','9', '5','0','0.0', '4','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098295.0','1044456.0','1', '1','1','847.43', '1','0','0.0', '1','1','847.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010032.0','1018889.0','9', '7','1','3341.8', '3','1','3341.8', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098296.0','1044456.0','4', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010033.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098297.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010034.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098298.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010035.0','1018889.0','345', '270','65','110347.34', '218','51','98821.56', '142','16','11525.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098299.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010036.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098300.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010037.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098301.0','1044456.0','102', '62','17','32218.89', '42','16','32000.0', '37','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010038.0','1018889.0','4', '4','4','9912.75', '4','3','9105.92', '2','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098302.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010039.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098303.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010040.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098304.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010041.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098305.0','1044456.0','14', '9','0','0.0', '6','0','0.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010042.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098306.0','1044456.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010043.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098307.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010044.0','1018889.0','2', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098308.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010045.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098309.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010046.0','1018889.0','1', '1','1','3481.55', '1','1','2801.0', '1','1','680.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098310.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010047.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098311.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010048.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098312.0','1044456.0','5', '4','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010049.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098313.0','1044456.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008711.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096975.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010050.0','1018889.0','1', '1','1','173.67', '0','0','0.0', '1','1','173.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098314.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010051.0','1018889.0','1', '1','1','806.83', '0','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098315.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010052.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098316.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010053.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098317.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010054.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098318.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010055.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098319.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010056.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098320.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010057.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098321.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008542.0','1018889.0','1', '1','1','918.2', '1','1','918.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096806.0','1044456.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010058.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098322.0','1044456.0','57', '38','12','20406.81', '29','10','19087.92', '22','3','1318.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010059.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098323.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010060.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098324.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010061.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098325.0','1044456.0','222', '186','69','105790.58', '162','47','91899.58', '108','24','13891.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010062.0','1018889.0','569', '297','79','153939.41', '240','73','138845.61', '161','9','15093.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098326.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010063.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098327.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010064.0','1018889.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098328.0','1044456.0','4', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010065.0','1018889.0','5', '4','3','6933.0', '4','3','6933.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098329.0','1044456.0','2', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010066.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098330.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010067.0','1018889.0','4', '4','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098331.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010068.0','1018889.0','2', '2','1','2806.83', '1','1','2000.0', '2','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098332.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010069.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098333.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010070.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098334.0','1044456.0','418', '330','88','152536.21', '296','70','136105.12', '157','22','16431.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010071.0','1018889.0','4', '4','4','11736.46', '4','2','9857.0', '3','3','1879.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098335.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010072.0','1018889.0','2', '2','1','218.89', '1','0','0.0', '2','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098336.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010073.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098337.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010074.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098338.0','1044456.0','1078', '738','162','317802.84', '626','147','294460.06', '335','17','23342.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010075.0','1018889.0','26', '18','4','6806.83', '11','3','6000.0', '11','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098339.0','1044456.0','3', '2','1','82.76', '2','1','82.76', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010076.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098340.0','1044456.0','64', '46','9','21200.0', '31','9','21200.0', '37','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008688.0','1018889.0','6', '6','4','14871.8', '6','4','9676.04', '2','1','5195.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096952.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010077.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098341.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010078.0','1018889.0','1272', '927','255','570136.42', '796','235','493644.5', '509','37','76491.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098342.0','1044456.0','1', '1','1','550.0', '1','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010079.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098343.0','1044456.0','1', '1','1','550.0', '0','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010080.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098344.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010081.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098345.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010082.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098346.0','1044456.0','1', '1','1','2307.19', '1','1','2000.0', '1','1','307.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010083.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098347.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010084.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098348.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010085.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098349.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010086.0','1018889.0','104', '54','11','22000.0', '37','11','22000.0', '36','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098350.0','1044456.0','6', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010087.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098351.0','1044456.0','3', '2','2','4806.83', '2','2','4000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010088.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098352.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010089.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098353.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010090.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098354.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010091.0','1018889.0','2', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098355.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010092.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098356.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010093.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098357.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010094.0','1018889.0','469', '429','335','818229.76', '398','272','659809.07', '305','179','158420.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098358.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010095.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098359.0','1044456.0','19', '16','12','34228.06', '14','9','25460.74', '12','6','8767.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010096.0','1018889.0','29', '19','7','9808.5', '14','5','8387.29', '12','2','1421.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098360.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010097.0','1018889.0','130', '74','26','45699.77', '51','18','32935.85', '47','11','12763.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098361.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010098.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098362.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010099.0','1018889.0','1', '1','1','1873.75', '1','1','1873.75', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098363.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010100.0','1018889.0','206', '116','25','45201.86', '91','23','44304.16', '63','2','897.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098364.0','1044456.0','7', '5','0','0.0', '4','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010101.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098365.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010102.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098366.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010103.0','1018889.0','23', '21','6','10178.97', '13','6','10178.97', '16','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098367.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010104.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010105.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098369.0','1044456.0','3', '3','2','4729.75', '3','2','4000.0', '2','1','729.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010106.0','1018889.0','32', '28','21','38176.49', '22','14','30214.37', '21','9','7962.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098370.0','1044456.0','1', '1','1','218.89', '1','0','0.0', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008879.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097143.0','1044456.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010107.0','1018889.0','1', '1','1','806.83', '0','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098371.0','1044456.0','3', '3','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008659.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096923.0','1044456.0','30', '21','5','10000.0', '18','5','10000.0', '14','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010108.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098372.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010109.0','1018889.0','31', '20','3','6000.0', '8','3','6000.0', '13','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098373.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010110.0','1018889.0','1', '1','1','2218.89', '1','1','2000.0', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098374.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010111.0','1018889.0','1', '1','1','773.6', '1','0','0.0', '1','1','773.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098375.0','1044456.0','3623', '2226','486','938717.84', '1690','437','881143.67', '1259','62','57574.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010112.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098376.0','1044456.0','2', '2','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010113.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098377.0','1044456.0','9', '9','7','19847.78', '9','6','19297.78', '4','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010114.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098378.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010115.0','1018889.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098379.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010116.0','1018889.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098380.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010117.0','1018889.0','5966', '4165','1078','2006300.07', '3430','961','1838739.09', '2164','162','167560.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098381.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010118.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098382.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010119.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098383.0','1044456.0','2606', '2426','1847','4640254.05', '2326','1563','3760629.42', '1440','740','879624.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010120.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098384.0','1044456.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010121.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098385.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010122.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098386.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010123.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098387.0','1044456.0','1', '1','1','218.89', '1','0','0.0', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010124.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098388.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010125.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098389.0','1044456.0','555', '519','419','946819.26', '484','329','746501.68', '331','226','200317.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010126.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098390.0','1044456.0','531', '358','101','192058.08', '283','90','181914.41', '211','12','10143.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010127.0','1018889.0','10', '8','3','6000.0', '8','3','6000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098391.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010128.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098392.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010129.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098393.0','1044456.0','2', '2','1','2806.83', '2','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010130.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098394.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010131.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098395.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010132.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098396.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010133.0','1018889.0','708', '512','146','309739.92', '434','128','273640.28', '258','27','36099.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098397.0','1044456.0','2', '2','2','4706.77', '2','2','4706.77', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010134.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098398.0','1044456.0','1', '1','1','612.85', '1','1','612.85', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010135.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098399.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010136.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098400.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010137.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098401.0','1044456.0','4', '3','3','6000.0', '3','3','6000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010138.0','1018889.0','393', '364','295','780574.58', '344','234','608430.55', '235','160','172144.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098402.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010139.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098403.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010140.0','1018889.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098404.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010141.0','1018889.0','18', '17','6','13354.06', '17','6','13354.06', '14','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098405.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010142.0','1018889.0','63', '45','7','14037.96', '41','6','12000.0', '29','2','2037.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098406.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010143.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098407.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010144.0','1018889.0','3650', '2538','710','1512039.09', '2085','643','1396761.91', '1330','104','115277.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098408.0','1044456.0','2', '2','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010145.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098409.0','1044456.0','9', '5','4','8000.0', '5','4','8000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010146.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098410.0','1044456.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010147.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098411.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010148.0','1018889.0','1404', '1208','911','2366570.46', '1161','819','2049899.95', '663','297','316670.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098412.0','1044456.0','862', '741','300','644388.61', '679','278','597799.67', '414','45','46588.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010149.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098413.0','1044456.0','5791', '4145','1055','2287857.52', '3505','963','2093945.24', '2196','145','193912.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010150.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098414.0','1044456.0','6', '6','3','6000.0', '6','3','6000.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010151.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098415.0','1044456.0','4453', '3215','1006','2234612.11', '2726','893','1944714.48', '1775','180','289897.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010152.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098416.0','1044456.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010153.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098417.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010154.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098418.0','1044456.0','15', '14','2','4000.0', '12','2','4000.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010155.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098419.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010156.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098420.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010157.0','1018889.0','2', '1','1','2319.41', '1','1','2100.52', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098421.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010158.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098422.0','1044456.0','2', '2','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010159.0','1018889.0','18', '9','3','6000.0', '7','3','6000.0', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098423.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010160.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098424.0','1044456.0','3', '3','3','11463.04', '2','2','9849.38', '2','2','1613.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010161.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098425.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010162.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098426.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010163.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098427.0','1044456.0','1', '1','1','806.83', '0','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010164.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098428.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010165.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098429.0','1044456.0','1', '1','1','2614.38', '1','1','2000.0', '1','1','614.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010166.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098430.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010167.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098431.0','1044456.0','1', '1','1','523.27', '1','0','0.0', '1','1','523.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010168.0','1018889.0','1', '1','1','3025.72', '1','1','2000.0', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098432.0','1044456.0','17', '13','1','361.48', '12','0','0.0', '6','1','361.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010169.0','1018889.0','208', '192','153','403959.52', '178','116','320745.27', '142','96','83214.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098433.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010170.0','1018889.0','22', '13','5','10000.0', '11','5','10000.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098434.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010171.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098435.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010172.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098436.0','1044456.0','14', '12','4','5004.87', '11','3','4198.04', '9','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010173.0','1018889.0','32', '19','5','10847.68', '14','4','8000.0', '10','1','2847.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098437.0','1044456.0','327', '201','49','93293.45', '156','45','90104.07', '108','5','3189.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010174.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098438.0','1044456.0','2', '2','1','3245.73', '2','1','3245.73', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010175.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098439.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010176.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098440.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010177.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098441.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010178.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098442.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010179.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098443.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010180.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098444.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010181.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098445.0','1044456.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010182.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098446.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010183.0','1018889.0','1874', '1346','371','711293.44', '1141','311','616162.19', '721','81','95131.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098447.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010184.0','1018889.0','25', '19','2','4000.0', '15','2','4000.0', '13','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098448.0','1044456.0','2', '2','2','5832.55', '2','2','4000.0', '2','2','1832.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010185.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098449.0','1044456.0','3885', '3686','2933','7857478.87', '3545','2529','6371080.18', '2329','1334','1486398.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010186.0','1018889.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098450.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010187.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098451.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010188.0','1018889.0','2', '2','2','2525.0', '2','2','2525.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098452.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010189.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098453.0','1044456.0','1754', '1284','391','842138.95', '1051','351','762141.42', '750','72','79997.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010190.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098454.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010191.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098455.0','1044456.0','66', '52','25','58129.67', '48','25','52617.99', '39','1','5511.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010192.0','1018889.0','220', '210','159','351057.53', '200','132','306607.44', '120','50','44450.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098456.0','1044456.0','1', '1','1','2873.58', '1','1','2873.58', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010193.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098457.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010194.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098458.0','1044456.0','543', '356','74','144074.03', '285','68','134843.63', '168','10','9230.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010195.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098459.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010196.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098460.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010197.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098461.0','1044456.0','8177', '7721','6202','14784208.37', '7458','5606','12551727.43', '4326','2354','2232480.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010198.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098462.0','1044456.0','173', '162','110','278898.61', '147','83','227210.96', '106','51','51687.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010199.0','1018889.0','8245', '7781','6207','17820611.69', '7553','5621','14694365.31', '4682','2498','3126246.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098463.0','1044456.0','6', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010200.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098464.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010201.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098465.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010202.0','1018889.0','1', '1','1','4993.93', '1','1','3968.21', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098466.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010203.0','1018889.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098467.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010204.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098468.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010205.0','1018889.0','538', '492','387','892019.03', '444','297','714165.29', '319','190','177853.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098469.0','1044456.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010206.0','1018889.0','32', '31','18','79837.04', '30','14','57615.17', '19','10','22221.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098470.0','1044456.0','25', '21','18','40617.38', '19','10','30627.58', '16','11','9989.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010207.0','1018889.0','4', '4','2','4000.0', '4','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098471.0','1044456.0','2350', '1867','539','1087226.29', '1599','456','993837.09', '1066','114','93389.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010208.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098472.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010209.0','1018889.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098473.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010210.0','1018889.0','1', '1','1','2256.37', '1','1','2000.0', '1','1','256.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098474.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010211.0','1018889.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098475.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010212.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098476.0','1044456.0','3', '3','3','7025.72', '3','3','6000.0', '2','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010213.0','1018889.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098477.0','1044456.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010214.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098478.0','1044456.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010215.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098479.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010216.0','1018889.0','2', '2','2','4000.0', '2','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098480.0','1044456.0','1', '1','1','5799.0', '1','1','5799.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010217.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098481.0','1044456.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010218.0','1018889.0','48', '40','21','40307.19', '37','20','40000.0', '32','1','307.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098482.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010219.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098483.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010220.0','1018889.0','27', '21','4','8000.0', '19','4','8000.0', '13','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098484.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010221.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098485.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010222.0','1018889.0','1570', '1018','252','565709.55', '843','215','501414.98', '555','58','64294.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098486.0','1044456.0','229', '131','27','52694.43', '92','23','44562.0', '85','4','8132.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010223.0','1018889.0','2', '2','1','2000.0', '1','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098487.0','1044456.0','1448', '1094','361','741674.3', '969','331','673036.57', '565','50','68637.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010224.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098488.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010225.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098489.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010226.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098490.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010227.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098491.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010228.0','1018889.0','1', '1','1','791.33', '0','0','0.0', '1','1','791.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098492.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010229.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098493.0','1044456.0','6', '6','4','9800.68', '6','4','9269.08', '4','1','531.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010230.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098494.0','1044456.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010231.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098495.0','1044456.0','4', '4','3','3613.66', '4','1','2000.0', '2','2','1613.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010232.0','1018889.0','3', '3','2','4218.89', '3','2','4000.0', '2','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098496.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010233.0','1018889.0','4', '4','2','4573.0', '4','2','4573.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098497.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010234.0','1018889.0','2179', '2091','1726','4015671.48', '2000','1535','3387236.94', '1293','702','628434.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098498.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010235.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098499.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010236.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098500.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010237.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098501.0','1044456.0','1', '1','1','13230.0', '1','1','13230.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010238.0','1018889.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098502.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010239.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098503.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010240.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098504.0','1044456.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010241.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098505.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010242.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098506.0','1044456.0','2808', '2031','598','1316963.23', '1730','560','1199817.92', '1152','71','117145.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010243.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098507.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010244.0','1018889.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098508.0','1044456.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010245.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098509.0','1044456.0','310', '191','48','105246.08', '147','43','99493.77', '110','5','5752.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010246.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098510.0','1044456.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010247.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098511.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010248.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098512.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010249.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098513.0','1044456.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010250.0','1018889.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098514.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010251.0','1018889.0','1', '1','1','648.42', '1','0','0.0', '1','1','648.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098515.0','1044456.0','4', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010252.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098516.0','1044456.0','2', '2','1','11216.0', '2','1','11216.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010253.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098517.0','1044456.0','11', '7','2','3346.4', '6','2','3346.4', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010254.0','1018889.0','2634', '1794','502','1002547.19', '1497','459','953699.1', '969','58','48848.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098518.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010255.0','1018889.0','1', '1','1','6312.16', '1','1','2116.94', '1','1','4195.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098519.0','1044456.0','111', '71','15','30277.69', '54','12','20638.52', '39','3','9639.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010256.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098520.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010257.0','1018889.0','9', '9','8','32290.29', '9','8','26059.91', '5','3','6230.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098521.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010258.0','1018889.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098522.0','1044456.0','6758', '5310','1906','4416436.2', '4669','1695','3828258.76', '3062','385','588177.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010259.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098523.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010260.0','1018889.0','343', '235','50','80865.94', '199','40','72174.21', '121','10','8691.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098524.0','1044456.0','1', '1','1','1025.72', '0','0','0.0', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010261.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098525.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010262.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098526.0','1044456.0','8', '7','3','7037.87', '6','3','7037.87', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010263.0','1018889.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098527.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010264.0','1018889.0','1', '1','1','2588.91', '1','1','2000.0', '1','1','588.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098528.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010265.0','1018889.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098529.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010266.0','1018889.0','2', '2','2','4962.65', '2','2','4000.0', '1','1','962.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098530.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010267.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098531.0','1044456.0','149', '104','23','47356.62', '90','17','43043.65', '66','7','4312.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010268.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098532.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010269.0','1018889.0','5', '4','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098533.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010270.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098534.0','1044456.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010271.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098535.0','1044456.0','2', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010272.0','1018889.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098536.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010273.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098537.0','1044456.0','108', '73','16','32000.0', '54','16','32000.0', '44','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010274.0','1018889.0','9', '5','1','2000.0', '4','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098538.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010275.0','1018889.0','637', '537','364','850698.57', '513','321','732072.22', '287','98','118626.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098539.0','1044456.0','1136', '691','173','322063.14', '532','147','296794.51', '366','29','25268.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010276.0','1018889.0','440', '387','292','829536.97', '376','263','683787.14', '220','93','145749.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098540.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010277.0','1018889.0','6', '3','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098541.0','1044456.0','7', '6','1','2000.0', '5','1','2000.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010278.0','1018889.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098542.0','1044456.0','342', '319','236','485242.89', '269','181','387943.39', '229','121','97299.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010279.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098543.0','1044456.0','415', '282','56','105933.57', '242','54','103888.69', '119','4','2044.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010280.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098544.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010281.0','1018889.0','14', '11','3','6000.0', '11','3','6000.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098545.0','1044456.0','8', '6','4','8000.0', '4','4','8000.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010282.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098546.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010283.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098547.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010284.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098548.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010285.0','1018889.0','26', '16','5','11151.77', '16','5','10000.0', '9','1','1151.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098549.0','1044456.0','6', '6','4','13268.03', '6','4','10686.18', '3','1','2581.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010286.0','1018889.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098550.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010287.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098551.0','1044456.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008660.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096924.0','1044456.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010288.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098552.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010289.0','1018889.0','1488', '938','182','330665.76', '733','156','296918.97', '507','29','33746.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098553.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010290.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098554.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010291.0','1018889.0','1', '1','1','5001.0', '1','1','5001.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098555.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010292.0','1018889.0','1', '1','1','2880.11', '1','1','2880.11', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098556.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010293.0','1018889.0','5277', '3711','962','1795343.18', '3040','855','1677189.89', '1951','140','118153.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098557.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010294.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098558.0','1044456.0','407', '256','27','51518.43', '172','24','49685.88', '156','3','1832.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010295.0','1018889.0','2', '2','2','4515.27', '2','2','4000.0', '2','1','515.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098559.0','1044456.0','26', '19','12','24000.0', '17','12','24000.0', '11','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010296.0','1018889.0','2', '2','2','10571.62', '2','2','2463.0', '1','1','8108.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098560.0','1044456.0','7', '5','2','5180.28', '5','2','4154.56', '5','2','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010297.0','1018889.0','1', '1','1','806.83', '0','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098561.0','1044456.0','4', '2','2','4000.0', '2','2','4000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010298.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098562.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010299.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098563.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010300.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098564.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010301.0','1018889.0','76', '46','10','20724.75', '38','9','18000.0', '17','1','2724.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098565.0','1044456.0','1144', '882','244','452031.35', '726','192','394697.47', '483','71','57333.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010302.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098566.0','1044456.0','1724', '1247','383','716178.72', '1007','323','618334.19', '751','78','97844.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010303.0','1018889.0','322', '227','54','95963.23', '178','44','85384.94', '133','10','10578.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098567.0','1044456.0','258', '172','41','83224.73', '141','39','79932.87', '91','2','3291.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010304.0','1018889.0','88', '51','14','26806.83', '38','13','26000.0', '35','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098568.0','1044456.0','460', '258','56','104928.31', '183','48','93801.77', '169','9','11126.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010305.0','1018889.0','13', '8','0','0.0', '5','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098569.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010306.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098570.0','1044456.0','1466', '1076','328','622552.96', '891','286','549012.47', '655','64','73540.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010307.0','1018889.0','636', '439','100','188623.28', '349','92','182458.18', '215','11','6165.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098571.0','1044456.0','809', '523','137','257413.35', '403','129','253031.0', '322','9','4382.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010308.0','1018889.0','1226', '745','150','285114.21', '542','134','261885.01', '437','22','23229.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098572.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008850.0','1018889.0','2669', '1747','486','922291.55', '1410','445','864277.12', '920','68','58014.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097114.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010309.0','1018889.0','387', '295','103','215908.02', '247','80','170201.73', '177','32','45706.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098573.0','1044456.0','634', '407','103','206912.55', '312','88','179879.64', '251','18','27032.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010310.0','1018889.0','421', '293','60','110593.92', '231','54','105739.29', '162','7','4854.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098574.0','1044456.0','18', '11','2','2791.33', '5','1','2000.0', '10','1','791.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010311.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098575.0','1044456.0','380', '265','55','119733.97', '197','50','103249.0', '167','6','16484.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010312.0','1018889.0','719', '492','139','260532.75', '389','124','248160.89', '295','21','12371.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098576.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010313.0','1018889.0','394', '247','54','97586.17', '184','47','90842.0', '148','8','6744.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098577.0','1044456.0','188', '108','24','44939.12', '72','22','43325.46', '67','2','1613.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010314.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098578.0','1044456.0','713', '438','101','201402.31', '305','92','189256.0', '281','11','12146.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010315.0','1018889.0','146', '104','29','54475.86', '88','24','45751.78', '63','5','8724.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098579.0','1044456.0','3', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010316.0','1018889.0','993', '727','196','367927.34', '572','167','336633.27', '437','35','31294.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098580.0','1044456.0','797', '541','127','263352.76', '429','111','252995.92', '312','18','10356.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010317.0','1018889.0','1089', '814','188','352544.45', '715','171','333807.17', '403','21','18737.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098581.0','1044456.0','332', '218','54','110524.47', '161','49','107893.97', '125','5','2630.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010318.0','1018889.0','175', '107','38','58064.4', '80','28','51919.65', '67','11','6144.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098582.0','1044456.0','1848', '1406','399','746371.18', '1205','340','625900.68', '822','109','120470.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010319.0','1018889.0','932', '492','92','164821.15', '326','82','158884.99', '302','10','5936.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098583.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010320.0','1018889.0','93', '71','15','28806.83', '51','14','28000.0', '45','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098584.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010321.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098585.0','1044456.0','51', '31','5','10000.0', '23','5','10000.0', '16','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010322.0','1018889.0','6', '4','0','0.0', '2','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098586.0','1044456.0','9', '3','1','2000.0', '3','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010323.0','1018889.0','1144', '866','241','412733.71', '734','202','385124.68', '517','48','27609.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098587.0','1044456.0','1141', '811','241','439710.57', '653','195','384061.11', '448','60','55649.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010324.0','1018889.0','171', '110','32','70754.55', '85','30','61972.15', '66','4','8782.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098588.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010325.0','1018889.0','126', '91','22','40910.69', '71','18','36564.52', '50','8','4346.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098589.0','1044456.0','247', '158','35','68241.23', '120','33','66000.0', '104','2','2241.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010326.0','1018889.0','563', '390','114','175692.67', '320','92','154872.88', '234','31','20819.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098590.0','1044456.0','154', '105','27','57740.79', '86','22','53099.4', '63','7','4641.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010327.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098591.0','1044456.0','481', '301','65','105884.74', '230','49','93446.31', '186','20','12438.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010328.0','1018889.0','702', '531','137','250710.06', '436','115','224749.23', '327','25','25960.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098592.0','1044456.0','571', '366','105','187476.51', '292','94','178224.3', '198','13','9252.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010329.0','1018889.0','73', '42','12','26148.0', '30','12','26148.0', '26','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098593.0','1044456.0','338', '216','61','113114.51', '156','51','103369.9', '138','10','9744.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010330.0','1018889.0','86', '39','11','22000.0', '27','11','22000.0', '24','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098594.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010331.0','1018889.0','323', '225','66','118920.0', '195','63','113641.38', '106','5','5278.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098595.0','1044456.0','218', '135','20','37131.72', '96','18','36106.0', '80','2','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010332.0','1018889.0','771', '568','141','245584.76', '458','124','230647.2', '344','23','14937.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098596.0','1044456.0','400', '268','87','149797.3', '209','66','122898.81', '161','28','26898.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010333.0','1018889.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098597.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010334.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098598.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010335.0','1018889.0','161', '108','42','89142.6', '80','34','78084.0', '70','9','11058.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098599.0','1044456.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010336.0','1018889.0','164', '116','33','46403.53', '96','29','42862.02', '68','5','3541.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098600.0','1044456.0','1058', '634','140','253307.88', '494','122','231838.04', '352','21','21469.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008462.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096726.0','1044456.0','8', '5','3','7389.72', '4','2','4000.0', '4','1','3389.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010337.0','1018889.0','636', '400','90','163260.84', '308','79','147698.84', '218','17','15562.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098601.0','1044456.0','459', '273','82','154534.01', '200','74','146128.82', '171','9','8405.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010338.0','1018889.0','503', '300','79','148543.81', '210','73','145446.48', '186','6','3097.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098602.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010339.0','1018889.0','209', '122','52','99379.82', '99','43','86000.0', '80','10','13379.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098603.0','1044456.0','223', '158','55','107994.25', '132','41','87014.06', '96','16','20980.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010340.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098604.0','1044456.0','96', '60','18','34806.83', '45','17','34000.0', '38','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010341.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098605.0','1044456.0','119', '82','20','37933.19', '60','19','37126.36', '59','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010342.0','1018889.0','91', '53','17','29933.92', '38','13','24801.0', '32','5','5132.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098606.0','1044456.0','14', '12','2','4000.0', '7','2','4000.0', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010343.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098607.0','1044456.0','604', '408','118','223780.44', '318','102','210388.5', '257','17','13391.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010344.0','1018889.0','872', '551','134','271835.0', '427','117','255152.65', '348','20','16682.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098608.0','1044456.0','237', '170','45','86702.19', '143','41','82000.0', '86','4','4702.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010345.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098609.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010346.0','1018889.0','690', '428','85','188284.5', '332','79','166864.92', '227','7','21419.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098610.0','1044456.0','751', '509','119','211864.11', '408','110','205145.32', '284','13','6718.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010347.0','1018889.0','733', '502','120','199513.31', '398','104','180987.84', '281','20','18525.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098611.0','1044456.0','187', '125','26','50227.32', '85','21','42000.0', '75','5','8227.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010348.0','1018889.0','174', '128','52','89505.6', '104','39','77187.61', '87','16','12317.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098612.0','1044456.0','229', '140','40','76256.74', '107','33','66000.0', '74','8','10256.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010349.0','1018889.0','1143', '825','197','356040.69', '666','174','337955.21', '493','33','18085.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098613.0','1044456.0','607', '431','99','202859.96', '360','94','192965.13', '224','7','9894.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010350.0','1018889.0','728', '543','161','285726.27', '458','152','273257.36', '306','17','12468.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098614.0','1044456.0','616', '409','140','297116.62', '328','133','276659.1', '238','10','20457.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010351.0','1018889.0','1266', '831','216','382230.02', '679','178','347825.85', '441','44','34404.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098615.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010352.0','1018889.0','32', '24','9','18000.0', '16','9','18000.0', '15','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098616.0','1044456.0','809', '523','125','268752.46', '396','111','241977.12', '308','19','26775.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010353.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098617.0','1044456.0','330', '219','58','88485.06', '164','43','79302.09', '126','18','9182.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010354.0','1018889.0','275', '182','52','95190.35', '139','45','83076.72', '105','9','12113.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098618.0','1044456.0','380', '240','64','127811.77', '176','60','120716.92', '145','6','7094.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010355.0','1018889.0','166', '110','39','83600.18', '90','29','67115.26', '62','12','16484.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098619.0','1044456.0','321', '226','63','107949.86', '173','54','99039.9', '142','11','8909.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010356.0','1018889.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098620.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010357.0','1018889.0','210', '150','38','75396.28', '120','32','67911.5', '82','10','7484.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098621.0','1044456.0','1621', '1018','213','407686.73', '787','203','394439.82', '549','11','13246.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010358.0','1018889.0','187', '134','38','68172.64', '114','33','60714.68', '83','5','7457.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098622.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010359.0','1018889.0','58', '32','8','14550.0', '24','7','14000.0', '17','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098623.0','1044456.0','155', '106','26','60217.35', '76','22','55854.8', '69','5','4362.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010360.0','1018889.0','208', '143','35','67019.52', '104','30','54419.02', '91','5','12600.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098624.0','1044456.0','3', '3','0','0.0', '2','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010361.0','1018889.0','267', '160','52','97923.14', '113','45','90000.0', '110','7','7923.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098625.0','1044456.0','667', '395','106','194113.28', '301','94','186899.0', '212','12','7214.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010362.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098626.0','1044456.0','214', '140','39','96162.12', '113','38','87675.78', '85','2','8486.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010363.0','1018889.0','1003', '728','179','345410.23', '604','155','306203.81', '424','39','39206.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098627.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010364.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098628.0','1044456.0','5', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010365.0','1018889.0','328', '206','51','103680.48', '171','47','101480.99', '105','4','2199.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098629.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010366.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098630.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010367.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098631.0','1044456.0','18', '10','4','4062.33', '8','1','616.12', '9','4','3446.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010368.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098632.0','1044456.0','114', '86','31','52246.23', '68','18','37877.4', '53','17','14368.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010369.0','1018889.0','182', '129','36','94072.6', '100','22','83531.22', '65','15','10541.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098633.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010370.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098634.0','1044456.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010371.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098635.0','1044456.0','7983', '7385','5587','13153484.38', '6944','4618','10806325.62', '4836','2318','2347158.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010372.0','1018889.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098636.0','1044456.0','1', '1','1','5285.12', '1','1','5285.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008638.0','1018889.0','1', '1','1','22150.38', '1','1','12880.0', '1','1','9270.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096902.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010373.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098637.0','1044456.0','14981', '14065','11386','24957414.34', '13732','11019','22866385.69', '5937','2075','2091028.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010374.0','1018889.0','9146', '8562','6725','17456790.98', '8392','6562','15642683.06', '4459','1117','1814107.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098638.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010375.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098639.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010376.0','1018889.0','3050', '2112','497','911147.36', '1747','431','831498.56', '1096','82','79648.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098640.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010377.0','1018889.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098641.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010378.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098642.0','1044456.0','5', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010379.0','1018889.0','54', '35','7','6108.58', '29','4','4863.97', '26','3','1244.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098643.0','1044456.0','4', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010380.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098644.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010381.0','1018889.0','5', '4','2','2806.83', '3','1','2000.0', '2','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098645.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010382.0','1018889.0','109', '85','27','45396.03', '66','18','35714.07', '58','12','9681.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098646.0','1044456.0','3', '2','2','4000.0', '2','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010383.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098647.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010384.0','1018889.0','4', '3','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098648.0','1044456.0','2', '2','1','6876.06', '1','1','5850.34', '2','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010385.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098649.0','1044456.0','56', '49','29','49896.49', '42','19','39501.73', '32','15','10394.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008721.0','1018889.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096985.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008690.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096954.0','1044456.0','768', '542','143','240136.51', '439','114','213348.73', '294','34','26787.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010386.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098650.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010387.0','1018889.0','702', '678','565','1752443.52', '665','522','1453724.95', '464','299','298718.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098651.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010388.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098652.0','1044456.0','1445', '861','192','333517.05', '667','162','299611.14', '450','37','33905.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010389.0','1018889.0','2', '2','1','2000.0', '1','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098653.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010390.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098654.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010391.0','1018889.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098655.0','1044456.0','2', '2','2','6346.09', '2','2','5539.26', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010392.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098656.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010393.0','1018889.0','1334', '838','210','381406.33', '660','160','329058.65', '455','54','52347.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098657.0','1044456.0','1', '1','1','1227.84', '1','1','1227.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010394.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098658.0','1044456.0','7', '5','0','0.0', '5','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008744.0','1018889.0','450', '307','76','151123.82', '240','72','145706.14', '166','6','5417.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097008.0','1044456.0','71', '42','10','24404.61', '30','9','18000.0', '29','1','6404.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010395.0','1018889.0','4', '4','3','7072.52', '3','3','6000.0', '2','1','1072.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098659.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010396.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098660.0','1044456.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010397.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098661.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010398.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098662.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010399.0','1018889.0','2', '2','2','7769.51', '2','1','2000.0', '2','2','5769.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098663.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010400.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098664.0','1044456.0','1055', '622','128','237526.27', '473','110','212311.25', '343','21','25215.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010401.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098665.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010402.0','1018889.0','1263', '716','139','326576.17', '510','136','281995.85', '421','10','44580.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098666.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010403.0','1018889.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098667.0','1044456.0','49', '33','8','14806.83', '26','7','14000.0', '22','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010404.0','1018889.0','31', '28','6','12000.0', '18','6','12000.0', '21','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098668.0','1044456.0','1', '1','1','369.27', '1','1','369.27', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010405.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098669.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010406.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098670.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010407.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098671.0','1044456.0','148', '99','21','37642.28', '79','18','33389.24', '60','6','4253.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010408.0','1018889.0','459', '297','92','136190.86', '233','81','127251.57', '172','16','8939.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098672.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010409.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098673.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010410.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098674.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010411.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098675.0','1044456.0','1', '1','1','806.83', '0','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010412.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098676.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010413.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098677.0','1044456.0','8', '7','4','7413.67', '7','3','6657.0', '3','1','756.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010414.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098678.0','1044456.0','2', '2','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010415.0','1018889.0','3', '3','2','4000.0', '3','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098679.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010416.0','1018889.0','25', '18','5','10738.02', '15','4','8766.81', '12','2','1971.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098680.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010417.0','1018889.0','6', '5','2','2806.83', '4','1','2000.0', '3','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098681.0','1044456.0','43', '35','15','20499.78', '28','11','17272.46', '25','4','3227.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010418.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098682.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010419.0','1018889.0','14', '12','3','10335.9', '11','3','9435.97', '3','1','899.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098683.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010420.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098684.0','1044456.0','5743', '5454','4413','10731227.16', '5332','4156','9302377.59', '2839','1296','1428849.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010421.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098685.0','1044456.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010422.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098686.0','1044456.0','354', '250','58','82473.94', '164','43','68881.57', '164','19','13592.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010423.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098687.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010424.0','1018889.0','10', '9','1','2000.0', '8','1','2000.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098688.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010425.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098689.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010426.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098690.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010427.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098691.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010428.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098692.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010429.0','1018889.0','4', '3','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098693.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010430.0','1018889.0','1623', '1029','278','479668.46', '802','233','428315.41', '586','59','51353.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098694.0','1044456.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010431.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098695.0','1044456.0','2', '2','2','3038.94', '2','1','2000.0', '2','2','1038.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010432.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098696.0','1044456.0','996', '903','643','1315026.35', '819','470','1046885.88', '565','292','268140.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010433.0','1018889.0','703', '485','117','226129.03', '360','86','187717.97', '307','39','38411.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098697.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010434.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098698.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010435.0','1018889.0','1', '1','1','3526.52', '1','1','2380.0', '1','1','1146.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098699.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008881.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097145.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010436.0','1018889.0','3', '2','1','2285.0', '2','1','2285.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098700.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010437.0','1018889.0','1023', '814','369','593920.43', '599','224','449520.15', '582','179','144400.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098701.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010438.0','1018889.0','4', '3','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098702.0','1044456.0','134', '76','25','45189.12', '64','24','44382.29', '46','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010439.0','1018889.0','1276', '787','153','293467.19', '610','128','248662.13', '432','31','44805.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098703.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010440.0','1018889.0','116', '70','19','38308.5', '54','19','37058.15', '40','1','1250.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098704.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010441.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098705.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010442.0','1018889.0','13', '10','6','9613.66', '8','4','8000.0', '7','2','1613.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098706.0','1044456.0','1072', '801','223','400324.33', '618','177','347601.49', '499','53','52722.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010443.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098707.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010444.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098708.0','1044456.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010445.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098709.0','1044456.0','2', '2','2','2838.74', '2','2','2657.0', '2','1','181.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010446.0','1018889.0','8', '8','6','11607.83', '8','6','10801.0', '5','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098710.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010447.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098711.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010448.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098712.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010449.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098713.0','1044456.0','1221', '884','233','353646.2', '710','198','329066.69', '507','43','24579.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010450.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098714.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010451.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098715.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010452.0','1018889.0','1', '1','1','787.57', '1','1','787.57', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098716.0','1044456.0','788', '538','135','241395.66', '439','116','217355.87', '291','23','24039.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010453.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098717.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010454.0','1018889.0','2', '2','1','1678.1', '2','1','657.0', '1','1','1021.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098718.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010455.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098719.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010456.0','1018889.0','1008', '558','130','292509.32', '415','110','255118.9', '338','27','37390.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098720.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010457.0','1018889.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098721.0','1044456.0','827', '593','196','312843.43', '487','169','281718.02', '363','35','31125.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010458.0','1018889.0','4', '4','2','2307.19', '3','1','2000.0', '4','1','307.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098722.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010459.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098723.0','1044456.0','2', '2','1','2000.0', '1','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010460.0','1018889.0','25', '15','7','14000.0', '10','7','14000.0', '12','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098724.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010461.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098725.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010462.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098726.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010463.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098727.0','1044456.0','561', '366','95','180309.73', '283','85','169415.32', '192','13','10894.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010464.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098728.0','1044456.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010465.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098729.0','1044456.0','694', '497','143','269909.7', '378','109','226249.18', '293','46','43660.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010466.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098730.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010467.0','1018889.0','1', '1','1','7633.62', '1','1','7633.62', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098731.0','1044456.0','14', '7','4','4824.98', '7','3','4073.77', '5','1','751.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010468.0','1018889.0','64', '43','12','18376.16', '22','8','13861.58', '32','5','4514.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098732.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010469.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098733.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010470.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098734.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010471.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098735.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010472.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098736.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010473.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098737.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010474.0','1018889.0','9', '8','6','11025.72', '8','5','10000.0', '5','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098738.0','1044456.0','11137', '10739','9130','22066348.33', '10612','8866','19200016.75', '5125','2521','2866331.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010475.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098739.0','1044456.0','1', '1','1','3178.26', '1','1','3178.26', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010476.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098740.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008824.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097088.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010477.0','1018889.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098741.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008564.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096828.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010478.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098742.0','1044456.0','76', '73','61','184249.0', '69','50','150522.76', '51','32','33726.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010479.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098743.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010480.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098744.0','1044456.0','2', '1','1','737.23', '1','1','737.23', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010481.0','1018889.0','1', '1','1','8832.33', '1','1','7200.0', '1','1','1632.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098745.0','1044456.0','2', '2','1','2000.0', '1','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010482.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098746.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010483.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098747.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010484.0','1018889.0','9', '7','7','20863.16', '7','5','13287.06', '7','6','7576.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098748.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010485.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098749.0','1044456.0','1', '1','1','2931.52', '1','1','2000.0', '1','1','931.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010486.0','1018889.0','71', '54','37','89237.33', '53','36','84222.27', '31','5','5015.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098750.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010487.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098751.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010488.0','1018889.0','1', '1','1','8789.88', '1','1','687.0', '1','1','8102.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098752.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010489.0','1018889.0','12544', '11941','9886','29223213.29', '11807','9697','25537540.5', '6348','2116','3685672.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098753.0','1044456.0','6707', '6486','5593','13968781.54', '6411','5465','12052154.82', '3259','1648','1916626.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010490.0','1018889.0','5', '5','3','6000.0', '5','3','6000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098754.0','1044456.0','1', '1','1','2184.66', '1','1','2184.66', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010491.0','1018889.0','8', '7','3','6000.0', '6','3','6000.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010492.0','1018889.0','2126', '1810','1042','2035638.95', '1468','689','1544548.73', '1266','542','491090.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098756.0','1044456.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010493.0','1018889.0','8767', '7531','4170','8701172.8', '6471','3228','7295765.03', '4604','1566','1405407.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098757.0','1044456.0','1', '1','1','550.0', '1','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010494.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098758.0','1044456.0','17', '12','2','4000.0', '9','2','4000.0', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010495.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098759.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010496.0','1018889.0','5', '5','4','9586.83', '5','4','8380.0', '3','2','1206.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098760.0','1044456.0','3', '3','3','6754.39', '3','3','6754.39', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010497.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098761.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008682.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096946.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010498.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098762.0','1044456.0','10', '9','8','17959.03', '9','8','16000.0', '7','2','1959.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008635.0','1018889.0','6', '5','3','11363.0', '4','2','9663.0', '5','1','1700.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096899.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010499.0','1018889.0','1', '1','1','1025.72', '1','0','0.0', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098763.0','1044456.0','1', '1','1','5974.8', '1','1','2554.0', '1','1','3420.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010500.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098764.0','1044456.0','41', '37','26','54796.03', '37','21','49452.95', '24','7','5343.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010501.0','1018889.0','3', '3','2','4000.0', '3','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098765.0','1044456.0','1', '1','1','4924.97', '1','1','4924.97', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010502.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098766.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010503.0','1018889.0','397', '382','293','709644.9', '370','261','597828.47', '210','100','111816.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098767.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010504.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098768.0','1044456.0','1', '1','1','12499.63', '1','1','7656.0', '1','1','4843.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010505.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098769.0','1044456.0','1', '1','1','2756.67', '1','1','2000.0', '1','1','756.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010506.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098770.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010507.0','1018889.0','8', '8','0','0.0', '8','0','0.0', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098771.0','1044456.0','1', '1','1','2947.52', '1','1','2554.0', '1','1','393.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010508.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098772.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010509.0','1018889.0','1', '1','1','6369.0', '1','1','6369.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098773.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010510.0','1018889.0','1', '1','1','2645.36', '1','1','2645.36', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098774.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010511.0','1018889.0','3', '3','3','6000.0', '3','3','6000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098775.0','1044456.0','1', '1','1','806.83', '0','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010512.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098776.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010513.0','1018889.0','1', '1','1','2554.0', '1','1','2554.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098777.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010514.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098778.0','1044456.0','91', '87','65','216937.64', '84','52','168944.9', '69','38','47992.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010515.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098779.0','1044456.0','1', '1','1','1627.73', '1','1','1627.73', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010516.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098780.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010517.0','1018889.0','11', '11','7','14000.0', '9','7','14000.0', '11','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098781.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010518.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098782.0','1044456.0','2', '2','2','4806.83', '2','2','4000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010519.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098783.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010520.0','1018889.0','2', '2','1','4770.77', '1','0','0.0', '2','1','4770.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098784.0','1044456.0','1', '1','1','9262.44', '1','1','2463.0', '1','1','6799.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010521.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098785.0','1044456.0','1', '1','1','3599.92', '1','1','2000.0', '1','1','1599.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010522.0','1018889.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098786.0','1044456.0','1', '1','1','550.0', '0','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010523.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098787.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010524.0','1018889.0','12', '10','7','14000.0', '8','7','14000.0', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098788.0','1044456.0','3', '3','2','2921.61', '3','2','2114.78', '2','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010525.0','1018889.0','4', '3','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098789.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010526.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098790.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010527.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098791.0','1044456.0','17249', '16255','13059','34979060.42', '15913','12489','29985553.61', '8915','3230','4993506.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010528.0','1018889.0','13', '11','7','13329.21', '11','6','12000.0', '7','3','1329.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098792.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010529.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098793.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010530.0','1018889.0','26', '24','15','53755.91', '22','15','45323.0', '13','3','8432.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098794.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010531.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098795.0','1044456.0','2', '2','2','4000.0', '2','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010532.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098796.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010533.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098797.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010534.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098798.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010535.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098799.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010536.0','1018889.0','1', '1','1','2926.0', '1','1','2926.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098800.0','1044456.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010537.0','1018889.0','4', '4','1','2554.0', '4','1','2554.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098801.0','1044456.0','3', '3','3','6000.0', '3','3','6000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010538.0','1018889.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098802.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010539.0','1018889.0','3', '3','2','4000.0', '3','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098803.0','1044456.0','2', '2','2','4000.0', '2','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010540.0','1018889.0','2', '2','1','3662.0', '2','1','3662.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098804.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010541.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098805.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010542.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098806.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010543.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098807.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010544.0','1018889.0','370', '349','309','2969581.05', '344','303','1621135.61', '245','167','1348445.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098808.0','1044456.0','1', '1','1','9425.25', '1','1','4425.25', '1','1','5000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010545.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098809.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010546.0','1018889.0','2', '2','2','4900.33', '2','2','4093.5', '2','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098810.0','1044456.0','1', '1','1','3006.0', '1','1','2456.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010547.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098811.0','1044456.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010548.0','1018889.0','3', '3','1','2000.0', '3','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098812.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010549.0','1018889.0','1', '1','1','806.83', '0','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098813.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010550.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098814.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010551.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098815.0','1044456.0','1', '1','1','3282.09', '1','1','2000.0', '1','1','1282.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010552.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098816.0','1044456.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010553.0','1018889.0','2', '2','1','2000.0', '1','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098817.0','1044456.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010554.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098818.0','1044456.0','2', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010555.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098819.0','1044456.0','1', '1','1','20698.53', '1','1','7200.0', '1','1','13498.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010556.0','1018889.0','32', '27','17','45119.17', '27','17','42043.0', '14','1','3076.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098820.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010557.0','1018889.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098821.0','1044456.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010558.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098822.0','1044456.0','1', '1','1','1025.72', '1','0','0.0', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2008835.0','1018889.0','3', '3','2','4380.0', '3','2','4380.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2097099.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010559.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098823.0','1044456.0','15', '15','14','35520.45', '15','13','31541.26', '7','4','3979.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2008799.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2097063.0','1044456.0','6829', '5744','3312','6379460.38', '4698','2393','5132403.15', '3838','1424','1247057.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010560.0','1018889.0','8357', '7890','6353','14485593.36', '7701','6133','13110819.84', '3661','1332','1374773.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098824.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010561.0','1018889.0','3', '2','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098825.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010562.0','1018889.0','1', '1','1','10168.8', '1','1','7656.0', '1','1','2512.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098826.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010563.0','1018889.0','3395', '3198','2532','6907185.54', '3064','2112','5502567.99', '2135','1230','1404617.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098827.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010564.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098828.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010565.0','1018889.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098829.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010566.0','1018889.0','901', '808','669','1348757.4', '771','657','1317920.0', '434','36','30837.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098830.0','1044456.0','721', '691','538','1485838.69', '671','489','1255120.33', '354','182','230718.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010567.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098831.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010568.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098832.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010569.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098833.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010570.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098834.0','1044456.0','3', '3','3','4816.79', '3','2','4000.0', '1','1','816.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010571.0','1018889.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098835.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010572.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098836.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010573.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098837.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010574.0','1018889.0','204', '194','151','399406.87', '191','123','307543.32', '128','71','91863.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098838.0','1044456.0','3', '3','3','6000.0', '3','3','6000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010575.0','1018889.0','3', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098839.0','1044456.0','3839', '3669','3033','9045802.41', '3576','2651','7284981.34', '2528','1574','1760821.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010576.0','1018889.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098840.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010577.0','1018889.0','1', '1','1','949.34', '1','1','730.45', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098841.0','1044456.0','2', '2','2','9338.44', '2','2','7724.78', '2','2','1613.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010578.0','1018889.0','22', '22','19','59309.73', '21','17','47657.76', '16','12','11651.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098842.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010579.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098843.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010580.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098844.0','1044456.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2008864.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2097128.0','1044456.0','2', '2','2','7299.92', '2','2','7299.92', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010581.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098845.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010582.0','1018889.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098846.0','1044456.0','1', '1','1','3387.29', '1','1','3387.29', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010583.0','1018889.0','3', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098847.0','1044456.0','44', '33','18','40266.56', '30','18','36210.0', '21','2','4056.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010584.0','1018889.0','1', '1','1','2497.69', '1','1','2497.69', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098848.0','1044456.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010585.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098849.0','1044456.0','1', '1','1','1980.0', '1','1','1980.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010586.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098850.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010587.0','1018889.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098851.0','1044456.0','1', '1','1','3025.72', '1','1','2000.0', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010588.0','1018889.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098852.0','1044456.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010589.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098853.0','1044457.0','19552', '18528','15473','43303316.01', '18294','15211','36776526.95', '9375','3276','6526789.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010590.0','1018890.0','1', '1','1','456.0', '1','1','456.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098854.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2008543.0','1018890.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2096807.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010591.0','1018890.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098855.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2008714.0','1018890.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2096978.0','1044457.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010592.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098856.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010593.0','1018890.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098857.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010594.0','1018890.0','18', '17','11','22000.0', '16','11','22000.0', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098858.0','1044457.0','1', '1','1','5939.3', '1','1','3142.31', '1','1','2796.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010595.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098859.0','1044457.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010596.0','1018890.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098860.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010597.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098861.0','1044457.0','4', '4','4','8806.83', '4','4','8000.0', '2','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010598.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098862.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010599.0','1018890.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098863.0','1044457.0','1', '1','1','3388.26', '1','1','554.0', '1','1','2834.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010600.0','1018890.0','1', '1','1','3365.18', '1','1','2339.46', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098864.0','1044457.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010601.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098865.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010602.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098866.0','1044457.0','6', '5','5','12056.97', '5','5','8679.19', '2','2','3377.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010603.0','1018890.0','1', '1','1','2169.07', '1','1','2000.0', '1','1','169.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098867.0','1044457.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010604.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098868.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010605.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098869.0','1044457.0','1', '1','1','1116.83', '1','0','0.0', '1','1','1116.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010606.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098870.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010607.0','1018890.0','3', '3','3','21151.88', '3','3','8061.0', '1','1','13090.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098871.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010608.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098872.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010609.0','1018890.0','3', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098873.0','1044457.0','89', '86','64','152124.24', '83','55','122256.15', '64','39','29868.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010610.0','1018890.0','502', '459','329','911300.78', '420','284','765771.62', '280','135','145529.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098874.0','1044457.0','3', '3','2','7200.0', '2','2','7200.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010611.0','1018890.0','371', '340','223','517847.07', '303','162','407778.62', '230','105','110068.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098875.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010612.0','1018890.0','3', '3','3','13841.1', '3','3','6687.0', '3','2','7154.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098876.0','1044457.0','724', '688','555','1277468.3', '660','484','1072523.9', '428','241','204944.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010613.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098877.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010614.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098878.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010615.0','1018890.0','8353', '8071','6930','16969066.72', '7969','6792','15013696.44', '3999','1840','1955370.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098879.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010616.0','1018890.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098880.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010617.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098881.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010618.0','1018890.0','6188', '5797','4703','11622605.34', '5647','4563','10180313.0', '2932','1062','1442292.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098882.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010619.0','1018890.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098883.0','1044457.0','1', '1','1','3110.36', '1','1','3110.36', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010620.0','1018890.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098884.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008572.0','1018890.0','1', '1','1','2141.53', '1','1','2000.0', '1','1','141.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2096836.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2008859.0','1018890.0','1', '1','1','13157.0', '1','1','13157.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2097123.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010621.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098885.0','1044457.0','1', '1','1','738.54', '1','1','738.54', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010622.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098886.0','1044457.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010623.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098887.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010624.0','1018890.0','1', '1','1','2218.89', '1','1','2000.0', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098888.0','1044457.0','1', '1','1','2322.12', '1','1','2000.0', '1','1','322.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010625.0','1018890.0','22', '20','13','40266.65', '18','10','34549.99', '12','5','5716.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098889.0','1044457.0','1', '1','1','3166.83', '1','1','2522.6', '1','1','644.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010626.0','1018890.0','1964', '1816','1379','3305845.19', '1770','1342','2933978.54', '877','243','371866.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098890.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010627.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098891.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010628.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098892.0','1044457.0','4', '4','4','8000.0', '4','4','8000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010629.0','1018890.0','1', '1','1','562.98', '1','1','562.98', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098893.0','1044457.0','1', '1','1','2554.0', '1','1','2554.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010630.0','1018890.0','1', '1','1','5315.61', '1','1','4748.0', '1','1','567.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098894.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010631.0','1018890.0','1', '1','1','3071.0', '1','1','3071.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098895.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010632.0','1018890.0','1', '1','1','3881.25', '0','0','0.0', '1','1','3881.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098896.0','1044457.0','2', '2','2','5405.72', '2','2','4380.0', '2','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010633.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098897.0','1044457.0','2', '2','1','2380.0', '2','1','2380.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010634.0','1018890.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098898.0','1044457.0','9139', '8535','6833','17703379.6', '8328','6658','15744686.16', '4602','1213','1958693.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010635.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098899.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010636.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098900.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010637.0','1018890.0','1', '1','1','2463.0', '1','1','2463.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098901.0','1044457.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010638.0','1018890.0','1', '1','1','5151.88', '1','1','2554.0', '1','1','2597.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098902.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010639.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098903.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010640.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098904.0','1044457.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010641.0','1018890.0','346', '322','234','575452.86', '308','191','509645.87', '195','83','65806.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098905.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010642.0','1018890.0','7', '6','3','5025.72', '4','2','4000.0', '3','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098906.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010643.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098907.0','1044457.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010644.0','1018890.0','8', '7','5','5513.68', '5','4','4706.85', '6','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098908.0','1044457.0','4', '4','4','9206.03', '4','4','8053.3', '4','3','1152.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010645.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098909.0','1044457.0','1', '1','1','6006.83', '1','1','5200.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010646.0','1018890.0','3', '3','2','5842.48', '3','2','5842.48', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098910.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010647.0','1018890.0','345', '306','185','322638.66', '237','118','244853.65', '206','92','77785.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098911.0','1044457.0','2', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010648.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098912.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010649.0','1018890.0','77', '45','11','14051.12', '23','5','9210.14', '34','6','4840.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098913.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010650.0','1018890.0','1933', '1571','580','910990.65', '1210','296','640982.99', '1098','325','270007.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098914.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010651.0','1018890.0','2', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098915.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010652.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098916.0','1044457.0','1', '1','1','13584.52', '1','1','6203.0', '1','1','7381.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010653.0','1018890.0','3', '3','1','2523.49', '2','1','2523.49', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098917.0','1044457.0','121', '84','28','74671.58', '59','20','63291.82', '53','14','11379.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010654.0','1018890.0','2', '2','2','3198.42', '2','2','2391.59', '2','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098918.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010655.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098919.0','1044457.0','510', '437','180','397072.02', '349','128','306352.96', '291','78','90719.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010656.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098920.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010657.0','1018890.0','1', '1','1','1449.17', '1','1','1230.28', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098921.0','1044457.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010658.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098922.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010659.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098923.0','1044457.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010660.0','1018890.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098924.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010661.0','1018890.0','7', '7','6','9633.16', '7','4','6233.88', '6','4','3399.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098925.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010662.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098926.0','1044457.0','2', '2','2','9378.81', '2','2','5139.45', '2','2','4239.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010663.0','1018890.0','1', '1','1','2575.0', '1','1','2575.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098927.0','1044457.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010664.0','1018890.0','50', '38','25','59623.87', '27','18','43926.85', '29','13','15697.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098928.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010665.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098929.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010666.0','1018890.0','4', '3','2','5394.06', '3','2','5130.79', '2','1','263.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098930.0','1044457.0','215', '184','71','106801.96', '144','45','83416.64', '117','29','23385.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010667.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098931.0','1044457.0','4', '3','3','5613.66', '2','2','4000.0', '2','2','1613.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010668.0','1018890.0','780', '711','519','1172762.22', '644','403','943570.18', '484','256','229192.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098932.0','1044457.0','69', '40','14','23874.78', '28','8','19152.0', '19','6','4722.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010669.0','1018890.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098933.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010670.0','1018890.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098934.0','1044457.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010671.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098935.0','1044457.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010672.0','1018890.0','4', '2','2','3025.72', '1','1','2000.0', '2','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098936.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010673.0','1018890.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098937.0','1044457.0','689', '668','575','2123886.85', '658','525','1721218.33', '462','288','402668.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010674.0','1018890.0','1', '1','1','3606.47', '1','1','3387.58', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098938.0','1044457.0','1', '1','1','756.67', '1','0','0.0', '1','1','756.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010675.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098939.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010676.0','1018890.0','4', '3','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098940.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010677.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098941.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010678.0','1018890.0','14', '12','5','8420.49', '12','3','6000.0', '6','3','2420.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098942.0','1044457.0','598', '467','141','240341.29', '379','114','213476.39', '298','37','26864.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010679.0','1018890.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098943.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010680.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098944.0','1044457.0','1', '1','1','7676.0', '1','1','7676.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010681.0','1018890.0','4', '4','3','14578.01', '4','3','13771.18', '2','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098945.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010682.0','1018890.0','646', '585','410','968084.42', '524','327','784625.14', '382','188','183459.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098946.0','1044457.0','1', '1','1','6001.0', '1','1','6001.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010683.0','1018890.0','3', '2','1','198.0', '1','1','198.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098947.0','1044457.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010684.0','1018890.0','2', '2','2','4806.83', '2','2','4000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098948.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010685.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098949.0','1044457.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010686.0','1018890.0','232', '147','55','81303.73', '106','34','62246.53', '97','23','19057.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098950.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010687.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098951.0','1044457.0','2', '2','1','806.83', '0','0','0.0', '2','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010688.0','1018890.0','5516', '4782','3024','6720788.23', '4209','2410','5604334.69', '3011','1196','1116453.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098952.0','1044457.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010689.0','1018890.0','3', '1','1','3453.08', '1','1','3453.08', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098953.0','1044457.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010690.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098954.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010691.0','1018890.0','3', '2','2','2378.76', '2','2','2378.76', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098955.0','1044457.0','1', '1','1','1025.72', '1','0','0.0', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010692.0','1018890.0','626', '569','413','1089221.27', '520','334','870773.38', '408','199','218447.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098956.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010693.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098957.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010694.0','1018890.0','934', '729','351','500057.72', '489','173','317715.45', '516','214','182342.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098958.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010695.0','1018890.0','2', '2','1','191.46', '1','1','191.46', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098959.0','1044457.0','4', '3','2','4000.0', '3','2','4000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010696.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098960.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010697.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098961.0','1044457.0','1071', '861','365','587543.02', '660','206','400028.83', '591','182','187514.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010698.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098962.0','1044457.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010699.0','1018890.0','1885', '1512','668','1127516.61', '1150','381','815725.27', '1013','347','311791.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098963.0','1044457.0','56', '32','9','11827.84', '23','5','8381.63', '17','4','3446.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010700.0','1018890.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098964.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010701.0','1018890.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098965.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010702.0','1018890.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098966.0','1044457.0','8', '7','3','6467.13', '7','2','4264.56', '4','2','2202.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010703.0','1018890.0','13', '13','5','13408.39', '10','4','12561.3', '8','2','847.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098967.0','1044457.0','180', '142','56','136442.41', '124','47','109646.35', '90','18','26796.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010704.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098968.0','1044457.0','4', '4','2','7295.7', '3','2','6039.3', '3','1','1256.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010705.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098969.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010706.0','1018890.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098970.0','1044457.0','2', '2','2','1898.9', '2','2','1092.07', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010707.0','1018890.0','2381', '1975','1036','1890096.84', '1491','633','1392451.38', '1372','538','497645.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098971.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010708.0','1018890.0','1', '1','1','806.83', '0','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098972.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010709.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098973.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010710.0','1018890.0','263', '235','168','343217.72', '211','129','283511.02', '168','78','59706.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098974.0','1044457.0','338', '284','121','221485.42', '211','61','152977.09', '200','74','68508.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010711.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098975.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010712.0','1018890.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098976.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010713.0','1018890.0','8', '8','8','13902.69', '7','6','11482.2', '7','3','2420.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098977.0','1044457.0','1', '1','1','18380.41', '1','1','16523.58', '1','1','1856.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010714.0','1018890.0','10', '8','0','0.0', '4','0','0.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098978.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010715.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098979.0','1044457.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010716.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098980.0','1044457.0','767', '685','517','1353715.45', '627','401','1062330.85', '449','261','291384.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010717.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098981.0','1044457.0','2396', '2187','1650','4354328.05', '2067','1378','3567281.64', '1417','727','787046.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010718.0','1018890.0','2', '1','1','2657.0', '1','1','2657.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098982.0','1044457.0','1', '1','1','2322.12', '1','1','2000.0', '1','1','322.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010719.0','1018890.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098983.0','1044457.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010720.0','1018890.0','2', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098984.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010721.0','1018890.0','10', '10','3','4806.83', '8','2','4000.0', '7','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098985.0','1044457.0','17', '14','5','9486.59', '10','5','9486.59', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010722.0','1018890.0','31', '22','3','4806.83', '12','2','4000.0', '18','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098986.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010723.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098987.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010724.0','1018890.0','3', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098988.0','1044457.0','1', '1','1','550.0', '1','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010725.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098989.0','1044457.0','3', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010726.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098990.0','1044457.0','9', '6','1','2000.0', '3','1','2000.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010727.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098991.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010728.0','1018890.0','25', '14','3','4450.8', '11','3','4450.8', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098992.0','1044457.0','27', '21','8','11700.42', '17','7','10893.59', '12','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010729.0','1018890.0','391', '340','215','354937.6', '269','102','239994.32', '246','143','114943.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098993.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010730.0','1018890.0','1', '1','1','3019.89', '1','1','2801.0', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098994.0','1044457.0','107', '77','32','59149.5', '61','16','40529.58', '55','21','18619.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010731.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098995.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010732.0','1018890.0','209', '175','68','124304.05', '141','40','88743.46', '111','36','35560.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2098996.0','1044457.0','168', '139','54','64134.11', '103','18','36058.96', '84','37','28075.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010733.0','1018890.0','1', '1','1','617.86', '1','1','617.86', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098997.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010734.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098998.0','1044457.0','4', '4','3','6639.38', '4','2','4000.0', '4','3','2639.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010735.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2098999.0','1044457.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010736.0','1018890.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099000.0','1044457.0','370', '340','263','776431.56', '318','222','672132.35', '237','109','104299.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010737.0','1018890.0','1', '1','1','1585.58', '1','1','1585.58', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099001.0','1044457.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010738.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099002.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010739.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2099003.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010740.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099004.0','1044457.0','1273', '1071','596','1041082.83', '885','365','793324.79', '733','310','247758.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010741.0','1018890.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2099005.0','1044457.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010742.0','1018890.0','1084', '861','367','471557.87', '602','165','294840.61', '618','234','176717.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2099006.0','1044457.0','1', '1','1','5134.99', '1','1','4584.99', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010743.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2099007.0','1044457.0','1', '1','1','218.89', '0','0','0.0', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010744.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2099008.0','1044457.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010745.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099009.0','1044457.0','268', '213','90','122755.65', '155','40','78122.1', '129','58','44633.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010746.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099010.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010747.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099011.0','1044457.0','2', '2','2','6983.52', '2','1','5369.86', '2','2','1613.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010748.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2099012.0','1044457.0','724', '630','342','706020.99', '541','268','594127.86', '390','130','111893.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001523.0', '2010749.0','1018890.0','2', '2','1','4510.49', '2','1','3484.77', '2','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005910.0', '2099013.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010750.0','1018890.0','1', '1','1','2857.66', '1','1','2857.66', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099014.0','1044457.0','4', '4','3','7318.0', '4','3','7318.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010751.0','1018890.0','993', '750','296','553286.24', '555','172','404368.67', '508','153','148917.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099015.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010752.0','1018890.0','521', '379','150','241183.42', '283','84','172288.94', '250','81','68894.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099016.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010753.0','1018890.0','2', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099017.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010754.0','1018890.0','1', '1','1','3217.64', '1','1','3217.64', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099018.0','1044457.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010755.0','1018890.0','691', '651','522','1542255.71', '633','474','1319987.83', '445','225','222267.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099019.0','1044457.0','2', '2','1','2424.0', '2','1','2424.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010756.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099020.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010757.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099021.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010758.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099022.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010759.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099023.0','1044457.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010760.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099024.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010761.0','1018890.0','89', '68','39','53991.14', '41','15','30491.5', '53','29','23499.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099025.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010762.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099026.0','1044457.0','311', '278','152','230578.8', '239','94','172526.94', '167','74','58051.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010763.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099027.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010764.0','1018890.0','190', '172','119','311519.83', '163','99','257792.58', '102','43','53727.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099028.0','1044457.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010765.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099029.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010766.0','1018890.0','15329', '14590','12036','32462466.05', '14316','11445','27273718.99', '8642','4069','5188747.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099030.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010767.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099031.0','1044457.0','20', '14','10','16390.06', '13','6','10779.14', '10','7','5610.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010768.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099032.0','1044457.0','42', '40','13','19583.27', '37','7','14684.64', '20','9','4898.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010769.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099033.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010770.0','1018890.0','1', '1','1','439.55', '1','1','220.66', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099034.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010771.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099035.0','1044457.0','2425', '2094','1279','2960288.35', '1822','925','2265093.77', '1369','636','695194.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010772.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099036.0','1044457.0','588', '517','224','440378.08', '458','180','382341.38', '280','58','58036.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010773.0','1018890.0','1', '1','1','3275.13', '1','1','3056.24', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099037.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010774.0','1018890.0','1', '1','1','3025.72', '1','1','2000.0', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099038.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010775.0','1018890.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099039.0','1044457.0','6', '6','0','0.0', '4','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010776.0','1018890.0','1', '1','1','5041.75', '1','1','4234.92', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099040.0','1044457.0','405', '353','145','244419.12', '305','86','174651.07', '215','72','69768.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010777.0','1018890.0','1', '1','1','218.89', '1','0','0.0', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099041.0','1044457.0','1', '1','1','2648.42', '1','1','2000.0', '1','1','648.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010778.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099042.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010779.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099043.0','1044457.0','405', '378','308','861378.98', '370','275','731000.23', '257','125','130378.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010780.0','1018890.0','1', '1','1','2218.89', '1','1','2000.0', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099044.0','1044457.0','32', '30','21','45075.81', '30','17','39947.21', '21','8','5128.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010781.0','1018890.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099045.0','1044457.0','1', '1','1','4111.43', '1','1','4111.43', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010782.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099046.0','1044457.0','2', '2','1','2964.12', '1','1','2352.0', '2','1','612.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010783.0','1018890.0','22', '14','2','4000.0', '12','2','4000.0', '11','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099047.0','1044457.0','1', '1','1','1105.12', '1','1','79.4', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010784.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099048.0','1044457.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010785.0','1018890.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099049.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010786.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099050.0','1044457.0','1', '1','1','1905.98', '1','1','558.14', '1','1','1347.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010787.0','1018890.0','564', '538','446','1386235.15', '521','382','1092843.0', '380','243','293392.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099051.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010788.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099052.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010789.0','1018890.0','1222', '1160','928','2366749.54', '1108','715','1830784.24', '829','530','535965.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099053.0','1044457.0','2', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010790.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099054.0','1044457.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010791.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099055.0','1044457.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010792.0','1018890.0','2', '2','1','283.37', '2','1','283.37', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099056.0','1044457.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010793.0','1018890.0','1', '1','1','381.0', '1','1','381.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099057.0','1044457.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010794.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099058.0','1044457.0','1', '1','1','2218.89', '1','1','2000.0', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010795.0','1018890.0','9', '8','6','28590.44', '7','5','26539.0', '6','3','2051.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099059.0','1044457.0','2', '2','2','4000.0', '2','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2003724.0','1018890.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2091988.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010796.0','1018890.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099060.0','1044457.0','1', '1','1','9118.15', '1','1','4334.9', '1','1','4783.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010797.0','1018890.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099061.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003881.0','1018890.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092145.0','1044457.0','2', '2','1','2000.0', '1','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003895.0','1018890.0','7292', '6242','3196','6529092.29', '5463','2292','5207784.55', '4003','1444','1321307.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092159.0','1044457.0','11', '10','7','19968.7', '8','6','14431.62', '8','4','5537.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010798.0','1018890.0','1', '1','1','2384.0', '1','1','2384.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099062.0','1044457.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010799.0','1018890.0','2198', '1899','1048','1929094.15', '1603','616','1422116.55', '1251','578','506977.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099063.0','1044457.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2003736.0','1018896.0','76', '68','44','95014.05', '65','40','81108.0', '35','13','13906.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2092000.0','1044463.0','791', '732','573','1747480.33', '704','507','1455498.04', '500','247','291982.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010800.0','1018896.0','13703', '13192','11120','31547572.34', '12869','10329','25772251.25', '8124','4510','5775321.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099064.0','1044463.0','7', '7','6','25101.69', '6','5','21985.26', '4','2','3116.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010801.0','1018896.0','4', '3','1','526.54', '3','0','0.0', '1','1','526.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099065.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010802.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099066.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010803.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099067.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010804.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099068.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010805.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099069.0','1044463.0','2', '2','2','5025.72', '2','2','4000.0', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010806.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099070.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2003743.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2092007.0','1044463.0','1', '1','1','538.31', '1','0','0.0', '1','1','538.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010807.0','1018896.0','2', '2','1','2000.0', '1','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099071.0','1044463.0','3', '2','2','3025.72', '2','1','2000.0', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010808.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099072.0','1044463.0','1', '1','1','274.23', '1','1','274.23', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010809.0','1018896.0','1', '1','1','2469.72', '1','1','2469.72', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099073.0','1044463.0','735', '572','233','433786.11', '438','153','350118.31', '382','108','83667.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003896.0','1018896.0','7', '7','6','24155.37', '7','3','14852.0', '4','4','9303.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092160.0','1044463.0','31', '20','3','4806.83', '14','2','4000.0', '13','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010810.0','1018896.0','3', '3','3','3077.16', '2','0','0.0', '3','3','3077.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099074.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003856.0','1018896.0','5', '5','4','10063.5', '4','4','8000.0', '5','3','2063.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092120.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003857.0','1018896.0','23', '21','10','19641.31', '17','4','11689.87', '15','8','7951.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092121.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010811.0','1018896.0','40', '32','18','44585.15', '20','7','23049.07', '26','12','21536.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099075.0','1044463.0','59', '51','36','80993.69', '48','32','67349.07', '32','17','13644.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010812.0','1018896.0','1', '1','1','218.89', '1','0','0.0', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099076.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010813.0','1018896.0','254', '247','209','831964.28', '239','181','627343.51', '183','132','204620.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099077.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010814.0','1018896.0','1', '1','1','2380.0', '1','1','2380.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099078.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010815.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099079.0','1044463.0','354', '301','164','290513.21', '257','110','232675.87', '210','71','57837.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003778.0','1018896.0','5', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092042.0','1044463.0','27', '25','15','34414.64', '21','9','29987.48', '22','7','4427.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010816.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099080.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010817.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099081.0','1044463.0','11', '7','3','4806.83', '6','2','4000.0', '4','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002324.0','1018896.0','2', '2','2','1202.36', '2','1','176.64', '2','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090588.0','1044463.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010818.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099082.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003850.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092114.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002328.0','1018896.0','149', '104','31','42169.59', '62','15','28193.99', '69','18','13975.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090592.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002261.0','1018896.0','138', '115','52','67718.26', '84','22','42910.12', '77','32','24808.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090525.0','1044463.0','77', '55','23','26414.14', '29','9','14568.52', '40','15','11845.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010819.0','1018896.0','1603', '1326','555','824414.1', '1023','282','576765.71', '920','310','247648.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099083.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004122.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092386.0','1044463.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002273.0','1018896.0','156', '146','112','343826.3', '138','89','265331.22', '107','65','78495.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090537.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004034.0','1018896.0','1', '1','1','3025.72', '1','1','2000.0', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092298.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004302.0','1018896.0','2', '2','2','11019.99', '2','2','2903.0', '2','2','8116.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092566.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010820.0','1018896.0','1', '1','1','554.0', '1','1','554.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099084.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002589.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090853.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002570.0','1018896.0','3', '2','2','2757.74', '1','1','2000.0', '1','1','757.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090834.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010821.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099085.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010822.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099086.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010823.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099087.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003782.0','1018896.0','4', '4','3','7593.07', '4','3','6070.0', '3','1','1523.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092046.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010824.0','1018896.0','1', '1','1','5552.0', '1','1','5552.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099088.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003725.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091989.0','1044463.0','3', '3','3','8088.92', '3','3','6000.0', '2','2','2088.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003882.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092146.0','1044463.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010825.0','1018896.0','1', '1','1','2687.0', '1','1','2687.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099089.0','1044463.0','1', '1','1','2497.94', '1','1','2000.0', '1','1','497.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010826.0','1018896.0','3', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099090.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003738.0','1018896.0','30', '27','16','35661.18', '26','13','30707.03', '16','7','4954.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092002.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010827.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099091.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010828.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099092.0','1044463.0','13', '9','4','3682.57', '6','1','274.3', '7','4','3408.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010829.0','1018896.0','1', '1','1','1765.0', '1','1','1310.4', '1','1','454.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099093.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010830.0','1018896.0','19', '13','3','4806.83', '6','2','4000.0', '10','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099094.0','1044463.0','2', '2','2','7356.0', '2','2','7137.11', '2','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010831.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099095.0','1044463.0','4567', '4398','3775','9113100.53', '4333','3590','7771180.75', '2449','1386','1341919.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003741.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092005.0','1044463.0','506', '480','409','1109487.79', '470','380','926076.52', '320','181','183411.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010832.0','1018896.0','145', '140','116','363943.17', '135','95','281884.37', '107','73','82058.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099096.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010833.0','1018896.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099097.0','1044463.0','2', '2','1','856.48', '1','0','0.0', '2','1','856.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010834.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099098.0','1044463.0','2', '2','2','5244.56', '2','2','4218.84', '2','2','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010835.0','1018896.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099099.0','1044463.0','1', '1','1','3025.72', '1','1','2000.0', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003735.0','1018896.0','3', '3','2','4000.0', '3','2','4000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091999.0','1044463.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003764.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092028.0','1044463.0','2', '2','1','3040.95', '2','1','2234.12', '2','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010836.0','1018896.0','3', '3','2','4463.0', '3','2','4463.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099100.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010837.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099101.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004115.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092379.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010838.0','1018896.0','4', '2','1','2000.0', '1','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099102.0','1044463.0','1', '1','1','2476.0', '1','1','2476.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002305.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090569.0','1044463.0','1', '1','1','2859.0', '1','1','2859.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004114.0','1018896.0','1', '1','1','3025.72', '1','1','2000.0', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092378.0','1044463.0','2', '2','2','12687.76', '2','2','12687.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010839.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099103.0','1044463.0','1', '1','1','2218.89', '1','1','2000.0', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010840.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099104.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004202.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092466.0','1044463.0','1', '1','1','2463.0', '1','1','2463.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004270.0','1018896.0','1', '1','1','5662.61', '1','1','5662.61', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092534.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002465.0','1018896.0','16', '14','8','10253.04', '14','3','6000.0', '11','5','4253.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090729.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002828.0','1018896.0','1', '1','1','6065.86', '1','1','5453.74', '1','1','612.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091092.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002571.0','1018896.0','1', '1','1','323.66', '1','0','0.0', '1','1','323.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090835.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004462.0','1018896.0','1', '1','1','2802.09', '1','1','2000.0', '1','1','802.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092726.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010841.0','1018896.0','194', '189','161','458453.12', '184','149','383245.03', '100','60','75208.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099105.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010842.0','1018896.0','134', '116','78','147826.22', '99','49','114258.76', '79','40','33567.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099106.0','1044463.0','9866', '9519','8003','22135250.89', '9335','7365','18126894.86', '6142','3747','4008356.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010843.0','1018896.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099107.0','1044463.0','55', '49','43','133278.83', '46','39','116871.3', '30','17','16407.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003733.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091997.0','1044463.0','1', '1','1','2562.07', '1','1','1755.24', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010844.0','1018896.0','148', '133','74','183321.62', '117','64','165106.0', '95','18','18215.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099108.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010845.0','1018896.0','3', '3','2','5832.55', '3','2','4000.0', '2','2','1832.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099109.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003883.0','1018896.0','1', '1','1','2456.0', '1','1','2456.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092147.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003756.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092020.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010846.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099110.0','1044463.0','1', '1','1','7200.0', '1','1','7200.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010847.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099111.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002293.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090557.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010848.0','1018896.0','50', '40','31','51889.28', '35','20','39348.74', '26','16','12540.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099112.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010849.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099113.0','1044463.0','180', '147','39','61457.47', '125','22','45799.85', '82','18','15657.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003753.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092017.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010850.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099114.0','1044463.0','541', '468','264','413906.99', '347','150','300268.87', '343','142','113638.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010851.0','1018896.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099115.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010852.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099116.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2003870.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2092134.0','1044463.0','17', '15','4','5469.53', '14','3','4662.7', '5','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003794.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092058.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010853.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099117.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010854.0','1018896.0','1', '1','1','10852.89', '1','1','2687.0', '1','1','8165.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099118.0','1044463.0','47', '44','36','106249.6', '43','35','94365.78', '28','11','11883.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003798.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092062.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003845.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092109.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003818.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092082.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010855.0','1018896.0','3', '3','2','1613.66', '3','0','0.0', '3','2','1613.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099119.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010856.0','1018896.0','3', '2','1','7842.89', '2','1','7624.0', '2','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099120.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003844.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092108.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003726.0','1018896.0','2', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091990.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003854.0','1018896.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092118.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003908.0','1018896.0','67', '54','35','86876.91', '43','28','73639.4', '37','15','13237.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092172.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003728.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091992.0','1044463.0','6', '6','5','16412.37', '6','5','12413.72', '6','3','3998.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010857.0','1018896.0','139', '109','36','73493.2', '79','22','54828.31', '56','19','18664.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099121.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003727.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091991.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010858.0','1018896.0','1', '1','1','687.58', '0','0','0.0', '1','1','687.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099122.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010859.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099123.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002313.0','1018896.0','1', '1','1','515.16', '1','1','515.16', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090577.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003755.0','1018896.0','4164', '3764','2811','7800012.75', '3510','2263','6162785.85', '2580','1385','1637226.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092019.0','1044463.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003910.0','1018896.0','2', '2','1','5802.89', '2','1','5584.0', '2','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092174.0','1044463.0','1', '1','1','1299.96', '1','0','0.0', '1','1','1299.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010860.0','1018896.0','1', '1','1','7584.0', '1','1','7584.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099124.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003864.0','1018896.0','615', '548','294','628339.01', '477','198','485226.23', '352','144','143112.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092128.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010861.0','1018896.0','1', '1','1','2871.92', '1','1','2871.92', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099125.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004073.0','1018896.0','2', '2','1','806.83', '2','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092337.0','1044463.0','15', '12','7','13356.83', '12','6','12000.0', '9','2','1356.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003917.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092181.0','1044463.0','1', '1','1','16447.32', '1','1','12985.0', '1','1','3462.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010862.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099126.0','1044463.0','1', '1','1','1614.98', '1','1','1614.98', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003791.0','1018896.0','1', '1','1','1164.5', '1','1','1164.5', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092055.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003985.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092249.0','1044463.0','1', '1','1','3832.0', '1','1','3832.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010863.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099127.0','1044463.0','1', '1','1','806.83', '0','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003740.0','1018896.0','1143', '940','306','441347.09', '782','179','312907.74', '550','144','128439.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092004.0','1044463.0','2', '2','1','2806.83', '2','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010864.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099128.0','1044463.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002263.0','1018896.0','1', '1','1','757.88', '1','1','757.88', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090527.0','1044463.0','2', '2','2','9658.0', '2','2','9658.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010865.0','1018896.0','44', '42','35','104163.28', '38','27','88358.11', '32','19','15805.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099129.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010866.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099130.0','1044463.0','1', '1','1','7876.89', '1','1','7658.0', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002319.0','1018896.0','664', '531','269','388441.54', '405','136','266677.44', '339','154','121764.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090583.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010867.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099131.0','1044463.0','2', '2','2','4000.0', '2','2','4000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002289.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090553.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010868.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099132.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002309.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090573.0','1044463.0','1', '1','1','1361.51', '1','1','1361.51', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010869.0','1018896.0','25', '22','8','12980.95', '16','7','11318.98', '18','3','1661.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099133.0','1044463.0','187', '160','80','153098.33', '128','53','115961.28', '105','38','37137.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004035.0','1018896.0','13', '10','3','4806.83', '10','2','4000.0', '3','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092299.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010870.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099134.0','1044463.0','53', '45','18','19683.36', '40','5','10000.0', '25','13','9683.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010871.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099135.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001524.0', '2010872.0','1018896.0','1', '1','1','2821.41', '1','1','2000.0', '1','1','821.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005911.0', '2099136.0','1044463.0','1', '1','1','1025.72', '1','0','0.0', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004241.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092505.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010873.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099137.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002446.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090710.0','1044463.0','242', '207','102','160988.03', '173','51','109611.85', '127','63','51376.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002316.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090580.0','1044463.0','3', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002611.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090875.0','1044463.0','1', '1','1','1025.72', '1','0','0.0', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003862.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092126.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010874.0','1018896.0','5', '4','3','8960.04', '4','3','8960.04', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099138.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004151.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092415.0','1044463.0','741', '648','351','628172.27', '545','217','479301.82', '450','172','148870.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004116.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092380.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004011.0','1018896.0','4', '4','4','8000.0', '4','4','8000.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092275.0','1044463.0','1', '1','1','1674.99', '1','1','1674.99', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010875.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099139.0','1044463.0','1199', '1081','802','2281524.77', '1014','623','1716734.43', '735','448','564790.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002318.0','1018896.0','1', '1','1','2383.89', '1','1','2165.0', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090582.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004013.0','1018896.0','1', '1','1','7200.0', '1','1','7200.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092277.0','1044463.0','1', '1','1','2806.83', '1','1','2000.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010876.0','1018896.0','36', '30','16','27220.77', '26','8','17842.64', '22','10','9378.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099140.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002347.0','1018896.0','3', '3','0','0.0', '2','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090611.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002471.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090735.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010877.0','1018896.0','7', '6','3','3613.66', '5','1','2000.0', '4','2','1613.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099141.0','1044463.0','761', '577','217','362170.52', '433','139','285743.74', '389','89','76426.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004244.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092508.0','1044463.0','1011', '789','304','466597.7', '654','203','374891.23', '472','119','91706.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010878.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099142.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004251.0','1018896.0','3', '3','1','3025.72', '3','1','2000.0', '2','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092515.0','1044463.0','5', '5','1','799.0', '5','0','0.0', '4','1','799.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003906.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092170.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004242.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092506.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010879.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099143.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002590.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090854.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010880.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099144.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004267.0','1018896.0','1657', '1431','732','1567662.47', '1245','500','1243155.76', '909','343','324506.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092531.0','1044463.0','4', '4','2','13725.42', '4','2','13725.42', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010881.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099145.0','1044463.0','340', '310','229','432398.19', '276','127','274961.61', '224','160','157436.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003879.0','1018896.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092143.0','1044463.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004175.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092439.0','1044463.0','3', '3','2','8673.16', '2','1','5581.0', '2','2','3092.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010882.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099146.0','1044463.0','808', '770','636','2160749.26', '738','562','1768734.51', '569','356','392014.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003765.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092029.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003872.0','1018896.0','1333', '1097','517','1087515.66', '922','368','858739.14', '718','216','228776.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092136.0','1044463.0','3', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003849.0','1018896.0','1', '1','1','4999.07', '1','1','4780.18', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092113.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010883.0','1018896.0','4', '4','3','5047.69', '4','2','4240.86', '3','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099147.0','1044463.0','2', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004057.0','1018896.0','2', '1','1','4520.53', '1','1','4134.0', '1','1','386.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092321.0','1044463.0','1', '1','1','1025.72', '1','0','0.0', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003746.0','1018896.0','126', '110','80','164290.21', '88','50','112139.32', '90','53','52150.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092010.0','1044463.0','1', '1','1','806.83', '0','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003884.0','1018896.0','1', '1','1','2424.0', '1','1','2424.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092148.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010884.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099148.0','1044463.0','288', '243','99','167680.79', '197','54','127486.66', '148','51','40194.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003832.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092096.0','1044463.0','1', '1','1','11119.59', '1','1','7790.0', '1','1','3329.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010885.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099149.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010886.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099150.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010887.0','1018896.0','2', '1','1','806.83', '0','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099151.0','1044463.0','1', '1','1','3290.08', '1','1','2483.25', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010888.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099152.0','1044463.0','3', '3','2','5853.69', '3','2','5853.69', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003903.0','1018896.0','49', '40','23','33638.72', '34','13','25156.2', '28','11','8482.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092167.0','1044463.0','4', '3','2','4000.0', '3','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003747.0','1018896.0','2', '2','1','12958.0', '2','1','12958.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092011.0','1044463.0','1', '1','1','218.89', '1','0','0.0', '1','1','218.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010889.0','1018896.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099153.0','1044463.0','2', '2','1','806.83', '1','0','0.0', '2','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002288.0','1018896.0','1', '1','1','1025.72', '1','0','0.0', '1','1','1025.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090552.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003777.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092041.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010890.0','1018896.0','3', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099154.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004216.0','1018896.0','1', '1','1','3837.03', '1','1','3837.03', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092480.0','1044463.0','120', '108','53','91185.09', '81','35','70850.64', '76','27','20334.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010891.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099155.0','1044463.0','7', '4','2','2806.83', '4','1','2000.0', '2','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010892.0','1018896.0','632', '536','395','824227.07', '472','280','620644.4', '371','211','203582.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099156.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010893.0','1018896.0','1381', '1171','511','844712.34', '1012','317','632807.35', '705','271','211904.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099157.0','1044463.0','1', '1','1','25195.82', '1','1','12958.0', '1','1','12237.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010894.0','1018896.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099158.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010895.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099159.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010896.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099160.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004094.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092358.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002275.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090539.0','1044463.0','1', '1','1','1252.25', '1','1','381.26', '1','1','870.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002277.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090541.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010897.0','1018896.0','90', '85','66','138558.59', '80','49','105270.77', '56','38','33287.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099161.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002304.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090568.0','1044463.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002543.0','1018896.0','1', '1','1','806.83', '0','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090807.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004172.0','1018896.0','1362', '1086','531','863947.98', '871','325','640383.8', '713','273','223564.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092436.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004292.0','1018896.0','1', '1','1','2344.43', '1','1','2000.0', '1','1','344.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092556.0','1044463.0','1', '1','1','12663.32', '1','1','7658.0', '1','1','5005.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002533.0','1018896.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090797.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004293.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092557.0','1044463.0','336', '296','140','286427.73', '265','105','237957.5', '169','56','48470.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002365.0','1018896.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090629.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002592.0','1018896.0','212', '187','81','140345.46', '161','55','112317.33', '124','36','28028.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090856.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003752.0','1018896.0','54', '46','30','65620.27', '38','24','57577.11', '29','10','8043.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092016.0','1044463.0','34', '30','7','16784.42', '29','7','16075.34', '14','1','709.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010898.0','1018896.0','160', '139','67','154152.97', '128','51','133007.66', '65','27','21145.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099162.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010899.0','1018896.0','240', '220','109','231992.67', '196','87','200828.7', '135','36','31163.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099163.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003761.0','1018896.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092025.0','1044463.0','3', '3','1','2000.0', '3','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010900.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099164.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010901.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099165.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010902.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099166.0','1044463.0','9', '9','7','16131.34', '9','7','13320.0', '6','1','2811.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010903.0','1018896.0','3', '3','2','2352.0', '3','2','2352.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099167.0','1044463.0','425', '371','129','256278.54', '330','105','222260.97', '195','35','34017.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003786.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092050.0','1044463.0','22', '18','6','15745.98', '14','6','14523.37', '11','1','1222.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003921.0','1018896.0','1058', '950','445','985067.96', '882','343','820014.76', '529','185','165053.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092185.0','1044463.0','1', '1','1','25600.0', '1','1','13970.0', '1','1','11630.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002259.0','1018896.0','1', '1','1','3408.0', '1','1','3408.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090523.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010904.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099168.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010905.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099169.0','1044463.0','157', '143','67','175317.63', '136','62','124676.26', '76','18','50641.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002550.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090814.0','1044463.0','2', '2','2','2791.4', '2','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002279.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090543.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004212.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092476.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002299.0','1018896.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090563.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010906.0','1018896.0','65', '55','27','44786.34', '49','15','33859.77', '35','15','10926.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099170.0','1044463.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004134.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092398.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004236.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092500.0','1044463.0','764', '688','360','1042803.17', '646','310','856217.81', '397','121','186585.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004248.0','1018896.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092512.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002475.0','1018896.0','105', '100','59','118981.88', '87','45','99932.65', '54','28','19049.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090739.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002547.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090811.0','1044463.0','1', '1','1','2791.4', '1','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002477.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090741.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002456.0','1018896.0','10', '9','8','15804.91', '8','7','12491.27', '5','3','3313.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090720.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002548.0','1018896.0','1', '1','1','2552.12', '1','1','2297.74', '1','1','254.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090812.0','1044463.0','4', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002457.0','1018896.0','28', '22','8','13691.91', '20','6','10303.33', '10','3','3388.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090721.0','1044463.0','1110', '996','371','784992.69', '944','324','672342.8', '552','95','112649.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010907.0','1018896.0','4', '4','3','7486.65', '4','3','6264.04', '3','1','1222.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099171.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010908.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099172.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002859.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091123.0','1044463.0','184', '161','59','118671.12', '150','52','108699.11', '81','12','9972.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010909.0','1018896.0','9', '7','5','5113.13', '6','4','3667.21', '3','2','1445.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099173.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004398.0','1018896.0','2', '2','1','1187.21', '2','1','1187.21', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092662.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010910.0','1018896.0','327', '299','175','378101.35', '278','143','317899.16', '163','48','60202.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099174.0','1044463.0','518', '429','257','679840.22', '368','202','561128.41', '284','97','118711.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002349.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090613.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002321.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090585.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003923.0','1018896.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092187.0','1044463.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010911.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099175.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002323.0','1018896.0','1', '1','1','806.83', '1','0','0.0', '1','1','806.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090587.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002278.0','1018896.0','28', '24','11','24090.68', '23','9','21524.34', '17','3','2566.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090542.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004157.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092421.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002290.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090554.0','1044463.0','1', '1','1','2760.0', '1','1','2760.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010912.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099176.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010913.0','1018896.0','3', '3','3','6880.0', '3','3','6880.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099177.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002310.0','1018896.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090574.0','1044463.0','3', '3','1','2000.0', '3','1','2000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010914.0','1018896.0','5048', '4483','2214','4896411.97', '4181','1780','3839139.53', '2824','894','1057272.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099178.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004199.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092463.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010915.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099179.0','1044463.0','1', '1','1','5812.23', '1','1','5298.33', '1','1','513.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004250.0','1018896.0','85', '74','19','38093.52', '71','17','31608.75', '49','3','6484.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092514.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004254.0','1018896.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092518.0','1044463.0','1', '1','1','5234.17', '1','0','0.0', '1','1','5234.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002359.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090623.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002546.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090810.0','1044463.0','299', '271','178','446119.55', '242','148','369872.39', '181','75','76247.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002569.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090833.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002568.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090832.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002528.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090792.0','1044463.0','379', '354','260','682783.67', '325','228','571802.36', '229','98','110981.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002455.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090719.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004235.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092499.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002549.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090813.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010916.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099180.0','1044463.0','12', '11','5','10789.16', '9','5','10789.16', '11','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004317.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092581.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002484.0','1018896.0','1', '1','1','17791.17', '1','1','8148.0', '1','1','9643.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090748.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004371.0','1018896.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092635.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002708.0','1018896.0','1', '1','1','980.0', '1','1','980.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090972.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002276.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090540.0','1044463.0','1', '1','1','1006.1', '1','0','0.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002364.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090628.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010917.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099181.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002494.0','1018896.0','692', '640','268','706020.14', '607','238','573911.3', '431','79','132108.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090758.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004291.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092555.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010918.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099182.0','1044463.0','2705', '2456','1681','3821215.21', '2313','1438','3250163.85', '1436','589','571051.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010919.0','1018896.0','2399', '2175','1007','3020320.83', '2054','869','2480714.76', '1284','358','539606.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099183.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004453.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092717.0','1044463.0','167', '154','126','334449.71', '152','113','286497.86', '98','49','47951.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004660.0','1018896.0','341', '292','150','285513.11', '263','129','248917.2', '173','47','36595.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092924.0','1044463.0','5', '4','2','4880.0', '4','2','4880.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010920.0','1018896.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099184.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010921.0','1018896.0','1325', '1169','669','1381985.57', '1070','564','1214565.79', '679','193','167419.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099185.0','1044463.0','3', '3','2','4000.0', '3','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002673.0','1018896.0','1', '1','1','194.6', '1','1','194.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090937.0','1044463.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010922.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099186.0','1044463.0','2', '2','2','4249.64', '2','2','4000.0', '1','1','249.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002287.0','1018896.0','49', '38','25','69254.0', '36','22','57903.74', '23','14','11350.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090551.0','1044463.0','161', '142','113','323589.5', '133','104','301760.68', '88','31','21828.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010923.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099187.0','1044463.0','5', '4','0','0.0', '4','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003991.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092255.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002322.0','1018896.0','1', '1','1','2753.8', '1','1','2000.0', '1','1','753.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090586.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010924.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099188.0','1044463.0','131', '117','70','140145.97', '98','53','112420.6', '81','28','27725.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002270.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090534.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010925.0','1018896.0','222', '191','67','107491.74', '156','43','80032.99', '123','30','27458.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099189.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002415.0','1018896.0','1', '1','1','7610.54', '1','1','6562.44', '1','1','1048.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090679.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003981.0','1018896.0','2', '2','1','2000.0', '1','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092245.0','1044463.0','2', '2','2','5613.77', '2','2','5613.77', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004173.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092437.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004243.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092507.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004113.0','1018896.0','7', '6','4','32903.4', '6','4','20347.0', '3','2','12556.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092377.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010926.0','1018896.0','5', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004237.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092501.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002454.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090718.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010927.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099191.0','1044463.0','1', '1','1','3508.75', '1','1','3508.75', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002891.0','1018896.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091155.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002506.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090770.0','1044463.0','5', '5','3','12288.35', '5','3','12288.35', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010928.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099192.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010929.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099193.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004307.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092571.0','1044463.0','1', '1','1','3006.1', '1','1','2000.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002466.0','1018896.0','1', '1','1','16221.74', '1','1','8535.0', '1','1','7686.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090730.0','1044463.0','1', '1','1','2445.0', '1','1','2445.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004300.0','1018896.0','8540', '8194','6794','17111933.61', '8022','6380','14762293.38', '4632','2468','2349640.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092564.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004298.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092562.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004333.0','1018896.0','1', '1','1','4500.0', '0','0','0.0', '1','1','4500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092597.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004014.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092278.0','1044463.0','1', '1','1','2214.7', '1','1','2000.0', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010930.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099194.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010931.0','1018896.0','14', '13','9','49227.34', '13','9','46688.84', '5','1','2538.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099195.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010932.0','1018896.0','17', '17','13','29144.14', '17','12','25763.84', '8','4','3380.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099196.0','1044463.0','1', '1','1','4951.36', '1','1','4951.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010933.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099197.0','1044463.0','740', '604','233','518347.33', '536','192','420257.43', '349','69','98089.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010934.0','1018896.0','1', '1','1','3084.0', '1','1','3084.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099198.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010935.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099199.0','1044463.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010936.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099200.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002344.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090608.0','1044463.0','1', '1','1','20256.84', '1','1','6391.0', '1','1','13865.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004234.0','1018896.0','5', '4','4','5561.47', '4','4','4864.0', '3','1','697.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092498.0','1044463.0','1', '1','1','2628.11', '1','1','1836.71', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004108.0','1018896.0','5', '5','1','2214.7', '5','1','2000.0', '3','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092372.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004273.0','1018896.0','2', '1','1','8826.0', '1','1','8826.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092537.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010937.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099201.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004276.0','1018896.0','2', '2','2','9458.81', '2','2','9458.81', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092540.0','1044463.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002452.0','1018896.0','5', '5','3','16765.09', '5','3','8224.0', '2','1','8541.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090716.0','1044463.0','81', '76','37','94485.11', '72','33','74765.12', '47','18','19719.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002386.0','1018896.0','1', '1','1','1808.55', '1','1','1808.55', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090650.0','1044463.0','9', '7','1','6604.0', '6','1','6604.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002882.0','1018896.0','3473', '3302','2773','9029993.76', '3246','2631','7562580.6', '2060','1007','1467413.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091146.0','1044463.0','10342', '9317','4775','16731073.36', '8773','4268','12434298.74', '5814','1470','4296774.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002388.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090652.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010938.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099202.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010939.0','1018896.0','2711', '2288','1121','2049376.65', '2038','871','1692263.5', '1393','424','357113.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099203.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002884.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091148.0','1044463.0','3', '3','3','6000.0', '3','3','6000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002422.0','1018896.0','68', '62','18','58488.92', '54','13','40559.8', '41','9','17929.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090686.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010940.0','1018896.0','276', '253','180','485046.64', '235','151','402148.87', '150','78','82897.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099204.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004318.0','1018896.0','2', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092582.0','1044463.0','240', '228','166','473317.04', '223','154','409808.95', '133','51','63508.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002886.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091150.0','1044463.0','1', '1','1','14268.77', '1','1','890.0', '1','1','13378.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002665.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090929.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004269.0','1018896.0','1', '1','1','3006.1', '1','1','2000.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092533.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004441.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092705.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010941.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099205.0','1044463.0','1', '1','1','1404.93', '1','0','0.0', '1','1','1404.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004386.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092650.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002280.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090544.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004359.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092623.0','1044463.0','728', '661','242','563038.28', '568','181','433381.3', '385','101','129656.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002330.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090594.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010942.0','1018896.0','3', '3','3','4221.6', '3','3','4221.6', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099206.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004069.0','1018896.0','1', '1','1','8050.78', '1','1','6702.95', '1','1','1347.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092333.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004239.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092503.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002325.0','1018896.0','1', '1','1','3101.77', '1','1','3101.77', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090589.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004312.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092576.0','1044463.0','23', '19','13','44249.4', '17','13','36135.0', '10','3','8114.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002542.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090806.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002535.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090799.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004063.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092327.0','1044463.0','1', '1','1','4500.0', '1','0','0.0', '1','1','4500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002857.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091121.0','1044463.0','1', '1','1','1437.12', '1','1','1437.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004272.0','1018896.0','10', '8','3','5321.0', '7','3','4529.6', '4','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092536.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010943.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099207.0','1044463.0','2', '2','2','2791.4', '2','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002489.0','1018896.0','5', '5','2','5434.0', '5','2','5434.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090753.0','1044463.0','2', '1','1','2791.4', '1','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002892.0','1018896.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091156.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002453.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090717.0','1044463.0','3', '3','3','24576.87', '3','3','12535.0', '3','1','12041.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004361.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092625.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002851.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091115.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004424.0','1018896.0','1405', '1297','885','1939554.5', '1190','696','1593464.33', '823','397','346090.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092688.0','1044463.0','1', '1','1','3084.0', '1','1','3084.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004369.0','1018896.0','2', '1','1','5274.66', '1','1','890.0', '1','1','4384.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092633.0','1044463.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004320.0','1018896.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092584.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010944.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099208.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004321.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092585.0','1044463.0','1', '1','1','2712.0', '1','1','2712.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004299.0','1018896.0','9460', '8463','5457','12121785.53', '7735','4234','9867764.55', '5084','2366','2254020.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092563.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004323.0','1018896.0','5', '5','4','9509.1', '5','3','8503.0', '5','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092587.0','1044463.0','45', '42','37','107311.37', '39','33','86788.55', '27','18','20522.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002743.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091007.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004613.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092877.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010945.0','1018896.0','6', '5','5','11590.81', '5','5','10000.0', '5','3','1590.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099209.0','1044463.0','17183', '16400','13835','35995204.37', '16156','13398','31321512.63', '8147','3636','4673691.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010946.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099210.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010947.0','1018896.0','3', '3','3','11326.4', '3','3','10535.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099211.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004335.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092599.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002397.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090661.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004324.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092588.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002348.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090612.0','1044463.0','3757', '3572','2882','7688205.27', '3489','2673','6720024.21', '2131','1022','968181.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010948.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099212.0','1044463.0','1', '1','1','6792.93', '1','1','6792.93', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002345.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090609.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004328.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092592.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010949.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099213.0','1044463.0','165', '156','133','386379.94', '151','122','332918.16', '92','43','53461.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010950.0','1018896.0','1', '1','1','18883.61', '1','1','2542.0', '1','1','16341.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099214.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010951.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099215.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004006.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092270.0','1044463.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004408.0','1018896.0','6', '5','1','7887.66', '4','1','6665.02', '4','1','1222.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092672.0','1044463.0','1', '1','1','1882.8', '1','1','1882.8', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010952.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099216.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002295.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090559.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004274.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092538.0','1044463.0','2', '2','1','22767.04', '2','1','13568.0', '2','1','9199.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004072.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092336.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010953.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099217.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004410.0','1018896.0','14', '13','12','34066.55', '13','12','33275.15', '6','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092674.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002756.0','1018896.0','1', '1','1','890.0', '1','1','890.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091020.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010954.0','1018896.0','68', '62','46','113871.02', '57','45','105790.57', '29','6','8080.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099218.0','1044463.0','1', '1','1','2791.4', '1','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010955.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099219.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004397.0','1018896.0','1', '1','1','2890.0', '1','1','2890.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092661.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010956.0','1018896.0','43', '35','30','80577.74', '34','30','65332.94', '14','8','15244.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099220.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004450.0','1018896.0','3', '3','2','5388.67', '3','2','4225.0', '2','1','1163.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092714.0','1044463.0','111', '107','84','236926.42', '103','75','198523.68', '81','43','38402.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010957.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099221.0','1044463.0','1', '1','1','3792.08', '1','1','3180.76', '1','1','611.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004017.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092281.0','1044463.0','123', '117','89','252765.1', '111','73','208284.4', '79','49','44480.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002706.0','1018896.0','4', '4','3','7006.01', '4','3','6000.0', '3','1','1006.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090970.0','1044463.0','663', '638','522','1522468.7', '620','466','1266760.73', '450','255','255707.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010958.0','1018896.0','3', '3','3','30684.6', '3','3','17735.0', '3','2','12949.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099222.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002464.0','1018896.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090728.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003984.0','1018896.0','7507', '7138','5826','16863384.24', '7006','5536','14582176.88', '3952','1568','2281207.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092248.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002591.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090855.0','1044463.0','24266', '22854','18203','46986222.76', '22440','17865','42910929.49', '11817','3031','4075293.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004311.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092575.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002539.0','1018896.0','1', '1','1','2145.9', '1','1','2145.9', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090803.0','1044463.0','2', '2','2','2851.25', '2','2','2851.25', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004258.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092522.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004265.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092529.0','1044463.0','1644', '1565','1274','3522927.22', '1531','1154','2991950.03', '959','545','530977.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002389.0','1018896.0','1', '1','1','16711.41', '1','1','2804.0', '1','1','13907.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090653.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002856.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091120.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004363.0','1018896.0','1', '1','1','2214.7', '1','1','2000.0', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092627.0','1044463.0','1', '1','1','3006.1', '1','1','2000.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010959.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099223.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004065.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092329.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002262.0','1018896.0','1', '1','1','890.0', '1','1','890.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090526.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002315.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090579.0','1044463.0','3', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002298.0','1018896.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090562.0','1044463.0','3346', '3208','2635','7215056.8', '3162','2462','6189436.16', '1840','904','1025620.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002283.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090547.0','1044463.0','78', '64','37','86441.12', '59','36','76001.75', '36','5','10439.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004184.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092448.0','1044463.0','1', '1','1','890.0', '1','1','890.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010960.0','1018896.0','5', '5','1','1159.77', '5','1','624.72', '2','1','535.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099224.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002451.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090715.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002889.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091153.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010961.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099225.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002473.0','1018896.0','2', '2','2','2791.4', '2','1','2000.0', '2','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090737.0','1044463.0','4', '4','2','5148.46', '4','2','5148.46', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002306.0','1018896.0','160', '144','100','212712.28', '129','80','182327.7', '98','43','30384.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090570.0','1044463.0','3', '3','3','15560.14', '3','3','11650.0', '2','2','3910.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004464.0','1018896.0','430', '409','347','1224685.41', '404','324','973223.2', '260','154','251462.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092728.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010962.0','1018896.0','4', '3','2','4000.0', '3','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099226.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010963.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099227.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004222.0','1018896.0','131', '121','84','167802.39', '109','57','133131.17', '81','47','34671.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092486.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004310.0','1018896.0','917', '825','336','705627.23', '751','256','608101.64', '483','119','97525.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092574.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010964.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099228.0','1044463.0','4', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010965.0','1018896.0','1', '1','1','3084.0', '1','1','3084.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099229.0','1044463.0','1', '1','1','14876.38', '1','1','6268.0', '1','1','8608.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004249.0','1018896.0','1', '1','1','15693.54', '1','1','10609.26', '1','1','5084.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092513.0','1044463.0','1', '1','1','3580.1', '1','1','3580.1', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002537.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090801.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002526.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090790.0','1044463.0','2', '2','2','28200.0', '2','2','15835.0', '1','1','12365.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004314.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092578.0','1044463.0','2', '2','1','4982.19', '2','1','2890.0', '2','1','2092.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002390.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090654.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004290.0','1018896.0','13744', '13193','11124','33180725.76', '13036','10921','28541640.36', '6897','2657','4639085.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092554.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010966.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099230.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002366.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090630.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004283.0','1018896.0','1', '1','1','2846.7', '1','1','2632.0', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092547.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004437.0','1018896.0','1', '1','1','2144.29', '1','1','2000.0', '1','1','144.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092701.0','1044463.0','3', '3','2','4094.76', '3','2','4094.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002823.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091087.0','1044463.0','1', '1','1','5619.95', '1','1','4613.85', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004384.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092648.0','1044463.0','4', '3','1','2000.0', '3','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003758.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092022.0','1044463.0','1284', '1239','1047','3919674.53', '1219','975','3238879.78', '868','502','680794.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010967.0','1018896.0','6', '6','4','6115.68', '5','4','6115.68', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099231.0','1044463.0','5', '5','5','13441.01', '5','5','8222.0', '2','1','5219.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010968.0','1018896.0','5', '4','3','6000.0', '4','3','6000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099232.0','1044463.0','1', '1','1','9832.1', '1','1','8826.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004431.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092695.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010969.0','1018896.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099233.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010970.0','1018896.0','3', '1','1','8749.7', '1','1','8535.0', '1','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099234.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004403.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092667.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004217.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092481.0','1044463.0','3', '3','2','4000.0', '3','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004388.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092652.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003942.0','1018896.0','1', '1','1','473.76', '1','1','473.76', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092206.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010971.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099235.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010972.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099236.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004407.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092671.0','1044463.0','442', '394','361','3605111.22', '390','359','2206370.39', '235','151','1398740.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010973.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099237.0','1044463.0','1', '1','1','2519.22', '1','1','2519.22', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002824.0','1018896.0','1', '1','1','3759.73', '1','1','1505.5', '1','1','2254.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091088.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002302.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090566.0','1044463.0','1', '1','1','3621.24', '1','1','2829.84', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003989.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092253.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004260.0','1018896.0','1', '1','1','3006.1', '1','1','2000.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092524.0','1044463.0','882', '842','655','1674582.36', '804','570','1398613.68', '534','275','275968.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010974.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099238.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002491.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090755.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004461.0','1018896.0','5', '4','3','7885.7', '4','3','6088.2', '2','2','1797.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092725.0','1044463.0','392', '375','314','995330.92', '364','293','815308.44', '227','115','180022.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004297.0','1018896.0','716', '649','574','1392261.52', '634','572','1354951.08', '337','24','37310.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092561.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010975.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099239.0','1044463.0','1', '1','1','2890.0', '1','1','2890.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004402.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092666.0','1044463.0','5', '4','1','2000.0', '4','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002317.0','1018896.0','33', '31','25','115793.21', '30','23','90940.5', '22','12','24852.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090581.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002320.0','1018896.0','1', '1','1','13835.0', '1','1','13835.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090584.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004365.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092629.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002334.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090598.0','1044463.0','4', '4','3','7654.7', '4','3','6890.0', '3','1','764.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004428.0','1018896.0','2', '2','1','13820.0', '2','1','13820.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092692.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003966.0','1018896.0','2', '1','1','2890.0', '1','1','2890.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092230.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010976.0','1018896.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099240.0','1044463.0','2', '2','2','3006.1', '2','1','2000.0', '2','2','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004262.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092526.0','1044463.0','1', '1','1','2890.0', '1','1','2890.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002617.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090881.0','1044463.0','11', '7','5','68765.0', '7','5','45382.0', '3','2','23383.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002418.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090682.0','1044463.0','14680', '13977','11550','29211822.69', '13705','11014','25617808.19', '7545','3489','3594014.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002858.0','1018896.0','1', '1','1','13565.0', '1','1','13565.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091122.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002470.0','1018896.0','120', '117','99','336725.58', '116','96','272250.56', '65','28','64475.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090734.0','1044463.0','2', '2','1','3006.1', '2','1','2000.0', '2','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010977.0','1018896.0','46', '45','30','95914.9', '42','27','68572.59', '32','12','27342.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099241.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010978.0','1018896.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099242.0','1044463.0','48', '41','23','87527.71', '33','19','51799.0', '24','9','35728.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004070.0','1018896.0','2', '2','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092334.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010979.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099243.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002282.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090546.0','1044463.0','3', '3','2','3985.0', '3','2','3985.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010980.0','1018896.0','1', '1','1','2155.08', '1','1','2155.08', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099244.0','1044463.0','29', '23','12','26778.86', '22','11','24220.2', '13','2','2558.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010981.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099245.0','1044463.0','70', '64','23','61180.04', '60','22','54121.02', '26','4','7059.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010982.0','1018896.0','5823', '5552','4593','12257047.24', '5455','4414','10579429.83', '3106','1416','1677617.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099246.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002341.0','1018896.0','1', '1','1','1731.88', '1','1','1731.88', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090605.0','1044463.0','2', '2','1','6764.28', '2','1','5758.18', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004186.0','1018896.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092450.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004091.0','1018896.0','1', '1','1','2791.4', '1','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092355.0','1044463.0','4', '4','2','4000.0', '4','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010983.0','1018896.0','1', '1','1','804.0', '1','1','804.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099247.0','1044463.0','50', '43','16','38698.33', '41','14','27330.17', '29','5','11368.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004261.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092525.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010984.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099248.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002488.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090752.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002292.0','1018896.0','71', '66','36','82925.74', '62','29','63072.58', '47','13','19853.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090556.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002363.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090627.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002264.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090528.0','1044463.0','1', '1','1','3006.1', '1','1','2000.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010985.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099249.0','1044463.0','4780', '4588','3872','11504203.91', '4520','3698','9576694.07', '2677','1485','1927509.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004019.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092283.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004286.0','1018896.0','1', '1','1','4865.42', '1','1','1998.0', '1','1','2867.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092550.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002544.0','1018896.0','1', '1','1','8535.0', '1','1','8535.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090808.0','1044463.0','2', '2','2','19323.3', '2','2','5608.0', '2','1','13715.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004155.0','1018896.0','2', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092419.0','1044463.0','4', '4','4','13295.13', '4','4','9534.0', '2','1','3761.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004245.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092509.0','1044463.0','14', '12','4','9601.34', '12','2','6800.0', '6','3','2801.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002419.0','1018896.0','1', '1','1','8265.0', '1','1','8265.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090683.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004282.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092546.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010986.0','1018896.0','2494', '2282','1075','2557643.04', '2152','986','2187804.06', '1438','261','369838.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099250.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002594.0','1018896.0','179', '160','136','1214143.06', '156','134','652836.8', '101','66','561306.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090858.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010987.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099251.0','1044463.0','133', '123','102','265453.33', '114','81','218724.32', '87','51','46729.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004465.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092729.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002671.0','1018896.0','1', '1','1','1332.0', '1','1','1332.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090935.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002595.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090859.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002420.0','1018896.0','1', '1','1','2791.4', '1','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090684.0','1044463.0','6', '6','4','9168.0', '6','4','9168.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004452.0','1018896.0','2349', '2140','1867','21043125.15', '2128','1851','11904802.42', '1381','920','9138322.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092716.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004342.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092606.0','1044463.0','2283', '2071','716','1315177.16', '1904','527','1054091.16', '1272','262','261086.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004188.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092452.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004444.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092708.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010988.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099252.0','1044463.0','3', '3','2','4000.0', '3','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010989.0','1018896.0','106', '94','27','49301.59', '88','20','41829.75', '38','11','7471.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099253.0','1044463.0','3', '2','1','13143.93', '2','1','12235.2', '1','1','908.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002303.0','1018896.0','1', '1','1','1180.91', '1','1','1180.91', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090567.0','1044463.0','1', '1','1','794.0', '1','1','794.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004661.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092925.0','1044463.0','405', '387','301','784772.79', '377','264','652845.01', '237','134','131927.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002274.0','1018896.0','3', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090538.0','1044463.0','974', '909','799','5809091.54', '901','792','3733798.75', '583','376','2075292.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010990.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099254.0','1044463.0','1', '1','1','3065.0', '1','1','3065.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003945.0','1018896.0','2', '2','2','3576.62', '2','1','2358.0', '2','1','1218.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092209.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002755.0','1018896.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091019.0','1044463.0','1', '1','1','334.52', '1','1','334.52', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002379.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090643.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004174.0','1018896.0','20', '16','7','8331.88', '12','4','5039.68', '12','5','3292.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092438.0','1044463.0','1778', '1565','514','1115321.14', '1472','453','993758.74', '904','113','121562.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004271.0','1018896.0','1', '1','1','12636.08', '1','1','8391.0', '1','1','4245.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092535.0','1044463.0','1', '1','1','353.48', '1','1','353.48', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002369.0','1018896.0','3', '3','2','11500.47', '3','2','4710.0', '2','2','6790.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090633.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010991.0','1018896.0','11', '9','5','6539.38', '8','4','6423.91', '4','1','115.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099255.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002880.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091144.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010992.0','1018896.0','1', '1','1','4043.24', '1','1','2936.0', '1','1','1107.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099256.0','1044463.0','2', '2','2','16854.0', '2','2','16854.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002362.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090626.0','1044463.0','1114', '1013','682','1406024.8', '942','563','1195576.99', '626','241','210447.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004367.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092631.0','1044463.0','224', '212','151','364122.43', '203','135','309579.29', '117','55','54543.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002492.0','1018896.0','969', '849','320','714027.09', '787','241','554203.26', '509','133','159823.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090756.0','1044463.0','1', '1','1','2791.4', '1','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010993.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099257.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010994.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099258.0','1044463.0','25', '24','5','8214.7', '24','4','8000.0', '7','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004401.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092665.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004466.0','1018896.0','1', '1','1','4068.17', '1','1','4068.17', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092730.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002626.0','1018896.0','2', '1','1','550.0', '0','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090890.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004362.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092626.0','1044463.0','2', '2','2','32600.65', '2','2','11210.0', '2','2','21390.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002796.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091060.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004425.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092689.0','1044463.0','574', '538','497','5108138.17', '536','493','3179157.04', '316','197','1928981.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004331.0','1018896.0','1', '1','1','4100.1', '1','1','3550.1', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092595.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002861.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091125.0','1044463.0','1', '1','1','3028.0', '1','1','3028.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004373.0','1018896.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092637.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004375.0','1018896.0','1', '1','1','10221.43', '1','1','8996.0', '1','1','1225.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092639.0','1044463.0','224', '206','80','197204.12', '193','73','165087.39', '129','16','32116.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004436.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092700.0','1044463.0','1', '1','1','2676.0', '1','1','2676.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004338.0','1018896.0','2', '2','2','7424.06', '2','2','7424.06', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092602.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004451.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092715.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010995.0','1018896.0','108', '98','38','68866.98', '88','27','52454.65', '67','18','16412.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099259.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004454.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092718.0','1044463.0','1', '1','1','6742.0', '1','1','6742.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010996.0','1018896.0','87', '76','42','225443.56', '71','41','144909.3', '45','15','80534.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099260.0','1044463.0','2017', '1845','1291','3114349.77', '1772','1131','2609004.51', '1062','449','505345.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002424.0','1018896.0','35', '33','10','26009.52', '29','10','18915.99', '16','1','7093.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090688.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010997.0','1018896.0','1', '1','1','8214.0', '1','1','8214.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099261.0','1044463.0','130', '117','41','63098.04', '111','31','46470.08', '66','17','16627.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002715.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090979.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004372.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092636.0','1044463.0','1', '1','1','2791.4', '1','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010998.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099262.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2010999.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099263.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004409.0','1018896.0','7', '7','1','2000.0', '7','1','2000.0', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092673.0','1044463.0','1', '1','1','2586.48', '1','1','2586.48', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011000.0','1018896.0','1', '1','1','4491.87', '1','1','4491.87', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099264.0','1044463.0','1', '1','1','12898.29', '1','1','9222.0', '1','1','3676.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004411.0','1018896.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092675.0','1044463.0','640', '610','543','2132626.15', '605','537','1652770.89', '378','186','479855.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004412.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092676.0','1044463.0','1', '1','1','6568.0', '1','1','6568.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004355.0','1018896.0','1', '1','1','3805.3', '1','1','3805.3', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092619.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011001.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099265.0','1044463.0','7448', '6692','4032','8355591.7', '6224','3374','7212617.75', '3836','1306','1142973.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002713.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090977.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004426.0','1018896.0','201', '198','54','174922.21', '192','48','138187.77', '116','15','36734.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092690.0','1044463.0','3', '3','1','2000.0', '3','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011002.0','1018896.0','3406', '3244','784','2447266.05', '3172','728','1613615.03', '1958','171','833651.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099266.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004679.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092943.0','1044463.0','4', '4','0','0.0', '4','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002717.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090981.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011003.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099267.0','1044463.0','3781', '3563','845','2450412.95', '3459','759','1761890.43', '2153','197','688522.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002710.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090974.0','1044463.0','15', '15','3','4372.99', '14','2','4000.0', '9','1','372.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011004.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099268.0','1044463.0','1995', '1847','426','1175884.48', '1791','409','874757.96', '1000','55','301126.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011005.0','1018896.0','1374', '1274','292','777998.27', '1227','277','623303.47', '680','36','154694.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099269.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002631.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090895.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011006.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099270.0','1044463.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004387.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092651.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002368.0','1018896.0','1', '1','1','3187.81', '1','1','2676.0', '1','1','511.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090632.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004455.0','1018896.0','414', '383','267','635229.24', '360','222','530753.11', '223','108','104476.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092719.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004414.0','1018896.0','1', '1','1','7352.88', '1','1','4755.0', '1','1','2597.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092678.0','1044463.0','1', '1','1','791.4', '0','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004614.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092878.0','1044463.0','6', '6','5','22856.3', '6','5','19838.0', '4','3','3018.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004348.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092612.0','1044463.0','1', '1','1','15204.28', '1','1','6815.0', '1','1','8389.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011007.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099271.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011008.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099272.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002716.0','1018896.0','3', '3','1','6661.76', '3','1','1466.0', '2','1','5195.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090980.0','1044463.0','12', '12','4','22557.76', '12','4','17362.0', '8','1','5195.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011009.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099273.0','1044463.0','1', '1','1','4702.47', '1','1','4702.47', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002888.0','1018896.0','1', '1','1','25600.0', '1','1','12234.0', '1','1','13366.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091152.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011010.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099274.0','1044463.0','1390', '1299','297','883578.52', '1248','267','597096.29', '837','78','286482.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002894.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091158.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004343.0','1018896.0','1', '1','1','1156.0', '1','1','1156.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092607.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004445.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092709.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002394.0','1018896.0','2', '1','1','3765.59', '1','1','3765.59', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090658.0','1044463.0','136', '129','33','81498.93', '123','27','61572.16', '80','13','19926.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004429.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092693.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004394.0','1018896.0','2412', '2244','1537','3946276.19', '2167','1359','3342528.51', '1290','509','603747.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092658.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002798.0','1018896.0','245', '211','76','318502.62', '209','71','250883.3', '126','13','67619.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091062.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004427.0','1018896.0','2', '2','2','4000.0', '2','2','4000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092691.0','1044463.0','351', '315','149','930383.85', '312','136','574823.57', '162','63','355560.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002793.0','1018896.0','6', '5','3','8523.76', '5','3','6000.0', '4','3','2523.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091057.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004337.0','1018896.0','9', '9','1','2000.0', '9','1','2000.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092601.0','1044463.0','60', '53','9','29911.88', '47','8','18342.0', '27','2','11569.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002836.0','1018896.0','4', '4','2','3734.0', '3','2','3734.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091100.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011011.0','1018896.0','549', '515','186','558916.87', '495','172','401827.74', '303','42','157089.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099275.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011012.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099276.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002395.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090659.0','1044463.0','7', '6','1','13389.75', '6','1','3156.0', '5','1','10233.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011013.0','1018896.0','544', '523','145','603193.27', '515','134','288351.96', '322','47','314841.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099277.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004385.0','1018896.0','1', '1','1','3006.1', '1','1','2000.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092649.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004442.0','1018896.0','1942', '1865','489','1536629.63', '1820','458','1002538.7', '1039','111','534090.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092706.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004418.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092682.0','1044463.0','123', '116','28','74532.3', '109','26','50074.0', '68','7','24458.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011014.0','1018896.0','1254', '1169','359','1109144.67', '1140','309','714128.02', '738','129','395016.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099278.0','1044463.0','1', '1','1','6936.0', '1','1','6936.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011015.0','1018896.0','570', '522','149','410459.01', '504','143','297395.29', '248','23','113063.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099279.0','1044463.0','8', '8','3','6000.0', '7','3','6000.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004346.0','1018896.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092610.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011016.0','1018896.0','1', '1','1','1156.0', '1','1','1156.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099280.0','1044463.0','2', '2','2','5352.0', '2','2','5352.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011017.0','1018896.0','8', '8','3','15077.01', '7','3','5156.0', '6','1','9921.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099281.0','1044463.0','2', '2','1','1352.0', '2','1','1352.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002632.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090896.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004349.0','1018896.0','2', '1','1','5988.89', '1','1','3156.0', '1','1','2832.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092613.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011018.0','1018896.0','4', '4','3','18190.0', '4','3','18190.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099282.0','1044463.0','2', '2','2','6475.99', '2','2','5684.59', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004352.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092616.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011019.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099283.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004416.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092680.0','1044463.0','1', '1','1','25933.99', '1','1','12528.0', '1','1','13405.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002575.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090839.0','1044463.0','2', '2','1','1156.0', '2','1','1156.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011020.0','1018896.0','1', '1','1','10625.93', '1','1','1736.0', '1','1','8889.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099284.0','1044463.0','3', '3','2','3156.0', '3','2','3156.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002393.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090657.0','1044463.0','1', '1','1','3380.0', '1','1','3380.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004357.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092621.0','1044463.0','11', '10','2','4000.0', '10','2','4000.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004319.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092583.0','1044463.0','527', '485','119','289767.62', '472','116','237782.0', '267','13','51985.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002396.0','1018896.0','4', '4','2','29774.19', '3','2','7867.0', '3','2','21907.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090660.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011021.0','1018896.0','12', '9','3','8789.14', '9','3','8789.14', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099285.0','1044463.0','1', '1','1','2162.48', '1','1','1612.48', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002370.0','1018896.0','85', '81','64','152887.31', '77','54','124340.75', '59','34','28546.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090634.0','1044463.0','1', '1','1','477.44', '1','1','477.44', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004440.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092704.0','1044463.0','2', '2','1','2000.0', '1','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004344.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092608.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011022.0','1018896.0','4', '4','1','2000.0', '4','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099286.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004435.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092699.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011023.0','1018896.0','1', '1','1','9242.17', '1','1','980.0', '1','1','8262.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099287.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004334.0','1018896.0','8', '5','3','6106.3', '5','3','5495.0', '2','1','611.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092598.0','1044463.0','947', '852','349','778535.61', '813','278','612879.97', '445','128','165655.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004336.0','1018896.0','6', '6','2','18615.57', '4','2','10964.0', '5','1','7651.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092600.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004389.0','1018896.0','1', '1','1','2468.68', '1','1','2000.0', '1','1','468.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092653.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011024.0','1018896.0','52', '47','15','32851.4', '42','11','28858.43', '25','7','3992.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099288.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004327.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092591.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002863.0','1018896.0','244', '222','102','358136.41', '213','83','314996.13', '126','37','43140.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091127.0','1044463.0','1951', '1727','658','1380656.9', '1552','478','1048430.89', '1089','277','332226.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011025.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099289.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002758.0','1018896.0','1263', '1182','274','712954.95', '1142','254','563071.5', '662','54','149883.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091022.0','1044463.0','340', '323','118','681981.62', '322','116','414239.96', '188','31','267741.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004663.0','1018896.0','3', '3','1','8107.81', '3','0','0.0', '3','1','8107.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092927.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011026.0','1018896.0','2', '2','1','1586.0', '1','0','0.0', '1','1','1586.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099290.0','1044463.0','5', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004358.0','1018896.0','11', '10','4','28456.24', '10','4','15849.8', '5','1','12606.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092622.0','1044463.0','1', '1','1','3352.0', '1','1','3352.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004470.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092734.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011027.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099291.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004325.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092589.0','1044463.0','419', '384','118','307228.66', '361','95','261385.45', '237','34','45843.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004391.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092655.0','1044463.0','2', '1','1','759.47', '1','0','0.0', '1','1','759.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004339.0','1018896.0','6', '6','3','6000.0', '6','3','6000.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092603.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004662.0','1018896.0','7', '7','4','5851.5', '7','3','5156.0', '4','1','695.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092926.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011028.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099292.0','1044463.0','10', '9','2','4000.0', '7','2','4000.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004364.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092628.0','1044463.0','2', '2','2','7817.35', '2','2','3352.0', '2','1','4465.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011029.0','1018896.0','5', '5','1','2000.0', '5','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099293.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002795.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091059.0','1044463.0','1', '1','1','3574.35', '1','1','3574.35', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011030.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099294.0','1044463.0','701', '617','264','584143.36', '566','219','507683.94', '338','97','76459.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011031.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099295.0','1044463.0','4', '4','4','5671.4', '4','3','4880.0', '2','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002597.0','1018896.0','1', '1','1','198.34', '1','1','198.34', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090861.0','1044463.0','1', '1','1','6223.51', '1','1','5671.17', '1','1','552.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004471.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092735.0','1044463.0','1', '1','1','7033.66', '1','1','2814.0', '1','1','4219.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004405.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092669.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002596.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090860.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002744.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091008.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002371.0','1018896.0','15', '15','6','11973.58', '14','6','11973.58', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090635.0','1044463.0','8', '5','1','366.13', '3','0','0.0', '5','1','366.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002826.0','1018896.0','1', '1','1','3591.3', '1','1','2980.0', '1','1','611.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091090.0','1044463.0','4', '4','3','11120.0', '4','3','11120.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002905.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091169.0','1044463.0','2', '2','2','7839.34', '2','2','5220.28', '2','1','2619.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004353.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092617.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002845.0','1018896.0','51', '46','13','36382.52', '45','11','23527.91', '28','3','12854.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091109.0','1044463.0','19', '17','6','19174.71', '17','5','17120.16', '13','3','2054.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002730.0','1018896.0','491', '442','128','301719.12', '380','78','219244.33', '269','72','82474.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090994.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011032.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099296.0','1044463.0','2', '2','2','8404.07', '2','2','5156.0', '2','1','3248.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002864.0','1018896.0','7', '4','2','4000.0', '3','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091128.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002915.0','1018896.0','1', '1','1','1432.34', '1','1','880.0', '1','1','552.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091179.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011033.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099297.0','1044463.0','5', '5','2','22382.89', '4','2','13868.0', '4','1','8514.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002599.0','1018896.0','2', '2','2','10543.33', '2','2','8804.0', '1','1','1739.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090863.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011034.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099298.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011035.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099299.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011036.0','1018896.0','3', '3','1','2000.0', '3','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099300.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004404.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092668.0','1044463.0','6', '6','0','0.0', '5','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011037.0','1018896.0','34', '24','4','11310.49', '18','4','6980.0', '17','1','4330.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099301.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004419.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092683.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002628.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090892.0','1044463.0','1', '1','1','814.0', '1','1','814.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004379.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092643.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011038.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099302.0','1044463.0','1', '1','1','7752.34', '1','1','7200.0', '1','1','552.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002576.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090840.0','1044463.0','24', '23','7','24729.78', '22','7','18443.91', '12','1','6285.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002837.0','1018896.0','1', '1','1','552.34', '1','0','0.0', '1','1','552.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091101.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002895.0','1018896.0','48', '42','13','50861.36', '40','12','40615.0', '21','4','10246.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091159.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011039.0','1018896.0','31', '27','7','12788.79', '23','5','9010.0', '17','3','3778.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099303.0','1044463.0','7', '7','0','0.0', '6','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002860.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091124.0','1044463.0','93', '87','29','82332.88', '82','26','57957.44', '49','12','24375.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011040.0','1018896.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099304.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002373.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090637.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002409.0','1018896.0','3', '3','3','7488.75', '3','3','6980.0', '1','1','508.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090673.0','1044463.0','16', '12','4','8268.4', '12','3','6000.0', '8','1','2268.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002927.0','1018896.0','1', '1','1','26200.0', '1','1','15218.0', '1','1','10982.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091191.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011041.0','1018896.0','827', '747','250','614811.4', '720','218','531330.31', '370','54','83481.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099305.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011042.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099306.0','1044463.0','1', '1','1','3852.52', '1','1','3852.52', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011043.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099307.0','1044463.0','1', '1','1','14528.0', '1','1','14528.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002637.0','1018896.0','10', '9','4','7644.72', '7','2','4000.0', '8','2','3644.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090901.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002675.0','1018896.0','3', '3','2','4000.0', '3','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090939.0','1044463.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011044.0','1018896.0','9', '7','5','4637.02', '5','2','2048.12', '6','3','2588.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099308.0','1044463.0','891', '795','264','672270.61', '742','233','565052.53', '412','64','107218.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002521.0','1018896.0','861', '708','306','586446.74', '613','218','468931.58', '417','134','117515.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090785.0','1044463.0','121', '112','47','94715.23', '105','38','74759.7', '69','18','19955.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004540.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092804.0','1044463.0','913', '842','337','686280.37', '785','263','534004.7', '523','122','152275.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004381.0','1018896.0','1', '1','1','15507.84', '1','1','9840.0', '1','1','5667.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092645.0','1044463.0','4', '4','1','2000.0', '3','1','2000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011045.0','1018896.0','1', '1','1','1967.3', '1','1','1967.3', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099309.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004330.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092594.0','1044463.0','1996', '1671','627','1480147.03', '1469','493','1100435.81', '1002','231','379711.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002634.0','1018896.0','1074', '1012','590','3506233.04', '996','565','2213650.16', '561','203','1292582.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090898.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002729.0','1018896.0','3', '3','2','4000.0', '3','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090993.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004683.0','1018896.0','12', '11','1','2000.0', '11','1','2000.0', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092947.0','1044463.0','149', '138','34','100506.82', '131','27','49634.9', '72','12','50871.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002806.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091070.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002522.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090786.0','1044463.0','16', '13','5','9896.0', '7','5','9896.0', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004581.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092845.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004489.0','1018896.0','1171', '1043','334','621582.9', '969','272','550556.37', '578','85','71026.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092753.0','1044463.0','2990', '2734','1069','2175712.48', '2561','888','1793234.22', '1702','347','382478.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004475.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092739.0','1044463.0','1187', '1057','433','1131329.25', '973','362','960180.91', '612','139','171148.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011046.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099310.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011047.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099311.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004510.0','1018896.0','1', '1','1','1828.0', '1','1','1828.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092774.0','1044463.0','3', '3','1','2000.0', '3','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004496.0','1018896.0','391', '354','138','308177.65', '333','106','247977.82', '193','48','60199.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092760.0','1044463.0','475', '433','138','471620.84', '421','127','336263.42', '240','28','135357.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004552.0','1018896.0','1', '1','1','5582.57', '1','1','1582.0', '1','1','4000.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092816.0','1044463.0','1', '1','1','1736.0', '1','1','1736.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004590.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092854.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011048.0','1018896.0','1', '1','1','5203.43', '1','1','2902.0', '1','1','2301.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099312.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011049.0','1018896.0','1', '1','1','6411.25', '1','1','6411.25', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099313.0','1044463.0','1', '1','1','769.93', '1','0','0.0', '1','1','769.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002410.0','1018896.0','2', '2','2','4000.0', '2','2','4000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090674.0','1044463.0','31', '28','8','23321.14', '28','5','20721.0', '14','3','2600.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011050.0','1018896.0','6249', '5715','2679','5776252.9', '5294','2183','4637264.62', '3811','986','1138988.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099314.0','1044463.0','421', '393','185','387499.05', '376','168','350586.5', '209','46','36912.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002616.0','1018896.0','863', '822','312','3018302.82', '805','294','1531025.51', '491','140','1487277.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090880.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002868.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091132.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011051.0','1018896.0','1', '1','1','1259.08', '1','0','0.0', '1','1','1259.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099315.0','1044463.0','1', '1','1','2980.0', '1','1','2980.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004624.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092888.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004519.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092783.0','1044463.0','120', '111','24','149525.14', '111','21','87599.52', '60','8','61925.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004626.0','1018896.0','2', '2','2','4000.0', '2','2','4000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092890.0','1044463.0','1762', '1664','420','1106777.12', '1621','374','862428.25', '979','102','244348.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004587.0','1018896.0','52', '45','18','37917.81', '42','15','33871.21', '22','5','4046.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092851.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011052.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099316.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002411.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090675.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004493.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092757.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004518.0','1018896.0','1', '1','1','3624.57', '1','1','3624.57', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092782.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011053.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099317.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011054.0','1018896.0','4', '4','2','4000.0', '4','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099318.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002771.0','1018896.0','5', '4','1','2000.0', '4','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091035.0','1044463.0','625', '575','142','341042.77', '556','136','281155.86', '288','17','59886.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011055.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099319.0','1044463.0','3', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002676.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090940.0','1044463.0','77', '70','39','96069.28', '69','33','82162.22', '49','10','13907.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004478.0','1018896.0','6', '6','6','21619.6', '6','6','18380.99', '5','4','3238.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092742.0','1044463.0','2', '2','2','3849.77', '2','2','3849.77', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004639.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092903.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002907.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091171.0','1044463.0','491', '453','161','424294.11', '442','154','330566.37', '222','20','93727.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004641.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092905.0','1044463.0','1', '1','1','6571.97', '1','1','2880.0', '1','1','3691.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004506.0','1018896.0','11', '8','4','8000.0', '8','4','8000.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092770.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004477.0','1018896.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092741.0','1044463.0','1', '1','1','11743.51', '1','1','1352.0', '1','1','10391.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004571.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092835.0','1044463.0','13', '11','3','3047.06', '10','2','2255.66', '7','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002769.0','1018896.0','2', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091033.0','1044463.0','23', '23','8','16718.45', '20','8','15315.75', '13','2','1402.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011056.0','1018896.0','178', '144','63','133787.03', '125','50','111311.51', '74','25','22475.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099320.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002920.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091184.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004762.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093026.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004565.0','1018896.0','383', '365','249','516910.67', '351','195','393333.6', '242','116','123577.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092829.0','1044463.0','31', '30','14','35547.96', '28','10','28045.02', '21','9','7502.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002651.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090915.0','1044463.0','688', '634','299','800577.97', '613','287','726506.42', '414','56','74071.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011057.0','1018896.0','2098', '1932','927','2267257.51', '1830','821','1920963.92', '1199','312','346293.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099321.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011058.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099322.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002689.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090953.0','1044463.0','2', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004495.0','1018896.0','33', '32','11','21652.41', '30','8','18320.64', '17','5','3331.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092759.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011059.0','1018896.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099323.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004833.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093097.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011060.0','1018896.0','65', '58','27','54674.54', '52','25','49796.54', '28','6','4878.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099324.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002760.0','1018896.0','93', '91','54','125191.4', '87','51','119243.34', '54','10','5948.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091024.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004481.0','1018896.0','1894', '1775','771','1948459.51', '1677','660','1422986.36', '1089','265','525473.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092745.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002728.0','1018896.0','4', '3','1','9134.8', '2','1','8331.0', '2','1','803.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090992.0','1044463.0','309', '271','45','86502.99', '259','38','78962.0', '160','8','7540.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002476.0','1018896.0','8', '8','3','4214.7', '8','2','4000.0', '7','1','214.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090740.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002687.0','1018896.0','117', '97','50','136939.95', '90','39','94677.81', '61','23','42262.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090951.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004664.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092928.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002439.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090703.0','1044463.0','49', '45','13','28580.36', '40','10','25128.18', '19','4','3452.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004528.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092792.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004476.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092740.0','1044463.0','1', '1','1','880.0', '1','1','880.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004667.0','1018896.0','34', '29','13','26049.16', '28','13','25443.46', '21','1','605.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092931.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004523.0','1018896.0','122', '108','37','100441.26', '101','34','88803.83', '66','7','11637.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092787.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011061.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099325.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004584.0','1018896.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092848.0','1044463.0','7', '7','1','2000.0', '5','1','2000.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011062.0','1018896.0','727', '644','78','215630.94', '616','68','144697.0', '389','20','70933.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099326.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004652.0','1018896.0','162', '147','46','93996.55', '124','30','74060.67', '95','20','19935.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092916.0','1044463.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004551.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092815.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011063.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099327.0','1044463.0','3', '3','2','516.3', '3','2','516.3', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004573.0','1018896.0','1', '1','1','1734.0', '1','1','1734.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092837.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004508.0','1018896.0','1', '1','1','2616.4', '1','1','2616.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092772.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002699.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090963.0','1044463.0','1', '1','1','2552.34', '1','1','2000.0', '1','1','552.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011064.0','1018896.0','260', '248','109','1315560.44', '246','109','792916.0', '135','43','522644.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099328.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011065.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099329.0','1044463.0','483', '424','167','284420.52', '388','143','245049.87', '270','50','39370.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004570.0','1018896.0','31', '21','6','14155.69', '18','6','14155.69', '13','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092834.0','1044463.0','1', '1','1','455.99', '1','1','455.99', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004583.0','1018896.0','336', '320','111','446317.1', '316','110','316332.27', '152','14','129984.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092847.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004623.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092887.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004504.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092768.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011066.0','1018896.0','281', '213','92','180301.23', '170','61','139404.86', '132','47','40896.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099330.0','1044463.0','533', '497','210','499012.73', '462','187','435473.92', '296','64','63538.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004654.0','1018896.0','129', '117','31','57366.85', '106','30','53660.2', '53','2','3706.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092918.0','1044463.0','1', '1','1','2550.0', '1','1','2000.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004618.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092882.0','1044463.0','1', '1','1','2087.24', '1','1','980.0', '1','1','1107.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004786.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093050.0','1044463.0','271', '251','95','203068.8', '240','85','156908.45', '155','21','46160.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002697.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090961.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002872.0','1018896.0','1', '1','1','2465.51', '1','1','2465.51', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091136.0','1044463.0','1', '1','1','382.38', '0','0','0.0', '1','1','382.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002412.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090676.0','1044463.0','1', '1','1','4334.36', '1','1','4218.89', '1','1','115.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002808.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091072.0','1044463.0','255', '233','40','79074.04', '216','37','74886.77', '150','4','4187.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004671.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092935.0','1044463.0','1', '1','1','1156.0', '1','1','1156.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011067.0','1018896.0','194', '180','54','145106.26', '156','39','113137.3', '112','23','31968.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099331.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004673.0','1018896.0','4', '4','2','4000.0', '4','2','4000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092937.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004568.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092832.0','1044463.0','137', '129','74','170554.15', '118','60','139320.24', '77','29','31233.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004569.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092833.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011068.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099332.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011069.0','1018896.0','121', '111','47','79532.9', '104','39','70116.0', '73','15','9416.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099333.0','1044463.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004479.0','1018896.0','5', '5','4','8000.0', '5','4','8000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092743.0','1044463.0','3', '2','2','4394.38', '2','2','4394.38', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002754.0','1018896.0','6', '6','5','24926.23', '6','5','12589.84', '5','2','12336.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091018.0','1044463.0','2', '2','1','6429.0', '2','1','6429.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004549.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092813.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004550.0','1018896.0','3', '3','2','3350.98', '3','2','3011.04', '1','1','339.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092814.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002838.0','1018896.0','2', '2','1','12014.22', '2','1','2880.0', '2','1','9134.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091102.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002650.0','1018896.0','1', '1','1','330.17', '1','0','0.0', '1','1','330.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090914.0','1044463.0','1', '1','1','709.08', '1','0','0.0', '1','1','709.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011070.0','1018896.0','1', '1','1','857.06', '1','1','857.06', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099334.0','1044463.0','147', '132','44','86993.59', '100','21','64892.94', '85','31','22100.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011071.0','1018896.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099335.0','1044463.0','3', '3','2','14530.75', '3','2','5156.0', '3','1','9374.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011072.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099336.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011073.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099337.0','1044463.0','187', '177','95','170983.57', '168','88','152629.52', '101','20','18354.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011074.0','1018896.0','140', '130','64','121434.92', '127','59','112289.38', '70','17','9145.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099338.0','1044463.0','1', '1','1','1808.15', '1','1','1808.15', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004502.0','1018896.0','2', '2','1','25238.99', '2','1','11859.0', '1','1','13379.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092766.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011075.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099339.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004503.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092767.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011076.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099340.0','1044463.0','250', '217','94','329951.35', '211','85','250437.3', '141','28','79514.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004653.0','1018896.0','1', '1','1','3432.34', '1','1','2880.0', '1','1','552.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092917.0','1044463.0','1', '1','1','2322.93', '1','1','1468.58', '1','1','854.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011077.0','1018896.0','77', '74','56','332757.71', '73','53','222420.33', '42','24','110337.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099341.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004547.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092811.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004607.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092871.0','1044463.0','47', '41','16','44585.58', '38','13','36375.03', '28','7','8210.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011078.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099342.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002918.0','1018896.0','1', '1','1','1156.0', '1','1','1156.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091182.0','1044463.0','1', '1','1','5376.7', '1','1','2754.0', '1','1','2622.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002875.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091139.0','1044463.0','1', '1','1','2682.72', '1','1','2000.0', '1','1','682.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004543.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092807.0','1044463.0','385', '332','61','132331.77', '310','57','119748.38', '162','9','12583.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004545.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092809.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004644.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092908.0','1044463.0','1', '1','1','6750.04', '1','1','3094.0', '1','1','3656.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011079.0','1018896.0','2', '2','1','7164.07', '2','1','2525.0', '1','1','4639.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099343.0','1044463.0','1', '1','1','6207.23', '1','1','3064.0', '1','1','3143.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011080.0','1018896.0','6', '5','2','4000.0', '5','2','4000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099344.0','1044463.0','1', '1','1','407.0', '1','1','407.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011081.0','1018896.0','266', '244','84','240665.07', '231','70','195126.43', '156','32','45538.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099345.0','1044463.0','1', '1','1','1046.0', '1','1','1046.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004491.0','1018896.0','2', '2','2','14234.0', '2','2','14234.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092755.0','1044463.0','1', '1','1','1156.0', '1','1','1156.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002731.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090995.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004490.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092754.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004542.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092806.0','1044463.0','1', '1','1','1006.1', '1','0','0.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011082.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099346.0','1044463.0','8', '6','2','1072.68', '6','1','281.28', '5','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011083.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099347.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011084.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099348.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004668.0','1018896.0','6', '6','3','4178.75', '6','2','4000.0', '4','1','178.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092932.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011085.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099349.0','1044463.0','38', '34','6','11736.0', '34','6','11736.0', '19','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011086.0','1018896.0','5', '5','0','0.0', '5','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099350.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011087.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099351.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002753.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091017.0','1044463.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002813.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091077.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004562.0','1018896.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092826.0','1044463.0','133', '128','55','507316.1', '128','50','278840.0', '80','26','228476.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004642.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092906.0','1044463.0','1', '1','1','791.4', '0','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011088.0','1018896.0','167', '156','80','234597.33', '154','77','199916.16', '88','21','34681.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099352.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011089.0','1018896.0','41', '25','23','142924.19', '24','23','93806.09', '15','6','49118.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099353.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011090.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099354.0','1044463.0','1', '1','1','529.11', '1','1','529.11', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011091.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099355.0','1044463.0','1', '1','1','833.0', '1','1','833.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011092.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099356.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002372.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090636.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011093.0','1018896.0','3', '2','1','2000.0', '2','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099357.0','1044463.0','1', '1','1','1767.08', '1','1','541.65', '1','1','1225.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004638.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092902.0','1044463.0','8', '7','2','4000.0', '7','2','4000.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004616.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092880.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004685.0','1018896.0','1', '1','1','7891.01', '1','1','7891.01', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092949.0','1044463.0','47', '44','19','35347.26', '43','17','34000.0', '26','3','1347.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004620.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092884.0','1044463.0','1', '1','1','2083.04', '1','1','2083.04', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004645.0','1018896.0','5', '5','0','0.0', '5','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092909.0','1044463.0','47', '44','14','26160.21', '42','12','24577.41', '17','2','1582.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002579.0','1018896.0','1', '1','1','2401.43', '1','1','1176.0', '1','1','1225.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090843.0','1044463.0','514', '454','163','341882.88', '426','148','295839.96', '220','42','46042.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011094.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099358.0','1044463.0','2', '2','2','8215.49', '2','2','8215.49', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002939.0','1018896.0','81', '73','10','23025.18', '66','9','21432.68', '39','2','1592.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091203.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002786.0','1018896.0','177', '160','31','76347.86', '148','25','51398.55', '93','9','24949.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091050.0','1044463.0','235', '187','32','55705.14', '170','26','51232.89', '95','6','4472.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002930.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091194.0','1044463.0','2467', '2305','1637','8543672.51', '2225','1551','5555520.22', '1451','576','2988152.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002790.0','1018896.0','1155', '962','387','813001.04', '857','332','731735.61', '554','89','81265.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091054.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002664.0','1018896.0','2', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090928.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002742.0','1018896.0','1065', '959','317','617315.08', '897','279','541167.88', '535','71','76147.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091006.0','1044463.0','2', '2','1','6729.75', '2','1','2880.0', '2','1','3849.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002951.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091215.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002990.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091254.0','1044463.0','1', '1','1','1010.0', '1','1','1010.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004921.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093185.0','1044463.0','1', '1','1','2754.0', '1','1','2754.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011095.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099359.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011096.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099360.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004899.0','1018896.0','217', '202','77','264206.85', '195','72','210823.76', '114','19','53383.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093163.0','1044463.0','840', '775','596','3651348.21', '753','575','2076659.91', '556','237','1574688.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004882.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093146.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011097.0','1018896.0','7', '7','3','5582.0', '6','3','5582.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099361.0','1044463.0','3505', '3204','1580','4881020.68', '3021','1430','3705094.71', '2048','469','1175925.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011098.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099362.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011099.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099363.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005075.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093339.0','1044463.0','583', '481','152','284631.69', '401','123','248230.5', '260','40','36401.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011100.0','1018896.0','34', '28','13','26536.63', '27','12','23035.32', '11','2','3501.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099364.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005114.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093378.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005017.0','1018896.0','185', '165','24','71070.18', '156','19','45548.45', '107','8','25521.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093281.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005011.0','1018896.0','1', '1','1','3006.1', '1','1','2000.0', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093275.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011101.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099365.0','1044463.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005164.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093428.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011102.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099366.0','1044463.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002964.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091228.0','1044463.0','1630', '1315','634','1070627.09', '1066','357','760374.69', '796','355','310252.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002952.0','1018896.0','1', '1','1','1806.12', '1','1','1806.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091216.0','1044463.0','28', '25','11','33412.9', '25','10','32121.5', '5','2','1291.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011103.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099367.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002658.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090922.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002935.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091199.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005025.0','1018896.0','3', '3','0','0.0', '3','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093289.0','1044463.0','21', '17','7','15128.14', '17','7','13618.68', '10','1','1509.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002782.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091046.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011104.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099368.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002906.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091170.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005068.0','1018896.0','3', '3','2','4542.99', '3','1','2000.0', '3','2','2542.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093332.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011105.0','1018896.0','6', '6','2','5680.81', '6','2','2795.1', '4','2','2885.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099369.0','1044463.0','3', '3','0','0.0', '3','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011106.0','1018896.0','1', '1','1','4476.08', '1','1','4476.08', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099370.0','1044463.0','1', '1','1','22672.46', '1','1','12264.0', '1','1','10408.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002610.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090874.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005071.0','1018896.0','2315', '2031','736','1679705.45', '1896','633','1410352.07', '1138','199','269353.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093335.0','1044463.0','23', '20','8','13552.86', '19','7','13002.86', '11','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011107.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099371.0','1044463.0','2', '2','1','4472.5', '2','1','3380.0', '2','1','1092.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004979.0','1018896.0','504', '456','52','99208.38', '440','49','93436.42', '251','5','5771.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093243.0','1044463.0','462', '416','47','113532.84', '399','43','79676.9', '223','10','33855.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004996.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093260.0','1044463.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005001.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093265.0','1044463.0','15', '13','8','19888.61', '13','8','19338.61', '9','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004932.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093196.0','1044463.0','73', '72','25','71510.41', '65','23','53154.23', '54','8','18356.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004856.0','1018896.0','4', '3','1','1388.56', '3','1','1046.0', '2','1','342.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093120.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005065.0','1018896.0','822', '779','269','1988939.3', '770','265','1154117.9', '390','86','834821.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093329.0','1044463.0','807', '656','314','586621.39', '541','201','460869.06', '409','149','125752.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004912.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093176.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005019.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093283.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011108.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099372.0','1044463.0','2508', '2122','745','1383675.08', '1939','595','1176807.13', '1253','230','206867.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011109.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099373.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005046.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093310.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003045.0','1018896.0','1', '1','1','354.54', '1','0','0.0', '1','1','354.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091309.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005069.0','1018896.0','70', '61','31','84447.08', '57','27','78589.8', '30','8','5857.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093333.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002680.0','1018896.0','61', '56','21','59186.6', '49','16','44290.95', '36','7','14895.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090944.0','1044463.0','308', '281','142','299556.74', '270','130','273173.96', '165','28','26382.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011110.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099374.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011111.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099375.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011112.0','1018896.0','85', '78','15','38155.53', '71','13','35928.63', '52','3','2226.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099376.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002928.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091192.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002750.0','1018896.0','1', '1','1','1483.47', '1','0','0.0', '1','1','1483.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091014.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003021.0','1018896.0','19', '16','7','15763.12', '14','5','12314.36', '11','5','3448.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091285.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003214.0','1018896.0','154', '135','25','46504.16', '124','22','45206.0', '65','3','1298.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091478.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011113.0','1018896.0','408', '356','117','321274.83', '332','97','245959.58', '201','33','75315.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099377.0','1044463.0','17', '13','6','9631.6', '12','5','8840.2', '7','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011114.0','1018896.0','421', '392','179','435817.15', '363','152','349610.55', '255','60','86206.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099378.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011115.0','1018896.0','5', '5','2','21985.75', '5','2','18350.87', '4','1','3634.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099379.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005152.0','1018896.0','1', '1','1','1472.74', '1','1','1472.74', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093416.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004929.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093193.0','1044463.0','1', '1','1','2483.86', '1','1','814.0', '1','1','1669.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011116.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099380.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005121.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093385.0','1044463.0','1918', '1696','617','1296617.69', '1553','509','1124332.65', '1011','173','172285.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002844.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091108.0','1044463.0','386', '367','186','581972.24', '361','163','473572.71', '241','68','108399.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005038.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093302.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011117.0','1018896.0','1', '1','1','25978.45', '1','1','7468.0', '1','1','18510.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099381.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002739.0','1018896.0','1229', '1122','731','3088622.34', '1083','681','2310628.06', '672','216','777994.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091003.0','1044463.0','1431', '1279','476','1062851.44', '1179','382','815290.8', '757','183','247560.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011118.0','1018896.0','7552', '6613','3701','14946908.62', '6212','3450','10687838.34', '3662','1011','4259070.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099382.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011119.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099383.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004987.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093251.0','1044463.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002825.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091089.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004940.0','1018896.0','1', '1','1','3221.0', '1','1','3221.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093204.0','1044463.0','1', '1','1','4500.0', '1','0','0.0', '1','1','4500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011120.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099384.0','1044463.0','535', '490','194','358189.71', '461','149','302630.36', '299','71','55559.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002972.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091236.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005094.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093358.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003038.0','1018896.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091302.0','1044463.0','1', '1','1','2550.0', '1','1','2000.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011121.0','1018896.0','3', '2','2','28805.09', '2','2','10885.0', '2','2','17920.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099385.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005124.0','1018896.0','4', '3','1','2000.0', '3','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093388.0','1044463.0','1', '1','1','992.57', '1','1','992.57', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004999.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093263.0','1044463.0','2', '2','2','2381.43', '2','1','1156.0', '2','1','1225.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002989.0','1018896.0','4', '1','1','11511.0', '1','1','11511.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091253.0','1044463.0','1', '1','1','20049.14', '1','1','6211.0', '1','1','13838.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005140.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093404.0','1044463.0','1', '1','1','1101.86', '1','1','1101.86', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011122.0','1018896.0','65', '60','21','44168.37', '55','16','39707.16', '35','6','4461.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099386.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005074.0','1018896.0','2', '2','1','674.0', '2','1','674.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093338.0','1044463.0','86', '81','30','124834.61', '78','28','102214.42', '41','9','22620.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011123.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099387.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005133.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093397.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004846.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093110.0','1044463.0','1476', '1304','713','1789682.23', '1222','615','1545254.52', '717','199','244427.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005158.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093422.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002558.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090822.0','1044463.0','1', '1','1','1298.96', '1','1','798.6', '1','1','500.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004688.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092952.0','1044463.0','2', '2','1','13265.57', '2','1','808.0', '1','1','12457.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002738.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091002.0','1044463.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002812.0','1018896.0','30', '25','9','35848.84', '24','9','21592.98', '19','2','14255.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091076.0','1044463.0','568', '522','408','2708606.22', '509','386','1600904.27', '324','158','1107701.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002904.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091168.0','1044463.0','1', '1','1','3580.43', '1','1','3580.43', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002740.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091004.0','1044463.0','1', '1','1','550.0', '1','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002707.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090971.0','1044463.0','8', '7','4','9470.63', '7','4','8674.0', '3','1','796.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002885.0','1018896.0','1', '1','1','1563.79', '1','1','814.0', '1','1','749.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091149.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004884.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093148.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003035.0','1018896.0','273', '248','87','146655.24', '228','61','125586.27', '153','30','21068.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091299.0','1044463.0','1', '1','1','1108.0', '1','1','1108.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003024.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091288.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011124.0','1018896.0','1', '1','1','1673.27', '1','0','0.0', '1','1','1673.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099388.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011125.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099389.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004977.0','1018896.0','1', '1','1','12819.06', '1','1','2808.0', '1','1','10011.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093241.0','1044463.0','29', '25','16','31050.62', '24','15','30428.55', '17','2','622.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011126.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099390.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005176.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093440.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004841.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093105.0','1044463.0','4357', '4017','2193','7885431.37', '3835','1970','5947275.3', '2481','692','1938156.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011127.0','1018896.0','3034', '2592','1283','4683479.57', '2467','1158','3572868.38', '1286','361','1110611.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099391.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004964.0','1018896.0','1', '1','1','674.0', '1','1','674.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093228.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004968.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093232.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004849.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093113.0','1044463.0','1', '1','1','14353.39', '1','1','3685.0', '1','1','10668.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011128.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099392.0','1044463.0','111', '104','36','85672.73', '101','32','73332.25', '48','7','12340.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011129.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099393.0','1044463.0','6', '5','2','2273.04', '4','1','1481.64', '3','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005182.0','1018896.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093446.0','1044463.0','585', '510','299','730072.95', '461','245','601999.74', '268','101','128073.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005105.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093369.0','1044463.0','2', '2','1','2000.0', '2','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005083.0','1018896.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093347.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004945.0','1018896.0','4', '4','4','6791.4', '4','3','6000.0', '4','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093209.0','1044463.0','71', '68','27','57459.21', '65','22','50302.79', '40','9','7156.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003017.0','1018896.0','26', '23','9','18889.59', '18','8','15632.06', '16','3','3257.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091281.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011130.0','1018896.0','205', '178','97','154715.9', '140','47','101255.47', '137','66','53460.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099394.0','1044463.0','5', '5','5','8933.93', '5','5','8933.93', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005060.0','1018896.0','541', '486','177','333556.5', '456','154','291591.82', '296','37','41964.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093324.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011131.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099395.0','1044463.0','63', '57','29','56230.74', '50','18','45341.21', '38','13','10889.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011132.0','1018896.0','4', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099396.0','1044463.0','1161', '792','163','258909.99', '533','107','212604.0', '516','60','46305.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005108.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093372.0','1044463.0','9', '8','1','791.4', '5','0','0.0', '7','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011133.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099397.0','1044463.0','1', '1','1','434.0', '1','1','434.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005188.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093452.0','1044463.0','70', '60','39','57199.16', '51','20','39260.95', '41','22','17938.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002657.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090921.0','1044463.0','270', '241','190','394833.28', '207','140','302464.69', '174','110','92368.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011134.0','1018896.0','130', '117','43','79749.97', '104','37','73816.33', '73','12','5933.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099398.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004835.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093099.0','1044463.0','1', '1','1','2738.0', '1','1','2738.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004532.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092796.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002709.0','1018896.0','1', '1','1','791.4', '0','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090973.0','1044463.0','4', '4','2','4000.0', '4','2','4000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011135.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099399.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002704.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090968.0','1044463.0','42', '34','18','33776.05', '27','13','29027.65', '17','6','4748.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011136.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099400.0','1044463.0','1157', '1012','638','1266642.44', '879','441','995179.04', '653','324','271463.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002958.0','1018896.0','70', '49','8','13609.4', '32','7','12818.0', '40','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091222.0','1044463.0','3', '2','1','2000.0', '2','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002736.0','1018896.0','935', '765','321','537772.45', '646','220','433767.05', '447','129','104005.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091000.0','1044463.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005034.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093298.0','1044463.0','7377', '6259','3364','6490261.15', '5365','2355','5156741.24', '3933','1521','1333519.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002605.0','1018896.0','1', '1','1','791.4', '0','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090869.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011137.0','1018896.0','1449', '1287','764','1425075.44', '1133','509','1116434.01', '792','380','308641.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099401.0','1044463.0','1', '1','1','3624.82', '1','1','2618.72', '1','1','1006.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004961.0','1018896.0','2', '2','2','2791.4', '2','1','2000.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093225.0','1044463.0','1', '1','1','330.24', '1','1','330.24', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005088.0','1018896.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093352.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011138.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099402.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004966.0','1018896.0','1228', '1130','919','6167942.03', '1108','898','3616319.62', '758','419','2551622.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093230.0','1044463.0','1', '1','1','2114.2', '1','0','0.0', '1','1','2114.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002981.0','1018896.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091245.0','1044463.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005027.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093291.0','1044463.0','1', '1','1','4543.73', '1','1','4043.73', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004885.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093149.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005042.0','1018896.0','4', '4','2','15281.0', '3','2','14489.6', '2','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093306.0','1044463.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011139.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099403.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005162.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093426.0','1044463.0','14', '13','9','32254.38', '13','9','28826.2', '6','3','3428.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011140.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099404.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002977.0','1018896.0','16', '13','8','16406.58', '12','3','8787.92', '8','5','7618.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091241.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004917.0','1018896.0','2', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093181.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011141.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099405.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005109.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093373.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002902.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091166.0','1044463.0','3171', '2920','2204','13321509.7', '2844','2136','8561515.08', '1660','791','4759994.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002934.0','1018896.0','2', '2','1','720.49', '2','1','720.49', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091198.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002661.0','1018896.0','3', '3','1','2000.0', '3','1','2000.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090925.0','1044463.0','1', '1','1','11712.0', '1','1','11712.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004865.0','1018896.0','240', '217','132','269854.4', '188','95','214339.97', '147','69','55514.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093129.0','1044463.0','1', '1','1','791.4', '1','0','0.0', '1','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011142.0','1018896.0','39', '28','5','8791.4', '18','4','8000.0', '21','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099406.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011143.0','1018896.0','1', '1','1','738.0', '1','1','738.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099407.0','1044463.0','3', '2','1','1283.58', '2','0','0.0', '2','1','1283.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005026.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093290.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004891.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093155.0','1044463.0','45', '43','12','40365.2', '38','12','27247.94', '21','1','13117.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005179.0','1018896.0','27', '24','16','18374.0', '15','4','6288.3', '21','15','12085.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093443.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011144.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099408.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011145.0','1018896.0','17', '16','9','16915.35', '16','4','13292.52', '11','5','3622.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099409.0','1044463.0','1', '1','1','2000.0', '1','1','2000.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004953.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093217.0','1044463.0','842', '768','261','675317.42', '733','234','581951.02', '346','66','93366.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002959.0','1018896.0','1', '1','1','550.0', '1','0','0.0', '1','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091223.0','1044463.0','2', '2','2','4791.4', '2','2','4000.0', '2','1','791.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005160.0','1018896.0','1', '1','1','2000.0', '1','1','2000.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093424.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002955.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091219.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005170.0','1018896.0','4', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093434.0','1044463.0','512', '426','229','488888.78', '360','149','387121.84', '277','121','101766.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005144.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093408.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005172.0','1018896.0','389', '355','209','754999.03', '337','174','440391.55', '202','102','314607.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093436.0','1044463.0','19', '19','6','9683.7', '19','5','8771.09', '13','2','912.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011146.0','1018896.0','1', '1','1','4333.7', '1','1','3979.64', '1','1','354.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099410.0','1044463.0','60', '52','25','33915.56', '46','10','14990.12', '33','20','18925.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002973.0','1018896.0','44', '40','14','51978.6', '39','7','31111.11', '17','9','20867.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091237.0','1044463.0','3', '2','1','835.97', '2','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011147.0','1018896.0','1669', '1588','716','703466.17', '1444','55','107342.34', '1030','685','596123.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099411.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011148.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099412.0','1044463.0','35', '34','11','29553.96', '31','9','25904.76', '15','4','3649.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011149.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099413.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005052.0','1018896.0','7', '6','4','4802.64', '6','4','4802.64', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093316.0','1044463.0','2', '2','1','17867.35', '2','1','11474.0', '1','1','6393.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011150.0','1018896.0','1', '1','1','12048.0', '1','1','12048.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099414.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005171.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093435.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002603.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090867.0','1044463.0','40', '35','15','16121.75', '24','6','10149.57', '20','9','5972.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004595.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092859.0','1044463.0','9', '7','4','18699.46', '6','2','15953.67', '6','3','2745.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002698.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090962.0','1044463.0','5', '3','3','6778.27', '3','3','4569.8', '1','1','2208.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004525.0','1018896.0','45', '30','13','10281.64', '15','0','0.0', '24','13','10281.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092789.0','1044463.0','15', '14','5','5537.8', '11','3','1781.62', '7','3','3756.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002562.0','1018896.0','115', '103','51','82569.82', '98','33','52544.39', '60','24','30025.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090826.0','1044463.0','1', '1','1','202.24', '1','1','202.24', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004960.0','1018896.0','40', '38','9','10335.34', '33','3','2562.7', '19','7','7772.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093224.0','1044463.0','78', '74','40','101623.23', '72','34','85199.5', '39','19','16423.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003029.0','1018896.0','50', '50','35','105504.02', '48','33','91796.61', '35','19','13707.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091293.0','1044463.0','1', '1','1','1439.71', '0','0','0.0', '1','1','1439.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011151.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099415.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005192.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093456.0','1044463.0','28', '25','14','26729.89', '24','13','25950.14', '15','2','779.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011152.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099416.0','1044463.0','26', '25','15','15849.48', '25','12','12916.97', '12','4','2932.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005193.0','1018896.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093457.0','1044463.0','63', '57','30','75778.12', '51','18','58350.57', '44','20','17427.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005009.0','1018896.0','33', '30','13','49113.75', '30','10','39299.62', '17','7','9814.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093273.0','1044463.0','1', '1','1','1076.16', '1','1','1076.16', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005137.0','1018896.0','15', '14','5','21432.53', '14','5','20873.69', '4','1','558.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093401.0','1044463.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004892.0','1018896.0','20', '16','8','8760.97', '12','4','5417.09', '11','4','3343.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093156.0','1044463.0','14', '13','2','1511.17', '11','0','0.0', '8','2','1511.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011153.0','1018896.0','8', '6','2','3033.63', '4','0','0.0', '4','2','3033.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099417.0','1044463.0','1', '1','1','181.88', '1','1','181.88', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005023.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093287.0','1044463.0','15', '13','4','6861.13', '11','3','6025.16', '5','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011154.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099418.0','1044463.0','35', '31','6','8636.75', '31','6','8636.75', '10','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004910.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093174.0','1044463.0','85', '79','52','115997.39', '72','41','88816.44', '50','23','27180.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004725.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092989.0','1044463.0','3', '3','1','328.95', '3','0','0.0', '2','1','328.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011155.0','1018896.0','1', '1','1','464.38', '1','1','464.38', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099419.0','1044463.0','13', '11','5','6892.59', '11','4','6184.48', '6','1','708.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002559.0','1018896.0','1', '1','1','3838.23', '1','1','3838.23', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090823.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005127.0','1018896.0','1', '1','1','1389.79', '1','1','1389.79', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093391.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002848.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091112.0','1044463.0','39', '38','15','54520.16', '35','12','52267.36', '13','4','2252.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011156.0','1018896.0','14', '10','4','3373.37', '10','4','2799.36', '7','1','574.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099420.0','1044463.0','71', '64','21','61096.23', '59','11','39700.08', '38','18','21396.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002583.0','1018896.0','302', '274','173','423027.6', '265','116','187926.96', '190','126','235100.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090847.0','1044463.0','36', '32','9','16949.02', '30','7','5021.87', '12','4','11927.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005199.0','1018896.0','1', '1','1','425.0', '1','0','0.0', '1','1','425.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093463.0','1044463.0','2', '2','1','835.97', '1','0','0.0', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002941.0','1018896.0','835', '801','257','223133.03', '752','22','31674.19', '416','246','191458.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091205.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011157.0','1018896.0','1', '1','1','6313.35', '1','1','967.0', '1','1','5346.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099421.0','1044463.0','885', '861','344','268516.33', '817','9','11206.65', '545','339','257309.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002997.0','1018896.0','44', '37','19','26918.07', '26','2','12510.0', '27','18','14408.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091261.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011158.0','1018896.0','1', '1','1','500.0', '1','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099422.0','1044463.0','921', '807','416','431497.07', '676','63','100365.16', '561','384','331131.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004976.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093240.0','1044463.0','67', '63','22','16930.57', '62','1','805.0', '29','21','16125.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004957.0','1018896.0','143', '120','36','65473.85', '116','14','46003.05', '52','28','19470.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093221.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004859.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093123.0','1044463.0','61', '47','23','32867.32', '43','5','12504.85', '39','21','20362.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004967.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093231.0','1044463.0','79', '75','35','36224.67', '60','6','6975.42', '55','30','29249.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004978.0','1018896.0','2', '2','1','2003.5', '1','1','2003.5', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093242.0','1044463.0','1', '1','1','2817.58', '1','1','805.0', '1','1','2012.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004686.0','1018896.0','19', '16','8','6289.83', '14','3','2617.0', '7','5','3672.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092950.0','1044463.0','27', '24','14','29772.46', '21','7','21036.45', '18','9','8736.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005177.0','1018896.0','2', '2','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093441.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004646.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092910.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005100.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093364.0','1044463.0','3416', '3281','1512','3151423.94', '3138','575','1957550.13', '1929','1160','1193873.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004840.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093104.0','1044463.0','1', '1','1','907.9', '1','0','0.0', '1','1','907.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011159.0','1018896.0','3723', '3239','1577','2502776.4', '2921','562','1227530.62', '2083','1244','1275245.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099423.0','1044463.0','6', '4','3','8261.37', '4','2','1358.36', '2','2','6903.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011160.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099424.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011161.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099425.0','1044463.0','36', '31','10','19279.24', '31','7','13912.95', '12','5','5366.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004868.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093132.0','1044463.0','2', '2','2','8357.01', '2','2','6231.47', '2','2','2125.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004902.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093166.0','1044463.0','472', '409','197','224587.26', '326','37','75213.36', '308','173','149373.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005021.0','1018896.0','9', '6','1','250.0', '6','0','0.0', '1','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093285.0','1044463.0','1', '1','1','4036.34', '1','1','3378.44', '1','1','657.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002945.0','1018896.0','7', '6','4','2973.72', '5','0','0.0', '5','4','2973.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091209.0','1044463.0','3', '3','3','28871.94', '3','1','12621.0', '3','3','16250.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003041.0','1018896.0','2', '2','1','1495.45', '2','1','659.48', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091305.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004965.0','1018896.0','6227', '5433','2394','2354689.86', '4856','317','473213.99', '3478','2210','1881475.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093229.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005085.0','1018896.0','34', '30','10','44680.73', '28','5','21014.84', '13','9','23665.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093349.0','1044463.0','2038', '1824','724','1088746.86', '1685','242','536547.96', '981','578','552198.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002620.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090884.0','1044463.0','2', '1','1','967.0', '1','1','967.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011162.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099426.0','1044463.0','1173', '1014','375','867755.09', '979','249','541983.23', '489','230','325771.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002787.0','1018896.0','32', '29','10','14648.21', '28','2','2324.98', '18','8','12323.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091051.0','1044463.0','3', '3','1','835.97', '3','0','0.0', '3','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002663.0','1018896.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090927.0','1044463.0','1', '1','1','6107.95', '1','1','6107.95', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002980.0','1018896.0','5', '3','1','1062.77', '3','0','0.0', '3','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091244.0','1044463.0','9', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011163.0','1018896.0','4', '4','2','1127.6', '4','0','0.0', '2','2','1127.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099427.0','1044463.0','156', '128','55','76338.13', '98','22','31610.47', '91','40','44727.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004852.0','1018896.0','2309', '2052','1070','2123224.22', '1857','394','1255308.2', '1274','834','867916.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093116.0','1044463.0','1', '1','1','3588.4', '1','1','3361.6', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011164.0','1018896.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099428.0','1044463.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011165.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099429.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005136.0','1018896.0','602', '497','208','531363.08', '479','152','385006.63', '258','111','146356.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093400.0','1044463.0','7', '6','2','14367.71', '6','1','5400.0', '5','2','8967.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005120.0','1018896.0','1', '1','1','465.81', '1','0','0.0', '1','1','465.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093384.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005157.0','1018896.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093421.0','1044463.0','5534', '4932','2063','2387564.98', '4408','474','800176.92', '2982','1765','1587388.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005059.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093323.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004752.0','1018896.0','6', '6','3','7470.38', '5','2','1598.34', '6','3','5872.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093016.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005196.0','1018896.0','1', '1','1','7679.34', '1','1','967.0', '1','1','6712.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093460.0','1044463.0','314', '305','155','406783.33', '302','105','336436.89', '143','70','70346.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011166.0','1018896.0','1', '1','1','596.47', '1','0','0.0', '1','1','596.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099430.0','1044463.0','1', '1','1','1305.0', '1','1','1305.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002911.0','1018896.0','492', '428','229','503120.15', '383','86','248110.14', '294','192','255010.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091175.0','1044463.0','294', '255','118','155295.8', '228','52','79758.33', '184','92','75537.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011167.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099431.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002817.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091081.0','1044463.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004992.0','1018896.0','7', '7','5','4539.47', '5','0','0.0', '6','5','4539.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093256.0','1044463.0','1', '1','1','280.03', '1','1','280.03', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002962.0','1018896.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091226.0','1044463.0','40', '34','5','10357.12', '34','3','8586.84', '9','3','1770.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004927.0','1018896.0','985', '932','320','278948.15', '881','41','57121.49', '482','291','221826.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093191.0','1044463.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004963.0','1018896.0','1', '1','1','191.23', '1','0','0.0', '1','1','191.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093227.0','1044463.0','7', '4','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011168.0','1018896.0','2', '2','1','1978.19', '2','1','1978.19', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099432.0','1044463.0','105', '98','59','73335.7', '89','11','15580.83', '73','55','57754.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004980.0','1018896.0','34', '28','16','13203.11', '21','2','885.54', '19','14','12317.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093244.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011169.0','1018896.0','5455', '5080','2065','2436522.83', '4699','390','772398.7', '3066','1860','1664124.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099433.0','1044463.0','2', '2','1','348.83', '2','0','0.0', '2','1','348.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011170.0','1018896.0','2', '2','1','1305.0', '2','1','1305.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099434.0','1044463.0','1', '1','1','346.47', '1','0','0.0', '1','1','346.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005183.0','1018896.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093447.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011171.0','1018896.0','1514', '1289','674','728768.67', '1050','127','194902.42', '923','603','533866.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099435.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011172.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099436.0','1044463.0','1', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005187.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093451.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004986.0','1018896.0','113', '99','55','55234.42', '79','5','13891.25', '75','51','41343.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093250.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005054.0','1018896.0','2845', '2341','942','1744349.26', '2140','462','975127.8', '1354','676','769221.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093318.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011173.0','1018896.0','84', '72','24','26025.85', '68','4','8214.3', '37','21','17811.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099437.0','1044463.0','7085', '6461','3400','4398204.07', '5776','879','1607364.14', '4376','2939','2790839.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002877.0','1018896.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091141.0','1044463.0','1', '1','1','471.92', '1','1','471.92', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002659.0','1018896.0','488', '477','290','316167.59', '430','30','90022.19', '377','272','226145.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090923.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002700.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090964.0','1044463.0','8', '8','3','3169.63', '8','3','3169.63', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002586.0','1018896.0','2079', '1700','806','1297775.76', '1481','290','480290.25', '1072','632','817485.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090850.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002943.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091207.0','1044463.0','1', '1','1','6705.0', '1','1','6705.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011174.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099438.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011175.0','1018896.0','1680', '1422','425','500765.7', '1283','103','187014.79', '768','360','313750.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099439.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002816.0','1018896.0','1', '1','1','212.49', '1','0','0.0', '1','1','212.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091080.0','1044463.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004894.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093158.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011176.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099440.0','1044463.0','2', '2','1','4115.93', '2','1','967.0', '1','1','3148.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011177.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099441.0','1044463.0','1795', '1643','759','639783.81', '1476','41','47934.4', '1122','741','591849.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002567.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090831.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011178.0','1018896.0','3', '3','1','1514.72', '3','0','0.0', '3','1','1514.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099442.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005051.0','1018896.0','1030', '941','512','716601.16', '861','121','285417.64', '652','451','431183.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093315.0','1044463.0','4', '4','1','835.97', '4','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005129.0','1018896.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093393.0','1044463.0','92', '77','31','32044.07', '58','10','10696.56', '51','25','21347.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004943.0','1018896.0','1834', '1670','874','1058787.65', '1438','184','371724.58', '1162','759','687063.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093207.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011179.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099443.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005035.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093299.0','1044463.0','1170', '982','410','441536.65', '862','84','134460.01', '611','357','307076.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005118.0','1018896.0','13', '11','6','21808.06', '11','5','16647.73', '4','2','5160.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093382.0','1044463.0','2', '2','1','3818.15', '2','0','0.0', '2','1','3818.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005036.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093300.0','1044463.0','38', '30','10','13194.7', '27','5','7904.92', '18','7','5289.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011180.0','1018896.0','1449', '1278','451','466678.91', '1180','86','143218.85', '647','388','323460.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099444.0','1044463.0','6', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011181.0','1018896.0','2', '2','1','8139.99', '1','1','2388.65', '2','1','5751.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099445.0','1044463.0','41', '41','15','15189.58', '41','1','1197.59', '24','15','13991.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004866.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093130.0','1044463.0','100', '86','41','38300.12', '65','9','9493.63', '67','35','28806.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005159.0','1018896.0','1', '1','1','2049.95', '1','1','1721.0', '1','1','328.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093423.0','1044463.0','3', '3','0','0.0', '3','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004983.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093247.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011182.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099446.0','1044463.0','3', '3','3','4087.38', '3','1','1961.84', '3','3','2125.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005180.0','1018896.0','1052', '975','416','450963.8', '917','70','133269.63', '565','369','317694.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093444.0','1044463.0','552', '472','198','388419.14', '444','109','255319.84', '255','128','133099.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004505.0','1018896.0','8', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092769.0','1044463.0','5296', '4848','2306','2581012.94', '4316','482','791858.3', '3187','2040','1789154.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004935.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004721.0','1018896.0','4', '4','3','2873.38', '4','0','0.0', '3','3','2873.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092985.0','1044463.0','223', '162','37','44302.17', '146','10','15680.6', '71','30','28621.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003036.0','1018896.0','1', '1','1','1123.24', '1','1','1123.24', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091300.0','1044463.0','7', '5','2','2389.92', '5','0','0.0', '2','2','2389.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002775.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091039.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002986.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091250.0','1044463.0','49', '46','17','34128.54', '44','6','21051.13', '28','14','13077.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002623.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090887.0','1044463.0','1', '1','1','805.0', '1','1','805.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003046.0','1018896.0','174', '143','53','46667.21', '118','9','6964.66', '98','46','39702.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091310.0','1044463.0','1245', '1159','320','297788.25', '1056','32','63567.49', '613','303','234220.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002625.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090889.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004480.0','1018896.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092744.0','1044463.0','3612', '3323','1738','2103785.41', '2903','312','764455.21', '2197','1509','1339330.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002785.0','1018896.0','3', '3','2','1917.88', '3','2','1917.88', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091049.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004827.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093091.0','1044463.0','1', '1','1','3731.67', '1','0','0.0', '1','1','3731.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002970.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091234.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002879.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091143.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004897.0','1018896.0','147', '130','43','80404.45', '124','19','46262.46', '58','33','34141.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093161.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002563.0','1018896.0','119', '107','50','66404.14', '94','8','22139.96', '76','47','44264.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090827.0','1044463.0','1', '1','1','558.25', '1','0','0.0', '1','1','558.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011183.0','1018896.0','2', '2','1','7852.35', '2','1','805.0', '2','1','7047.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099447.0','1044463.0','783', '699','281','364688.86', '657','68','116062.88', '396','240','248625.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002936.0','1018896.0','2137', '1771','870','1016334.09', '1523','201','265450.72', '1207','766','750883.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091200.0','1044463.0','1', '1','1','1200.0', '0','0','0.0', '1','1','1200.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004901.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093165.0','1044463.0','8', '7','3','3954.73', '5','1','967.0', '5','3','2987.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002969.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091233.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004848.0','1018896.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093112.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003000.0','1018896.0','859', '815','420','424094.24', '723','39','81110.16', '574','398','342984.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091264.0','1044463.0','1614', '1525','797','892676.41', '1344','114','288024.39', '1061','722','604652.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005006.0','1018896.0','1', '1','1','50.0', '1','0','0.0', '1','1','50.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093270.0','1044463.0','2', '2','1','5351.87', '2','1','5351.87', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004985.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093249.0','1044463.0','12', '11','3','2986.97', '10','1','1088.23', '5','2','1898.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004955.0','1018896.0','4489', '4123','1721','1517446.11', '3822','158','271599.81', '2512','1614','1245846.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093219.0','1044463.0','132', '124','81','77466.35', '115','7','11010.43', '97','77','66455.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003023.0','1018896.0','18', '16','5','7507.16', '15','2','1934.0', '12','5','5573.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091287.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011184.0','1018896.0','24', '17','5','9775.68', '15','2','6205.0', '8','4','3570.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099448.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011185.0','1018896.0','454', '407','169','355639.52', '396','99','246649.95', '213','108','108989.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099449.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002979.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091243.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005132.0','1018896.0','53', '49','10','8472.73', '45','1','231.52', '20','10','8241.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093396.0','1044463.0','1187', '1125','463','826681.68', '1056','174','433091.42', '650','366','393590.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003018.0','1018896.0','1', '1','1','118.41', '1','1','118.41', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091282.0','1044463.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005169.0','1018896.0','2', '2','2','7012.91', '2','1','5137.49', '2','1','1875.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093433.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004947.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093211.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005194.0','1018896.0','656', '537','196','172600.98', '477','32','33229.58', '291','174','139371.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093458.0','1044463.0','5', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005142.0','1018896.0','1770', '1686','615','545099.68', '1569','52','94192.07', '954','574','450907.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093406.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011186.0','1018896.0','3195', '2855','1658','4639759.79', '2631','937','3140605.17', '1776','1090','1499154.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099450.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002582.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090846.0','1044463.0','10', '10','3','1898.74', '10','0','0.0', '5','3','1898.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002584.0','1018896.0','1', '1','1','6441.77', '1','1','1610.0', '1','1','4831.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090848.0','1044463.0','1550', '1335','584','951201.05', '1207','254','451343.52', '835','438','499857.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011187.0','1018896.0','130', '118','53','81390.62', '111','16','39409.82', '65','45','41980.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099451.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002966.0','1018896.0','38', '32','12','9847.13', '27','1','433.78', '21','11','9413.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091230.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005174.0','1018896.0','1', '1','1','365.48', '1','0','0.0', '1','1','365.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093438.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005175.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093439.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004847.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093111.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005087.0','1018896.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093351.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004888.0','1018896.0','6', '5','3','1652.02', '5','2','487.1', '2','2','1164.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093152.0','1044463.0','1', '1','1','705.2', '1','0','0.0', '1','1','705.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004908.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093172.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005146.0','1018896.0','1', '1','1','805.0', '1','1','805.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093410.0','1044463.0','1', '1','1','657.9', '1','0','0.0', '1','1','657.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011188.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099452.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003050.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091314.0','1044463.0','2173', '1878','897','898075.85', '1614','177','271760.21', '1185','765','626315.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002946.0','1018896.0','974', '794','360','406957.99', '670','68','118345.75', '516','318','288612.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091210.0','1044463.0','2', '2','1','6897.0', '2','1','6897.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005135.0','1018896.0','85', '70','22','53108.42', '63','9','30286.32', '34','19','22822.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093399.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004949.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093213.0','1044463.0','5', '3','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011189.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099453.0','1044463.0','36', '32','14','10399.07', '25','2','681.19', '26','12','9717.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011190.0','1018896.0','5128', '4335','1746','2069365.88', '3784','486','702413.58', '2723','1462','1366952.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099454.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002737.0','1018896.0','1', '1','1','805.0', '1','1','805.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091001.0','1044463.0','9', '9','4','2035.82', '9','1','111.04', '6','3','1924.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002881.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091145.0','1044463.0','1', '1','1','6444.01', '1','1','6205.0', '1','1','239.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011191.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099455.0','1044463.0','4524', '4011','1854','4496845.88', '3833','1041','2611478.02', '2273','1244','1885367.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002752.0','1018896.0','7', '6','4','9343.74', '5','3','6790.98', '5','3','2552.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091016.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002984.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091248.0','1044463.0','3', '3','2','2380.91', '3','2','2380.91', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011192.0','1018896.0','1', '1','1','692.93', '1','0','0.0', '1','1','692.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099456.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005119.0','1018896.0','406', '331','142','160217.84', '292','24','56609.67', '207','125','103608.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093383.0','1044463.0','332', '266','149','291545.31', '256','104','208471.37', '169','87','83073.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005002.0','1018896.0','223', '214','112','104413.97', '191','16','20218.66', '154','105','84195.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093266.0','1044463.0','1', '1','1','6038.01', '1','1','805.0', '1','1','5233.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004906.0','1018896.0','271', '241','52','57637.7', '235','14','21776.84', '77','42','35860.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093170.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011193.0','1018896.0','1', '1','1','1867.77', '1','1','805.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099457.0','1044463.0','14', '12','6','11091.88', '11','1','6205.0', '8','6','4886.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011194.0','1018896.0','1', '1','1','328.95', '0','0','0.0', '1','1','328.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099458.0','1044463.0','17', '14','5','11329.7', '10','2','8594.99', '11','3','2734.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004989.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093253.0','1044463.0','3', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011195.0','1018896.0','1', '1','1','4802.64', '1','1','805.0', '1','1','3997.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099459.0','1044463.0','3', '3','1','805.0', '3','1','805.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005131.0','1018896.0','4', '3','1','1734.58', '3','1','1734.58', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093395.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004915.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093179.0','1044463.0','257', '216','97','254138.58', '212','58','134067.62', '121','66','120070.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005185.0','1018896.0','142', '120','64','67092.39', '87','7','15595.57', '97','60','51496.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093449.0','1044463.0','5', '5','1','744.44', '5','0','0.0', '3','1','744.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005134.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093398.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011196.0','1018896.0','142', '111','29','42301.61', '110','16','28504.7', '38','16','13796.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099460.0','1044463.0','5', '5','4','2734.71', '5','0','0.0', '5','4','2734.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002783.0','1018896.0','1', '1','1','2849.04', '1','1','1917.45', '1','1','931.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091047.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004928.0','1018896.0','3', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093192.0','1044463.0','132', '116','39','77334.04', '108','21','49360.48', '52','24','27973.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002819.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091083.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011197.0','1018896.0','1', '1','1','1595.27', '1','1','1595.27', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099461.0','1044463.0','40', '36','23','22040.29', '33','6','7599.13', '27','18','14441.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002937.0','1018896.0','3470', '3037','1127','1439419.18', '2751','357','612572.88', '1591','870','826846.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091201.0','1044463.0','848', '724','348','385017.85', '609','83','112194.3', '469','292','272823.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005072.0','1018896.0','9', '9','3','1886.72', '7','0','0.0', '6','3','1886.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093336.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003049.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091313.0','1044463.0','4', '4','1','191.59', '4','1','191.59', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011198.0','1018896.0','3', '3','2','2736.36', '3','0','0.0', '3','2','2736.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099462.0','1044463.0','581', '503','226','328261.42', '443','81','166356.12', '314','167','161905.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004905.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093169.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011199.0','1018896.0','7867', '7017','3257','5559637.24', '6623','1608','2681762.45', '4492','2389','2877874.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099463.0','1044463.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011200.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099464.0','1044463.0','10', '9','5','4085.9', '7','1','670.79', '7','5','3415.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004930.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093194.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011201.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099465.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004982.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093246.0','1044463.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004911.0','1018896.0','1823', '1677','442','410531.43', '1608','86','135178.37', '765','374','275353.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093175.0','1044463.0','1', '1','1','1305.0', '1','1','1305.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005015.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093279.0','1044463.0','1711', '1459','695','892262.86', '1283','200','330556.68', '917','567','561706.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011202.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099466.0','1044463.0','4', '3','1','776.16', '3','1','776.16', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005092.0','1018896.0','515', '483','222','203037.93', '443','39','41882.44', '275','198','161155.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093356.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003001.0','1018896.0','986', '942','340','356271.12', '881','50','109108.08', '543','304','247163.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091265.0','1044463.0','1220', '1131','567','843763.48', '1058','183','438642.17', '721','448','405121.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005047.0','1018896.0','1', '1','1','18982.23', '1','1','11825.75', '1','1','7156.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093311.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005200.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093464.0','1044463.0','2', '2','1','2029.77', '2','1','967.0', '2','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002948.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091212.0','1044463.0','905', '781','330','421284.49', '717','120','164195.18', '446','256','257089.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005126.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093390.0','1044463.0','4783', '4323','2270','4013865.79', '3963','978','1856212.61', '2859','1749','2157653.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005148.0','1018896.0','2', '2','1','250.0', '1','0','0.0', '2','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093412.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005050.0','1018896.0','667', '639','236','226105.11', '613','29','55106.06', '351','219','170999.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093314.0','1044463.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004876.0','1018896.0','849', '809','118','90991.97', '778','26','30753.93', '281','93','60238.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093140.0','1044463.0','3', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011203.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099467.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004574.0','1018896.0','2', '1','1','491.85', '1','0','0.0', '1','1','491.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2092838.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011204.0','1018896.0','3', '3','1','1633.95', '3','1','1305.0', '1','1','328.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099468.0','1044463.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002714.0','1018896.0','1882', '1746','814','1460181.49', '1622','223','720503.92', '1102','690','739677.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090978.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002874.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091138.0','1044463.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011205.0','1018896.0','549', '474','254','286935.99', '409','42','73011.71', '331','237','213924.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099469.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003019.0','1018896.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091283.0','1044463.0','228', '210','65','52589.36', '198','7','6491.78', '91','59','46097.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004838.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093102.0','1044463.0','1', '1','1','770.59', '1','1','28.6', '1','1','741.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005000.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093264.0','1044463.0','2489', '2019','734','1322331.84', '1847','393','726389.88', '1093','476','595941.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005032.0','1018896.0','428', '408','152','212365.0', '390','31','80277.56', '219','137','132087.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093296.0','1044463.0','435', '419','269','258837.62', '383','40','39024.8', '342','258','219812.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011206.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099470.0','1044463.0','1924', '1686','547','769745.48', '1569','192','407779.88', '844','407','361965.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011207.0','1018896.0','50', '44','18','13550.41', '41','0','0.0', '28','18','13550.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099471.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011208.0','1018896.0','360', '345','215','277514.67', '317','36','106614.94', '276','200','170899.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099472.0','1044463.0','87', '71','31','31423.47', '65','9','11252.27', '41','24','20171.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005067.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093331.0','1044463.0','1', '1','1','2866.84', '1','1','965.67', '1','1','1901.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004904.0','1018896.0','5', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093168.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002987.0','1018896.0','126', '125','83','99164.14', '113','16','30409.27', '101','80','68754.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091251.0','1044463.0','2153', '1987','782','1192592.29', '1881','270','453445.12', '1130','644','739147.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003013.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091277.0','1044463.0','1', '1','1','11867.0', '1','1','11867.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005084.0','1018896.0','3', '3','0','0.0', '3','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093348.0','1044463.0','19', '15','6','4968.44', '13','0','0.0', '8','6','4968.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005165.0','1018896.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093429.0','1044463.0','2', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005150.0','1018896.0','1711', '1584','515','448893.09', '1460','58','83902.73', '813','469','364990.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093414.0','1044463.0','1', '1','1','805.0', '1','1','805.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011209.0','1018896.0','3174', '2690','1229','1459017.3', '2370','323','590306.11', '1662','1013','868711.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099473.0','1044463.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011210.0','1018896.0','25', '23','14','16645.27', '22','5','7700.2', '12','12','8945.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099474.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002581.0','1018896.0','3384', '2939','1039','1266957.01', '2719','292','514802.52', '1511','836','752154.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090845.0','1044463.0','177', '167','25','24240.25', '156','5','10501.38', '66','20','13738.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002660.0','1018896.0','71', '65','39','110036.99', '63','29','88435.71', '38','24','21601.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090924.0','1044463.0','76', '64','30','25484.55', '60','0','0.0', '45','30','25484.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002688.0','1018896.0','8', '7','1','6577.62', '7','1','5400.0', '5','1','1177.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090952.0','1044463.0','1845', '1694','441','381668.76', '1586','63','111885.02', '815','393','269783.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011211.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099475.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004858.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093122.0','1044463.0','44', '42','23','28747.35', '39','3','12070.82', '26','22','16676.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011212.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099476.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004860.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093124.0','1044463.0','5702', '5087','1926','2364592.62', '4675','421','880098.32', '2819','1657','1484494.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004903.0','1018896.0','5', '5','1','805.0', '4','1','805.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093167.0','1044463.0','1', '1','1','967.0', '1','1','967.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004867.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093131.0','1044463.0','1', '1','1','1521.87', '1','1','1521.87', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005181.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093445.0','1044463.0','156', '144','55','72881.43', '133','10','26327.97', '82','48','46553.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004909.0','1018896.0','1', '1','1','216.29', '1','1','216.29', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093173.0','1044463.0','2544', '2177','780','730350.9', '1932','113','158816.73', '1233','700','571534.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004956.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093220.0','1044463.0','6492', '5902','2807','4887183.89', '5471','1178','2597583.57', '3656','2099','2289600.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011213.0','1018896.0','61', '54','32','83641.47', '53','29','65346.79', '38','14','18294.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099477.0','1044463.0','1', '1','1','11705.0', '1','1','11705.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005107.0','1018896.0','2539', '2226','738','1155828.43', '2108','338','704040.48', '1038','491','451787.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093371.0','1044463.0','43', '42','26','23372.14', '40','2','3797.8', '33','25','19574.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011214.0','1018896.0','7103', '6484','2612','3603878.19', '6037','820','1730535.83', '3573','2008','1873342.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099478.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005201.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093465.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011215.0','1018896.0','1', '1','1','1058.41', '1','0','0.0', '1','1','1058.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099479.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005101.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093365.0','1044463.0','194', '161','79','83923.99', '140','12','20459.06', '118','73','63464.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002696.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090960.0','1044463.0','1', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002684.0','1018896.0','1', '1','1','594.0', '1','0','0.0', '1','1','594.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2090948.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011216.0','1018896.0','3', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099480.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002820.0','1018896.0','1', '1','1','2215.6', '1','1','2215.6', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091084.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011217.0','1018896.0','2542', '2471','987','1012443.24', '2342','124','280065.61', '1490','919','732377.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099481.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004844.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093108.0','1044463.0','918', '793','216','201237.83', '766','30','55738.94', '344','190','145498.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004923.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093187.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005057.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093321.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005003.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093267.0','1044463.0','21', '19','6','17250.39', '19','3','14377.0', '8','4','2873.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004863.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093127.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004886.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093150.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011218.0','1018896.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099482.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005073.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093337.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011219.0','1018896.0','1', '1','1','6425.51', '1','1','3460.0', '1','1','2965.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099483.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005130.0','1018896.0','1', '1','1','1158.21', '1','1','95.44', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093394.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004972.0','1018896.0','3896', '3633','1464','2852939.31', '3454','484','1645774.09', '2015','1139','1207165.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093236.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002999.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091263.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004873.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093137.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004984.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093248.0','1044463.0','17', '16','4','3601.71', '16','1','1093.8', '8','3','2507.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011220.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099484.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004877.0','1018896.0','2', '1','1','1840.31', '1','1','1004.34', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093141.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004898.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093162.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004954.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093218.0','1044463.0','156', '101','21','18198.79', '92','4','1837.56', '45','19','16361.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004871.0','1018896.0','1', '1','1','774.73', '1','0','0.0', '1','1','774.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093135.0','1044463.0','401', '368','134','166209.82', '353','37','66000.3', '216','114','100209.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005190.0','1018896.0','51', '50','37','44826.18', '35','7','18072.84', '41','31','26753.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093454.0','1044463.0','241', '231','139','174705.21', '206','23','46957.24', '182','134','127747.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003027.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091291.0','1044463.0','215', '202','115','111025.75', '167','6','17422.29', '143','113','93603.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003039.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091303.0','1044463.0','11', '10','6','18652.19', '9','4','13632.21', '8','5','5019.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011221.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099485.0','1044463.0','155', '121','50','146550.97', '116','40','112473.64', '57','24','34077.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005145.0','1018896.0','3', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093409.0','1044463.0','1', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005154.0','1018896.0','2', '2','2','1740.19', '2','0','0.0', '2','2','1740.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093418.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005205.0','1018896.0','54', '47','28','25973.76', '36','2','2353.74', '36','27','23620.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093469.0','1044463.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002956.0','1018896.0','2', '2','1','2639.67', '2','1','1803.7', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091220.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005229.0','1018896.0','470', '464','290','260372.47', '430','15','21443.78', '373','286','238928.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093493.0','1044463.0','159', '143','58','77915.94', '134','24','44219.86', '79','41','33696.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011222.0','1018896.0','1', '1','1','1802.97', '1','1','967.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099486.0','1044463.0','4', '2','2','2971.76', '2','1','2135.79', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005147.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093411.0','1044463.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002994.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091258.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003229.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091493.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005223.0','1018896.0','3', '2','2','8257.3', '2','2','8257.3', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093487.0','1044463.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011223.0','1018896.0','4', '4','3','2474.37', '4','0','0.0', '3','3','2474.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099487.0','1044463.0','23', '14','4','3281.94', '11','2','1610.0', '8','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011224.0','1018896.0','2726', '2512','1141','1123919.09', '2258','166','265068.62', '1553','1037','858850.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099488.0','1044463.0','614', '535','275','304438.86', '458','62','82458.94', '367','240','221979.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005061.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093325.0','1044463.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003028.0','1018896.0','2', '2','1','192.6', '2','1','192.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091292.0','1044463.0','1', '1','1','857.39', '1','0','0.0', '1','1','857.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003031.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091295.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011225.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099489.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003042.0','1018896.0','62', '51','19','35991.62', '50','9','16355.53', '21','13','19636.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091306.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011226.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099490.0','1044463.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011227.0','1018896.0','1', '1','1','250.0', '1','0','0.0', '1','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099491.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003241.0','1018896.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091505.0','1044463.0','1', '1','1','83.47', '1','0','0.0', '1','1','83.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005234.0','1018896.0','47', '37','12','19658.65', '33','5','14839.58', '27','8','4819.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093498.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003171.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091435.0','1044463.0','4107', '3866','2138','2333903.07', '3420','272','612227.07', '2743','1994','1721676.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003224.0','1018896.0','6', '3','1','1315.79', '3','0','0.0', '1','1','1315.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091488.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011228.0','1018896.0','1', '1','1','1507.11', '1','1','1507.11', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099492.0','1044463.0','408', '384','82','72197.35', '369','9','25150.44', '169','75','47046.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003163.0','1018896.0','2', '2','1','1596.39', '1','1','1596.39', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091427.0','1044463.0','1', '1','1','1362.12', '1','1','1362.12', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003396.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091660.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003167.0','1018896.0','1129', '960','358','581166.64', '898','148','279415.96', '555','279','301750.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091431.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011229.0','1018896.0','1', '1','1','967.0', '1','1','967.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099493.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003197.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091461.0','1044463.0','107', '79','21','36940.68', '71','9','20238.36', '39','16','16702.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011230.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099494.0','1044463.0','394', '344','109','109174.94', '324','18','33212.41', '165','96','75962.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003134.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091398.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011231.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099495.0','1044463.0','24', '20','3','4009.68', '20','2','2337.74', '6','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005197.0','1018896.0','1', '1','1','1303.35', '1','1','1303.35', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093461.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011232.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099496.0','1044463.0','33', '29','5','7796.21', '27','2','5061.5', '13','3','2734.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003239.0','1018896.0','2485', '2322','911','876084.64', '2057','97','184291.71', '1398','842','691792.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091503.0','1044463.0','1', '1','1','4000.0', '1','0','0.0', '1','1','4000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004951.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093215.0','1044463.0','1355', '1250','737','733831.03', '1072','81','124382.01', '961','685','609449.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002978.0','1018896.0','707', '688','210','197832.06', '652','16','37435.95', '355','201','160396.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091242.0','1044463.0','3', '3','1','1997.93', '3','1','1305.0', '2','1','692.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011233.0','1018896.0','8', '6','1','835.97', '6','0','0.0', '4','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099497.0','1044463.0','3455', '3095','1081','1645786.62', '2859','376','866894.66', '1680','857','778891.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011234.0','1018896.0','29', '25','10','31114.41', '24','5','25133.98', '13','7','5980.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099498.0','1044463.0','1', '1','1','1305.41', '1','1','242.64', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003216.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091480.0','1044463.0','1', '1','1','782.65', '1','0','0.0', '1','1','782.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011235.0','1018896.0','2641', '2500','1111','1094827.13', '2341','107','229424.99', '1535','1033','865402.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099499.0','1044463.0','1', '1','1','670.88', '1','1','444.08', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003067.0','1018896.0','178', '137','70','400440.11', '134','60','269062.45', '74','43','131377.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091331.0','1044463.0','1520', '1460','829','783373.57', '1338','71','96444.64', '1127','805','686928.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003160.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091424.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005163.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093427.0','1044463.0','7', '6','2','1671.94', '5','0','0.0', '3','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011236.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099500.0','1044463.0','1', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003040.0','1018896.0','3553', '3140','1366','2013183.92', '2842','449','843522.85', '1993','1118','1169661.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091304.0','1044463.0','4', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011237.0','1018896.0','34', '32','12','25129.61', '32','11','16018.18', '18','7','9111.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099501.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002982.0','1018896.0','3', '2','1','5308.14', '2','1','5186.11', '1','1','122.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091246.0','1044463.0','86', '85','56','57140.1', '77','3','6875.79', '70','56','50264.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011238.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099502.0','1044463.0','3', '2','2','2339.45', '2','1','1503.48', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011239.0','1018896.0','371', '288','117','134387.58', '255','41','55371.13', '171','88','79016.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099503.0','1044463.0','1', '1','1','1147.79', '1','0','0.0', '1','1','1147.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011240.0','1018896.0','1', '1','1','561.8', '0','0','0.0', '1','1','561.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099504.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003144.0','1018896.0','4511', '4121','1551','1976754.49', '3829','403','611074.1', '2296','1321','1365680.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091408.0','1044463.0','1', '1','1','561.79', '1','0','0.0', '1','1','561.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011241.0','1018896.0','493', '412','118','103700.45', '381','23','27979.2', '218','103','75721.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099505.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011242.0','1018896.0','3', '2','2','2272.0', '2','2','2272.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099506.0','1044463.0','1', '1','1','8335.94', '1','1','1612.6', '1','1','6723.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005211.0','1018896.0','1', '1','1','632.36', '1','0','0.0', '1','1','632.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093475.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003091.0','1018896.0','491', '440','225','265401.79', '373','41','77748.87', '288','199','187652.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091355.0','1044463.0','1545', '1423','755','1732917.75', '1366','575','1236171.13', '854','361','496746.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005347.0','1018896.0','4', '3','1','835.97', '3','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093611.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003154.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091418.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011243.0','1018896.0','34', '34','18','28935.28', '28','7','19621.66', '20','12','9313.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099507.0','1044463.0','1159', '1031','418','463421.63', '917','107','170573.21', '592','342','292848.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003156.0','1018896.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091420.0','1044463.0','557', '507','258','222395.75', '381','22','16619.64', '360','250','205776.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003199.0','1018896.0','843', '740','307','381250.3', '678','140','226783.77', '384','198','154466.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091463.0','1044463.0','1', '1','1','250.0', '1','0','0.0', '1','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003076.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091340.0','1044463.0','1414', '1267','501','482519.24', '1099','90','140640.42', '750','429','341878.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011244.0','1018896.0','1', '1','1','1477.14', '1','1','1477.14', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099508.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003249.0','1018896.0','5', '4','2','5385.48', '4','2','3876.31', '1','1','1509.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091513.0','1044463.0','83', '74','41','53365.85', '70','15','31531.87', '45','28','21833.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005280.0','1018896.0','1', '1','1','226.8', '0','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093544.0','1044463.0','10', '8','4','9447.89', '8','4','6044.53', '7','1','3403.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011245.0','1018896.0','445', '411','167','152133.18', '344','16','28132.31', '264','153','124000.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099509.0','1044463.0','460', '421','149','140507.57', '384','71','70720.98', '273','96','69786.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003147.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091411.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011246.0','1018896.0','1', '1','1','9070.98', '1','1','6165.0', '1','1','2905.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099510.0','1044463.0','3', '3','2','4402.19', '3','2','3566.22', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003209.0','1018896.0','22', '19','7','4367.53', '17','2','796.85', '9','5','3570.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091473.0','1044463.0','1', '1','1','639.0', '1','1','639.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005245.0','1018896.0','1', '1','1','143.16', '1','0','0.0', '1','1','143.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093509.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003133.0','1018896.0','2', '2','2','1392.97', '2','1','557.0', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091397.0','1044463.0','1', '1','1','1540.26', '1','1','1540.26', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003078.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091342.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011247.0','1018896.0','521', '460','160','163083.17', '407','34','51438.63', '260','135','111644.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099511.0','1044463.0','243', '216','94','83651.31', '150','5','10858.39', '150','90','72792.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005242.0','1018896.0','1208', '1147','637','716880.37', '914','175','261334.3', '786','543','455546.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093506.0','1044463.0','172', '143','62','114930.72', '121','19','77007.05', '82','45','37923.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005081.0','1018896.0','30', '27','14','19170.52', '26','7','8455.29', '18','11','10715.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093345.0','1044463.0','1', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004919.0','1018896.0','1', '1','1','699.07', '1','1','699.07', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093183.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011248.0','1018896.0','1797', '1583','582','647971.45', '1393','169','271211.24', '849','462','376760.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099512.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011249.0','1018896.0','54', '51','22','27493.91', '44','10','10386.34', '33','17','17107.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099513.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011250.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099514.0','1044463.0','7', '5','4','12534.43', '5','3','9283.13', '5','2','3251.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005086.0','1018896.0','272', '244','93','91207.98', '188','11','18260.73', '159','88','72947.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093350.0','1044463.0','651', '609','215','225788.43', '531','47','76797.4', '318','185','148991.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011251.0','1018896.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099515.0','1044463.0','1', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002949.0','1018896.0','14', '11','3','3364.29', '11','3','2019.44', '5','1','1344.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091213.0','1044463.0','3', '3','2','4761.79', '2','1','476.0', '2','2','4285.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003099.0','1018896.0','5', '5','4','10470.47', '5','4','9051.52', '4','1','1418.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091363.0','1044463.0','1', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003101.0','1018896.0','3871', '3715','2104','6902753.05', '3600','1263','4066993.44', '2550','1471','2835759.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091365.0','1044463.0','579', '490','222','255428.16', '436','87','115710.14', '292','163','139718.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003121.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091385.0','1044463.0','591', '513','200','186691.01', '433','31','36728.6', '295','176','149962.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005155.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093419.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005237.0','1018896.0','513', '462','189','166406.45', '383','35','39320.09', '262','160','127086.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093501.0','1044463.0','2', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011252.0','1018896.0','1', '1','1','978.89', '1','1','619.04', '1','1','359.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099516.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005143.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093407.0','1044463.0','587', '526','211','171018.49', '433','19','15303.97', '325','199','155714.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003258.0','1018896.0','1', '1','1','942.28', '1','1','942.28', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091522.0','1044463.0','67', '59','33','40798.82', '45','10','21175.59', '45','28','19623.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011253.0','1018896.0','142', '130','64','58193.64', '84','4','6552.12', '101','62','51641.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099517.0','1044463.0','1', '1','1','17775.66', '1','1','11376.0', '1','1','6399.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002974.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091238.0','1044463.0','873', '825','430','389361.2', '639','65','84303.49', '597','393','305057.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011254.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099518.0','1044463.0','58', '58','27','36863.62', '57','13','18005.26', '40','18','18858.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011255.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099519.0','1044463.0','1', '1','1','1129.0', '1','1','879.0', '1','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003233.0','1018896.0','18', '17','4','8834.84', '16','2','6586.96', '11','3','2247.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091497.0','1044463.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011256.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099520.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011257.0','1018896.0','217', '205','113','172939.37', '168','39','84227.77', '145','91','88711.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099521.0','1044463.0','629', '573','318','347072.47', '417','46','83106.34', '409','280','263966.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011258.0','1018896.0','3', '2','1','1066.08', '2','1','639.0', '1','1','427.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099522.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003196.0','1018896.0','949', '872','446','1094058.52', '848','326','708096.31', '532','259','385962.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091460.0','1044463.0','976', '900','436','619746.63', '796','183','322386.31', '570','307','297360.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003069.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091333.0','1044463.0','1', '1','1','1561.5', '1','1','728.0', '1','1','833.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005213.0','1018896.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093477.0','1044463.0','400', '376','145','142729.13', '302','28','35376.58', '212','123','107352.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011259.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099523.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005368.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093632.0','1044463.0','244', '229','127','199654.18', '173','43','114663.5', '158','96','84990.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011260.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099524.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011261.0','1018896.0','181', '166','78','66329.64', '123','5','6388.76', '109','74','59940.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099525.0','1044463.0','112', '106','65','75729.39', '78','18','32435.74', '81','54','43293.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011262.0','1018896.0','3', '2','1','627.93', '2','1','627.93', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099526.0','1044463.0','710', '639','275','326075.55', '513','84','156943.22', '410','211','169132.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011263.0','1018896.0','4', '4','1','835.97', '4','0','0.0', '3','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099527.0','1044463.0','8', '8','0','0.0', '8','0','0.0', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011264.0','1018896.0','916', '855','411','744516.4', '740','178','417195.5', '536','287','327320.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099528.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011265.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099529.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005282.0','1018896.0','22', '19','5','2570.74', '17','3','1281.17', '10','2','1289.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093546.0','1044463.0','2', '2','1','1811.95', '1','1','975.98', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005240.0','1018896.0','634', '595','248','251438.43', '499','47','74204.14', '417','216','177234.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093504.0','1044463.0','2', '2','1','11539.0', '2','1','11539.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011266.0','1018896.0','3', '3','2','2970.56', '3','0','0.0', '3','2','2970.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099530.0','1044463.0','35', '33','9','14172.74', '28','1','5400.0', '15','9','8772.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003055.0','1018896.0','91', '87','43','55163.43', '69','18','32083.89', '56','27','23079.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091319.0','1044463.0','310', '278','124','123104.68', '218','29','31348.11', '190','102','91756.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011267.0','1018896.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099531.0','1044463.0','1', '1','1','514.17', '1','1','514.17', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005345.0','1018896.0','13', '11','4','3467.0', '8','3','2276.5', '7','2','1190.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093609.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011268.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099532.0','1044463.0','2', '2','1','468.0', '2','1','468.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003454.0','1018896.0','239', '202','73','61732.24', '170','13','16774.81', '121','63','44957.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091718.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003243.0','1018896.0','1', '1','1','6431.8', '1','1','6205.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091507.0','1044463.0','179', '171','88','152842.56', '157','37','59052.23', '130','71','93790.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003081.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091345.0','1044463.0','6', '6','3','8409.55', '6','2','7573.58', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003109.0','1018896.0','250', '228','98','90659.45', '181','16','22931.92', '131','85','67727.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091373.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003211.0','1018896.0','8', '8','1','2275.28', '8','1','2275.28', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091475.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003185.0','1018896.0','1', '1','1','8471.82', '1','1','639.0', '1','1','7832.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091449.0','1044463.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011269.0','1018896.0','1600', '1475','580','507274.94', '1292','109','128549.05', '876','498','378725.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099533.0','1044463.0','75', '67','30','23251.59', '40','0','0.0', '55','30','23251.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005294.0','1018896.0','1', '1','1','2298.7', '1','1','2071.9', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093558.0','1044463.0','143', '124','58','120225.58', '105','31','58660.14', '83','37','61565.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005355.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093619.0','1044463.0','276', '240','144','145835.41', '175','28','46835.68', '175','121','98999.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003141.0','1018896.0','1192', '1075','448','459832.4', '900','115','146201.6', '644','372','313630.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091405.0','1044463.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003315.0','1018896.0','439', '396','225','185241.02', '248','9','6999.23', '307','219','178241.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091579.0','1044463.0','14', '13','7','39704.71', '13','6','31254.77', '4','2','8449.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005218.0','1018896.0','374', '347','194','173647.62', '253','11','19905.78', '301','187','153741.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093482.0','1044463.0','8', '8','3','2415.0', '8','3','2415.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003182.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091446.0','1044463.0','2', '2','2','1671.94', '2','0','0.0', '2','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005403.0','1018896.0','271', '236','126','177714.83', '207','78','121174.54', '129','68','56540.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093667.0','1044463.0','3', '3','1','434.18', '3','1','434.18', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011270.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099534.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005394.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093658.0','1044463.0','2', '2','1','5749.96', '1','1','476.0', '2','1','5273.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011271.0','1018896.0','43', '43','24','21070.93', '34','9','7056.09', '34','17','14014.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099535.0','1044463.0','152', '139','60','133781.2', '107','22','88066.44', '98','47','45714.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2007279.0','1018896.0','1247', '1155','623','535245.92', '813','51','60436.95', '829','586','474808.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2095543.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005380.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093644.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011272.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099536.0','1044463.0','264', '229','87','70652.97', '171','9','6174.38', '141','78','64478.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005399.0','1018896.0','40', '38','16','26122.41', '35','6','13956.98', '31','14','12165.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093663.0','1044463.0','113', '101','49','48587.04', '68','4','9585.44', '73','46','39001.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005189.0','1018896.0','1', '1','1','639.0', '1','1','639.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093453.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005519.0','1018896.0','1', '1','1','250.0', '1','0','0.0', '1','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093783.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2004988.0','1018896.0','355', '309','85','96559.49', '266','20','28576.06', '178','72','67983.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093252.0','1044463.0','2508', '2214','952','1267926.3', '1950','231','516359.28', '1321','805','751567.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003407.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091671.0','1044463.0','2378', '2081','939','1432685.83', '1908','345','591674.41', '1464','771','841011.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011273.0','1018896.0','2', '2','2','1867.77', '1','1','805.0', '2','2','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099537.0','1044463.0','1', '1','1','805.0', '1','1','805.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002953.0','1018896.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091217.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003463.0','1018896.0','1987', '1747','848','1237966.46', '1583','365','598183.23', '1197','653','639783.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091727.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003022.0','1018896.0','3', '2','1','1062.77', '1','0','0.0', '2','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091286.0','1044463.0','1506', '1310','527','784177.92', '1120','150','306900.07', '891','433','477277.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011274.0','1018896.0','1552', '1410','478','601792.91', '1285','128','202994.52', '824','409','398798.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099538.0','1044463.0','19', '19','8','5195.21', '16','0','0.0', '13','8','5195.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011275.0','1018896.0','1', '1','1','503.81', '1','1','503.81', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099539.0','1044463.0','1698', '1577','661','1515083.4', '1482','349','964297.75', '845','462','550785.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011276.0','1018896.0','25', '23','11','14082.28', '23','3','8294.97', '17','8','5787.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099540.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011277.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099541.0','1044463.0','3064', '2647','1293','1400542.49', '2274','217','351488.46', '1790','1174','1049054.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003436.0','1018896.0','5', '4','1','250.0', '3','0','0.0', '2','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091700.0','1044463.0','102', '78','29','45318.32', '68','10','26534.83', '48','21','18783.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005209.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093473.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2003090.0','1018896.0','108', '106','62','51961.02', '83','1','659.92', '85','61','51301.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2091354.0','1044463.0','2', '2','1','4516.27', '2','1','3680.3', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003193.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091457.0','1044463.0','181', '127','43','66000.34', '111','23','28306.25', '85','33','37694.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002957.0','1018896.0','2152', '1787','728','877334.21', '1609','183','299901.96', '1052','621','577432.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091221.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011278.0','1018896.0','2985', '2643','906','1149022.63', '2460','359','544731.26', '1341','654','604291.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099542.0','1044463.0','3', '3','1','654.98', '3','0','0.0', '1','1','654.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003172.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091436.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005314.0','1018896.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093578.0','1044463.0','2', '2','2','1802.97', '2','1','967.0', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011279.0','1018896.0','5', '3','1','835.97', '3','0','0.0', '3','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099543.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005256.0','1018896.0','465', '389','180','203454.35', '341','59','91694.35', '241','132','111760.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093520.0','1044463.0','1', '1','1','1014.62', '1','0','0.0', '1','1','1014.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003152.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091416.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003093.0','1018896.0','716', '615','260','367322.37', '562','103','177025.5', '352','198','190296.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091357.0','1044463.0','18', '15','8','7052.33', '12','1','565.6', '12','8','6486.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003127.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091391.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003220.0','1018896.0','41', '8','0','0.0', '3','0','0.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091484.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005317.0','1018896.0','9', '8','4','17396.29', '6','2','7010.0', '6','4','10386.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093581.0','1044463.0','404', '373','212','204789.29', '283','21','40109.58', '290','201','164679.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005166.0','1018896.0','1943', '1673','608','849458.06', '1495','221','424204.5', '951','466','425253.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093430.0','1044463.0','1', '1','1','1885.99', '1','1','860.28', '1','1','1025.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011280.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099544.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005128.0','1018896.0','1474', '1240','619','1147547.02', '1147','400','526831.82', '718','382','620715.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093392.0','1044463.0','1', '1','1','8811.52', '1','1','3106.23', '1','1','5705.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003301.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091565.0','1044463.0','2', '2','2','3976.47', '2','2','2994.0', '2','1','982.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003020.0','1018896.0','154', '101','37','33160.16', '76','9','10620.86', '63','31','22539.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091284.0','1044463.0','1998', '1792','720','810459.03', '1642','206','282262.78', '1153','583','528196.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005416.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093680.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003047.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091311.0','1044463.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011281.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099545.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011282.0','1018896.0','119', '111','58','69846.91', '73','13','31961.56', '82','46','37885.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099546.0','1044463.0','845', '742','381','339551.0', '576','21','31796.02', '579','370','307754.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011283.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099547.0','1044463.0','2195', '2032','802','1071636.29', '1879','298','475430.95', '1267','633','596205.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005518.0','1018896.0','48', '45','22','25539.73', '38','7','13072.92', '26','15','12466.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093782.0','1044463.0','2', '2','2','2095.32', '2','1','1346.4', '2','1','748.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011284.0','1018896.0','2', '2','1','1230.88', '2','1','1230.88', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099548.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2007358.0','1018896.0','1', '1','1','805.0', '1','1','805.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2095622.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011285.0','1018896.0','7', '5','4','3103.34', '2','1','1204.6', '4','3','1898.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099549.0','1044463.0','3', '2','1','1228.22', '2','1','549.2', '1','1','679.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003398.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091662.0','1044463.0','1', '1','1','2016.47', '1','1','2016.47', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003014.0','1018896.0','627', '582','296','415688.19', '558','167','214271.26', '406','203','201416.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091278.0','1044463.0','1695', '1566','678','987254.6', '1357','224','427485.52', '1022','531','559769.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003174.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091438.0','1044463.0','1', '1','1','347.34', '1','0','0.0', '1','1','347.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003594.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091858.0','1044463.0','110', '45','18','21233.21', '35','5','5444.73', '32','15','15788.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011286.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099550.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005480.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093744.0','1044463.0','718', '640','285','301104.14', '555','61','95189.68', '381','245','205914.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005410.0','1018896.0','134', '95','31','120884.73', '88','24','81078.09', '58','17','39806.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093674.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011287.0','1018896.0','3674', '3385','1200','1360459.22', '3109','359','504567.33', '2048','958','855891.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099551.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003409.0','1018896.0','1762', '1529','475','487396.63', '1382','124','184231.57', '819','385','303165.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091673.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003380.0','1018896.0','1', '1','1','65.4', '1','1','65.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091644.0','1044463.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011288.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099552.0','1044463.0','1629', '1385','615','713346.84', '1190','140','233546.72', '880','518','479800.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011289.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099553.0','1044463.0','1', '1','1','425.0', '1','1','425.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005186.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093450.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003167.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091431.0','1044463.0','1', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003598.0','1018896.0','280', '224','31','34010.65', '214','21','24996.84', '72','13','9013.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091862.0','1044463.0','119', '109','56','63664.37', '89','13','17876.55', '76','48','45787.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011290.0','1018896.0','183', '173','74','71602.47', '152','20','21841.41', '108','60','49761.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099554.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003124.0','1018896.0','1', '1','1','1305.0', '1','1','1305.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091388.0','1044463.0','5', '3','2','1112.77', '3','0','0.0', '2','2','1112.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003032.0','1018896.0','1', '1','1','7356.41', '1','1','805.0', '1','1','6551.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091296.0','1044463.0','2', '2','1','654.98', '2','0','0.0', '2','1','654.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003217.0','1018896.0','1', '1','1','327.49', '1','0','0.0', '1','1','327.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091481.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011291.0','1018896.0','4', '2','1','904.98', '2','0','0.0', '2','1','904.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099555.0','1044463.0','2760', '2478','989','1282311.83', '2244','310','517067.48', '1550','785','765244.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003128.0','1018896.0','6', '3','2','7010.0', '3','2','7010.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091392.0','1044463.0','2', '2','2','5301.78', '1','0','0.0', '2','2','5301.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002960.0','1018896.0','517', '481','225','304196.97', '449','75','140013.61', '304','178','164183.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091224.0','1044463.0','1', '1','1','1594.85', '1','0','0.0', '1','1','1594.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011292.0','1018896.0','41', '38','14','28980.23', '37','9','15065.28', '22','9','13914.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099556.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011293.0','1018896.0','1114', '979','476','684780.36', '913','251','304882.65', '704','353','379897.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099557.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005491.0','1018896.0','2092', '1837','723','939186.64', '1676','269','414309.04', '1143','567','524877.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093755.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003139.0','1018896.0','1362', '1235','613','934291.97', '1115','195','407552.71', '850','516','526739.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091403.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005580.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093844.0','1044463.0','5', '5','4','5550.59', '4','2','3739.75', '3','2','1810.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011294.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099558.0','1044463.0','3', '3','1','355.16', '3','1','355.16', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003122.0','1018896.0','16', '14','6','16047.68', '13','2','12477.0', '9','4','3570.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091386.0','1044463.0','5', '5','2','2216.91', '4','1','967.0', '4','2','1249.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2002975.0','1018896.0','507', '414','142','145073.65', '363','28','32622.06', '251','124','112451.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091239.0','1044463.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011295.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099559.0','1044463.0','4867', '4434','1636','2313132.63', '4155','580','1122839.64', '2507','1310','1190292.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011296.0','1018896.0','44', '41','16','17117.36', '34','3','6632.12', '27','13','10485.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099560.0','1044463.0','1873', '1634','518','542357.08', '1425','88','156001.65', '916','450','386355.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011297.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099561.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005214.0','1018896.0','166', '127','71','62332.83', '100','2','1424.92', '106','70','60907.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093478.0','1044463.0','15', '15','10','8776.69', '9','0','0.0', '12','10','8776.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011298.0','1018896.0','412', '332','80','103471.41', '308','53','63024.2', '120','36','40447.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099562.0','1044463.0','2', '2','1','637.94', '2','0','0.0', '1','1','637.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005353.0','1018896.0','1519', '1292','641','644343.78', '993','82','134335.62', '966','594','510008.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093617.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011299.0','1018896.0','171', '160','76','119072.24', '143','25','56383.51', '117','65','62688.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099563.0','1044463.0','4', '4','3','2812.9', '3','0','0.0', '3','3','2812.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011300.0','1018896.0','1', '1','1','1959.98', '1','1','1305.0', '1','1','654.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099564.0','1044463.0','1', '1','1','1561.76', '1','0','0.0', '1','1','1561.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003062.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091326.0','1044463.0','3', '3','3','2592.81', '3','1','1050.4', '2','2','1542.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005221.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093485.0','1044463.0','2', '2','2','6063.8', '2','2','5063.89', '1','1','999.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003083.0','1018896.0','631', '575','322','385692.91', '499','52','129954.2', '471','297','255738.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091347.0','1044463.0','4', '4','3','5959.15', '4','3','4450.76', '3','2','1508.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005235.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093499.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011301.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099565.0','1044463.0','31', '31','7','9888.83', '31','2','6901.28', '17','5','2987.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003110.0','1018896.0','20', '12','6','10276.02', '11','3','3725.29', '6','5','6550.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091374.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011302.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099566.0','1044463.0','4', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003057.0','1018896.0','3872', '3582','1544','1724373.27', '3259','372','666047.65', '2205','1289','1058325.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091321.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011303.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099567.0','1044463.0','312', '270','117','128761.81', '230','34','50464.27', '189','97','78297.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011304.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099568.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003373.0','1018896.0','1', '1','1','3524.35', '1','1','2124.0', '1','1','1400.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091637.0','1044463.0','1252', '1180','457','411030.08', '1052','40','61288.86', '718','427','349741.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003061.0','1018896.0','144', '113','44','48397.83', '99','17','16292.51', '60','31','32105.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091325.0','1044463.0','1', '1','1','4956.72', '1','1','4956.72', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011305.0','1018896.0','7', '4','1','835.97', '4','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099569.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005296.0','1018896.0','3', '3','1','7452.54', '3','1','967.0', '2','1','6485.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093560.0','1044463.0','2', '2','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011306.0','1018896.0','4377', '3734','1271','1408617.47', '3383','294','487986.46', '2050','1071','920631.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099570.0','1044463.0','161', '145','49','74601.34', '138','27','50260.41', '75','29','24340.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003455.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091719.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003143.0','1018896.0','4', '3','2','1251.4', '3','2','1251.4', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091407.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003129.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091393.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011307.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099571.0','1044463.0','2', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005320.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093584.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005367.0','1018896.0','1', '1','1','672.42', '1','0','0.0', '1','1','672.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093631.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003149.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091413.0','1044463.0','494', '462','223','317544.61', '401','145','228667.91', '256','105','88876.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003544.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091808.0','1044463.0','935', '835','393','637295.8', '740','191','356825.87', '491','264','280469.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005319.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093583.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005257.0','1018896.0','1', '1','1','740.94', '1','0','0.0', '1','1','740.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093521.0','1044463.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005302.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093566.0','1044463.0','634', '500','192','174837.53', '404','14','20000.57', '295','185','154836.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003205.0','1018896.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091469.0','1044463.0','2', '2','2','2193.47', '2','1','1211.0', '2','1','982.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011308.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099572.0','1044463.0','628', '554','241','412654.59', '510','107','175394.08', '344','183','237260.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011309.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099573.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005262.0','1018896.0','11', '10','8','5402.5', '9','0','0.0', '9','8','5402.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093526.0','1044463.0','2', '1','1','5752.08', '1','1','5752.08', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003230.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091494.0','1044463.0','13', '11','4','4138.87', '9','2','2240.13', '6','3','1898.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011310.0','1018896.0','21', '4','0','0.0', '4','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099574.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003043.0','1018896.0','2', '2','2','7010.0', '2','2','7010.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091307.0','1044463.0','6', '6','4','5666.43', '6','3','2477.71', '5','2','3188.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011311.0','1018896.0','5974', '5050','2301','2611649.47', '4482','544','841378.58', '3231','1995','1770270.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099575.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003053.0','1018896.0','3', '3','2','2145.93', '3','0','0.0', '3','2','2145.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091317.0','1044463.0','9', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005281.0','1018896.0','5', '4','2','3577.08', '4','1','805.0', '2','2','2772.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093545.0','1044463.0','134', '82','34','136995.13', '72','16','83187.17', '53','22','53807.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003087.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091351.0','1044463.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003375.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091639.0','1044463.0','3178', '2838','1165','1809817.68', '2699','693','1070639.58', '1775','735','739178.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003304.0','1018896.0','1', '1','1','250.0', '0','0','0.0', '1','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091568.0','1044463.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003108.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091372.0','1044463.0','107', '81','25','27439.96', '61','5','9024.3', '49','22','18415.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003236.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091500.0','1044463.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005203.0','1018896.0','54', '49','19','21966.05', '43','10','11077.33', '35','12','10888.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093467.0','1044463.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011312.0','1018896.0','981', '786','293','419181.54', '712','132','189076.24', '507','220','230105.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099576.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011313.0','1018896.0','1366', '1247','512','712780.01', '1162','175','320391.47', '758','411','392388.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099577.0','1044463.0','4', '4','1','226.8', '4','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003574.0','1018896.0','3', '3','1','252.84', '3','0','0.0', '3','1','252.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091838.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011314.0','1018896.0','14', '12','7','5099.52', '10','1','169.58', '10','6','4929.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099578.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005258.0','1018896.0','14', '14','4','4168.87', '11','2','1832.83', '10','3','2336.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093522.0','1044463.0','7116', '6463','3159','5693005.71', '6109','1510','2878669.09', '4173','2342','2814336.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005208.0','1018896.0','647', '580','240','429662.49', '517','111','233416.12', '388','172','196246.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093472.0','1044463.0','1997', '1805','757','785109.5', '1580','137','237742.41', '1163','659','547367.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2003135.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2091399.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011315.0','1018896.0','19', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099579.0','1044463.0','1', '1','1','789.48', '1','1','789.48', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011316.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099580.0','1044463.0','15', '15','7','8232.82', '13','2','2990.2', '14','7','5242.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011317.0','1018896.0','3', '3','1','4358.52', '2','0','0.0', '3','1','4358.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099581.0','1044463.0','28', '19','6','8868.57', '16','4','2482.13', '15','4','6386.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005272.0','1018896.0','1', '1','1','1200.0', '0','0','0.0', '1','1','1200.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093536.0','1044463.0','74', '70','42','38304.54', '49','1','2824.16', '60','42','35480.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005274.0','1018896.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093538.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003003.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091267.0','1044463.0','3143', '2485','1240','1692021.9', '2132','434','701661.44', '1677','997','990360.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005404.0','1018896.0','13', '12','5','8352.39', '12','3','2535.6', '7','4','5816.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093668.0','1044463.0','4', '3','1','835.97', '3','0','0.0', '3','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003116.0','1018896.0','16', '13','8','14750.04', '12','5','3988.38', '9','5','10761.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091380.0','1044463.0','221', '80','30','69022.35', '61','14','56600.5', '48','19','12421.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011318.0','1018896.0','2469', '2142','802','760767.13', '1900','147','196146.57', '1250','696','564620.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099582.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003169.0','1018896.0','4', '2','1','835.97', '2','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091433.0','1044463.0','5961', '5273','2770','5545280.97', '4987','1592','2789180.2', '3448','2044','2756100.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011319.0','1018896.0','202', '155','90','200085.98', '150','78','166497.06', '75','30','33588.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099583.0','1044463.0','2199', '2021','692','959468.33', '1914','268','474742.38', '1186','536','484725.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011320.0','1018896.0','1', '1','1','159.14', '1','1','159.14', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099584.0','1044463.0','165', '145','68','103193.69', '110','16','40641.35', '94','60','62552.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011321.0','1018896.0','2003', '1578','709','733801.66', '1298','165','195560.3', '1010','598','538241.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099585.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011322.0','1018896.0','4', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099586.0','1044463.0','1', '1','1','332.05', '1','0','0.0', '1','1','332.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011323.0','1018896.0','3428', '3139','1126','1254114.87', '2786','252','354066.72', '1899','953','900048.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099587.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003548.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091812.0','1044463.0','171', '146','60','92134.25', '131','21','38380.38', '97','47','53753.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003070.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091334.0','1044463.0','95', '90','45','83848.12', '84','22','36858.69', '50','30','46989.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003104.0','1018896.0','314', '298','119','110245.2', '261','27','34451.04', '159','99','75794.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091368.0','1044463.0','77', '73','29','33051.88', '62','9','13740.79', '44','23','19311.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011324.0','1018896.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099588.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005313.0','1018896.0','13', '13','7','10525.99', '10','3','7182.11', '9','4','3343.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093577.0','1044463.0','1', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011325.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099589.0','1044463.0','51', '48','12','9814.6', '40','3','1455.24', '27','10','8359.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011326.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099590.0','1044463.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003226.0','1018896.0','32', '28','14','24865.67', '26','4','14981.16', '18','12','9884.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091490.0','1044463.0','1822', '1470','623','1216790.61', '1303','374','814627.68', '812','374','402162.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003118.0','1018896.0','933', '823','410','813619.77', '762','207','310722.54', '622','327','502897.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091382.0','1044463.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005232.0','1018896.0','2277', '1771','507','617767.88', '1651','220','280852.97', '807','356','336914.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093496.0','1044463.0','1', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003054.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091318.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003060.0','1018896.0','1', '1','1','1149.93', '1','1','805.0', '1','1','344.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091324.0','1044463.0','93', '58','16','41201.72', '52','12','32109.06', '26','8','9092.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011327.0','1018896.0','1191', '1084','584','515505.56', '876','32','44597.09', '838','565','470908.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099591.0','1044463.0','1117', '1025','517','502868.91', '884','43','90157.66', '717','493','412711.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011328.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099592.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005288.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093552.0','1044463.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003260.0','1018896.0','507', '430','192','450822.11', '406','143','315649.97', '199','86','135172.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091524.0','1044463.0','4', '3','2','5475.68', '3','2','4399.91', '1','1','1075.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003261.0','1018896.0','1', '1','1','250.0', '0','0','0.0', '1','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091525.0','1044463.0','1', '1','1','5154.3', '1','1','4144.66', '1','1','1009.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011329.0','1018896.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099593.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003215.0','1018896.0','1', '1','1','894.49', '1','0','0.0', '1','1','894.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091479.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011330.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099594.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005230.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093494.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003074.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091338.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003073.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091337.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005312.0','1018896.0','3', '3','2','1062.77', '1','0','0.0', '3','2','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093576.0','1044463.0','1426', '1311','463','621790.22', '1219','168','272179.01', '754','363','349611.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003125.0','1018896.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091389.0','1044463.0','468', '407','152','156079.3', '350','20','40828.41', '232','139','115250.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011331.0','1018896.0','246', '215','88','108273.32', '188','16','27107.03', '155','77','81166.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099595.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003123.0','1018896.0','2', '2','2','1671.94', '2','0','0.0', '2','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091387.0','1044463.0','1', '1','1','327.49', '1','0','0.0', '1','1','327.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011332.0','1018896.0','488', '388','113','148340.66', '356','49','83490.46', '192','72','64850.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099596.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003178.0','1018896.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091442.0','1044463.0','7', '4','1','527.6', '4','1','300.8', '2','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011333.0','1018896.0','1', '1','1','12351.13', '1','1','6205.0', '1','1','6146.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099597.0','1044463.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003095.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091359.0','1044463.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011334.0','1018896.0','816', '751','410','388814.68', '598','45','72757.35', '565','377','316057.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099598.0','1044463.0','41', '39','20','35500.11', '37','11','24190.43', '26','11','11309.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003434.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091698.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011335.0','1018896.0','1', '1','1','2728.99', '1','0','0.0', '1','1','2728.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099599.0','1044463.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005324.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093588.0','1044463.0','11', '7','2','3520.7', '7','1','1305.0', '4','2','2215.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011336.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099600.0','1044463.0','3', '3','2','1835.88', '3','0','0.0', '3','2','1835.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005325.0','1018896.0','501', '329','133','170490.05', '295','57','76946.91', '214','104','93543.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093589.0','1044463.0','175', '148','59','74868.05', '129','25','29347.39', '97','48','45520.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003184.0','1018896.0','3803', '3422','1737','1738180.93', '2874','259','388966.07', '2444','1588','1349214.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091448.0','1044463.0','277', '246','98','207147.68', '229','52','140051.5', '136','66','67096.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003405.0','1018896.0','36', '35','20','33916.85', '30','11','18231.69', '28','15','15685.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091669.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011337.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099601.0','1044463.0','3', '3','2','4478.82', '3','2','2071.2', '3','2','2407.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005371.0','1018896.0','280', '264','126','130144.59', '233','28','36128.59', '172','107','94016.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093635.0','1044463.0','3', '2','1','1699.68', '2','1','1699.68', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005275.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093539.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005515.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093779.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011338.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099602.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011339.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099603.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005582.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093846.0','1044463.0','2579', '2093','986','1568344.62', '1836','369','698551.78', '1398','807','869792.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005397.0','1018896.0','3769', '3453','1708','3532575.83', '3308','1021','1708666.53', '2220','1197','1823909.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093661.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005344.0','1018896.0','3', '3','1','226.8', '3','0','0.0', '2','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093608.0','1044463.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005299.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093563.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005586.0','1018896.0','1', '1','1','316.94', '1','0','0.0', '1','1','316.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093850.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2007357.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2095621.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005516.0','1018896.0','11', '10','4','4749.64', '9','2','1913.84', '4','2','2835.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093780.0','1044463.0','24', '21','9','11300.5', '19','6','5697.67', '10','6','5602.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003084.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091348.0','1044463.0','1507', '1136','501','685581.0', '998','232','362929.24', '706','345','322651.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011340.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099604.0','1044463.0','23', '21','7','7606.56', '18','2','1384.57', '16','5','6221.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011341.0','1018896.0','165', '157','94','83203.52', '123','5','7448.21', '135','90','75755.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099605.0','1044463.0','3391', '3017','839','861495.25', '2784','209','314725.82', '1531','685','546769.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011342.0','1018896.0','7', '6','0','0.0', '6','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099606.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005412.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093676.0','1044463.0','5', '5','3','3782.91', '5','1','2153.0', '4','2','1629.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011343.0','1018896.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099607.0','1044463.0','1125', '1019','536','525062.55', '862','73','111542.79', '734','488','413519.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011344.0','1018896.0','7', '5','3','2196.06', '5','1','1158.14', '3','2','1037.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099608.0','1044463.0','2754', '2480','976','1067241.02', '2239','264','442401.83', '1535','787','624839.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011345.0','1018896.0','3159', '2800','1051','1324563.16', '2569','378','545329.54', '1730','830','779233.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099609.0','1044463.0','2', '2','1','6143.25', '2','1','5400.0', '2','1','743.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011346.0','1018896.0','5', '5','2','2836.25', '4','1','815.48', '3','2','2020.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099610.0','1044463.0','1', '1','1','1132.49', '1','1','805.0', '1','1','327.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011347.0','1018896.0','3', '3','2','2568.92', '2','1','856.6', '2','2','1712.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099611.0','1044463.0','4307', '3890','1781','1846202.7', '3314','266','425349.7', '2660','1629','1420853.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005545.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093809.0','1044463.0','3', '3','1','288.98', '3','1','288.98', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011348.0','1018896.0','4', '3','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099612.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011349.0','1018896.0','6', '6','1','3617.91', '6','1','3617.91', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099613.0','1044463.0','547', '473','210','429082.27', '444','139','276845.0', '265','114','152237.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003264.0','1018896.0','1', '1','1','1554.17', '1','0','0.0', '1','1','1554.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091528.0','1044463.0','2', '2','1','741.0', '2','1','741.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003557.0','1018896.0','3', '2','2','1898.74', '1','0','0.0', '2','2','1898.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091821.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011350.0','1018896.0','4936', '4520','2168','3729302.44', '4278','1020','1612169.44', '3018','1674','2117133.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099614.0','1044463.0','218', '193','65','73924.49', '180','25','30366.57', '86','47','43557.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003457.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091721.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003150.0','1018896.0','1', '1','1','2942.45', '1','1','1305.0', '1','1','1637.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091414.0','1044463.0','5', '3','2','4264.57', '3','2','1951.8', '2','2','2312.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003251.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091515.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003064.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091328.0','1044463.0','2', '2','2','1559.97', '1','0','0.0', '2','2','1559.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003157.0','1018896.0','107', '97','48','52031.87', '91','10','14011.45', '65','42','38020.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091421.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2003266.0','1018896.0','44', '39','17','15504.03', '30','2','2802.0', '29','15','12702.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2091530.0','1044463.0','177', '154','44','58910.03', '142','21','38678.28', '72','26','20231.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011351.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099615.0','1044463.0','3', '2','1','743.25', '1','0','0.0', '1','1','743.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003468.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091732.0','1044463.0','1683', '1467','699','856982.07', '1279','215','367518.45', '975','577','489463.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005408.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093672.0','1044463.0','1154', '1035','515','888322.94', '939','245','445382.65', '764','383','442940.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003550.0','1018896.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091814.0','1044463.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011352.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099616.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005369.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093633.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011353.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099617.0','1044463.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005263.0','1018896.0','9', '7','2','1355.46', '7','1','292.69', '4','2','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093527.0','1044463.0','787', '719','263','336441.44', '669','87','141710.63', '441','210','194730.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011354.0','1018896.0','7', '5','4','3335.34', '5','0','0.0', '5','4','3335.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099618.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005343.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093607.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2003578.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2091842.0','1044463.0','6', '6','3','2247.57', '6','0','0.0', '3','3','2247.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005423.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093687.0','1044463.0','1', '1','1','805.0', '1','1','805.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2003210.0','1018896.0','1', '1','1','945.37', '1','0','0.0', '1','1','945.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2091474.0','1044463.0','1', '1','1','904.98', '1','0','0.0', '1','1','904.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003140.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091404.0','1044463.0','5980', '5641','2360','3640876.43', '5348','929','1852538.87', '3276','1774','1788337.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2003162.0','1018896.0','11', '7','6','14105.21', '7','4','8572.43', '6','5','5532.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2091426.0','1044463.0','51', '45','14','12856.72', '42','5','5055.39', '33','10','7801.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005629.0','1018896.0','659', '586','290','292923.32', '484','61','76746.32', '438','252','216177.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093893.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003552.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091816.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005378.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093642.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011355.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099619.0','1044463.0','203', '193','63','55062.08', '180','9','9839.34', '95','58','45222.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003599.0','1018896.0','606', '542','197','230428.25', '500','71','110831.47', '288','147','119596.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091863.0','1044463.0','1', '1','1','12205.0', '1','1','12205.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005476.0','1018896.0','3', '2','1','835.97', '1','0','0.0', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093740.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003269.0','1018896.0','170', '155','60','52106.93', '138','17','18019.65', '104','50','34087.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091533.0','1044463.0','3095', '2791','1054','1428555.2', '2560','381','667719.48', '1569','825','760835.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011356.0','1018896.0','7', '6','2','5794.39', '5','1','1422.5', '5','2','4371.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099620.0','1044463.0','4', '4','4','4382.88', '4','0','0.0', '4','4','4382.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011357.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099621.0','1044463.0','1', '1','1','513.34', '1','0','0.0', '1','1','513.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005329.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093593.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003255.0','1018896.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091519.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005330.0','1018896.0','19', '17','13','33355.06', '17','5','23218.88', '15','12','10136.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093594.0','1044463.0','540', '490','186','250388.49', '454','67','110399.76', '292','152','139988.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011358.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099622.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011359.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099623.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2005334.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2093598.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011360.0','1018896.0','749', '532','192','284985.21', '454','114','168513.35', '301','104','116471.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099624.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011361.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099625.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011362.0','1018896.0','1029', '859','371','456332.05', '768','110','148908.63', '539','305','307423.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099626.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005277.0','1018896.0','5153', '4749','1888','3058844.8', '4514','821','1598953.33', '2727','1408','1459891.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093541.0','1044463.0','14', '14','3','2734.71', '10','0','0.0', '7','3','2734.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2005584.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2093848.0','1044463.0','61', '41','20','25383.91', '37','11','16396.3', '21','11','8987.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005379.0','1018896.0','12', '10','6','6901.08', '9','4','4720.26', '7','3','2180.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093643.0','1044463.0','1', '1','1','1776.92', '1','1','1104.5', '1','1','672.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2005261.0','1018896.0','181', '169','58','49786.3', '147','3','3529.9', '96','56','46256.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2093525.0','1044463.0','11', '10','5','4894.86', '9','2','1324.18', '6','4','3570.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011363.0','1018896.0','5', '5','2','2057.85', '4','2','1221.88', '4','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099627.0','1044463.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005289.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093553.0','1044463.0','1', '1','1','3472.0', '1','1','3472.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011364.0','1018896.0','56', '48','15','19900.12', '44','5','10425.22', '29','12','9474.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099628.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005321.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093585.0','1044463.0','10', '10','6','8879.4', '9','5','7161.65', '6','3','1717.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011365.0','1018896.0','1', '1','1','1154.98', '1','0','0.0', '1','1','1154.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099629.0','1044463.0','2', '2','2','2125.54', '1','0','0.0', '2','2','2125.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2007317.0','1018896.0','1', '1','1','740.94', '1','0','0.0', '1','1','740.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2095581.0','1044463.0','4', '4','3','4579.66', '4','2','2624.42', '4','3','1955.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2003306.0','1018896.0','433', '309','118','176817.36', '274','70','93897.27', '142','59','82920.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2091570.0','1044463.0','864', '810','342','296368.84', '708','42','66644.98', '546','313','229723.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011366.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099630.0','1044463.0','1', '1','1','2180.84', '1','1','1853.35', '1','1','327.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011367.0','1018896.0','4', '3','2','8387.07', '3','2','6397.0', '3','1','1990.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099631.0','1044463.0','5', '5','1','1060.0', '5','1','810.0', '2','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005322.0','1018896.0','51', '38','25','156444.98', '33','19','95929.18', '21','14','60515.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093586.0','1044463.0','1', '1','1','3372.44', '1','1','810.0', '1','1','2562.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011368.0','1018896.0','6', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099632.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005323.0','1018896.0','3', '3','1','810.0', '3','1','810.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093587.0','1044463.0','19', '16','6','26416.75', '14','5','14571.06', '9','4','11845.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011369.0','1018896.0','1', '1','1','5001.49', '1','1','5001.49', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099633.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005420.0','1018896.0','1', '1','1','13584.86', '1','1','5400.0', '1','1','8184.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093684.0','1044463.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011370.0','1018896.0','1', '1','1','4000.0', '1','0','0.0', '1','1','4000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099634.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005385.0','1018896.0','1', '1','1','6398.1', '1','0','0.0', '1','1','6398.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093649.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2007594.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2095858.0','1044463.0','188', '157','84','280273.14', '144','64','162180.6', '93','43','118092.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011371.0','1018896.0','1', '1','1','750.0', '0','0','0.0', '1','1','750.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099635.0','1044463.0','293', '235','111','366662.46', '217','80','191649.8', '145','65','175012.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2003114.0','1018896.0','1064', '847','354','878477.61', '784','252','638238.9', '431','180','240238.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2091378.0','1044463.0','1', '1','1','810.0', '1','1','810.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011372.0','1018896.0','4', '4','2','6916.46', '4','2','1620.0', '4','2','5296.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099636.0','1044463.0','298', '294','158','159112.6', '248','14','40586.48', '217','149','118526.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2003377.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2091641.0','1044463.0','40', '34','11','12723.12', '28','4','4846.09', '24','10','7877.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011373.0','1018896.0','1', '1','1','13660.11', '1','1','6210.0', '1','1','7450.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099637.0','1044463.0','181', '154','70','72035.84', '124','9','13499.01', '106','67','58536.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003256.0','1018896.0','1', '1','1','810.0', '1','1','810.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091520.0','1044463.0','3', '3','1','835.97', '3','0','0.0', '3','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011374.0','1018896.0','1183', '1005','475','1155110.88', '918','314','515903.63', '641','283','639207.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099638.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003115.0','1018896.0','11', '10','2','3603.71', '10','1','2830.79', '2','1','772.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091379.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011375.0','1018896.0','3', '3','1','6448.39', '3','1','997.0', '1','1','5451.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099639.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011376.0','1018896.0','1', '1','1','22414.84', '1','1','11710.0', '1','1','10704.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099640.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011377.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099641.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011378.0','1018896.0','1', '1','1','19331.21', '1','1','11710.0', '1','1','7621.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099642.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011379.0','1018896.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099643.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011380.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099644.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011381.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099645.0','1044463.0','321', '232','88','200896.4', '202','58','137477.7', '125','48','63418.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2003188.0','1018896.0','1', '1','1','517.45', '1','1','517.45', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2091452.0','1044463.0','2', '2','1','2829.97', '2','1','1994.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011382.0','1018896.0','1', '1','1','810.0', '1','1','810.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099646.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2007322.0','1018896.0','1', '1','1','810.0', '1','1','810.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2095586.0','1044463.0','1', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011383.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099647.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2003111.0','1018896.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2091375.0','1044463.0','17', '11','2','7872.08', '9','2','7872.08', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2003411.0','1018896.0','12', '10','5','14677.57', '10','2','9388.0', '8','3','5289.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2091675.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003414.0','1018896.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091678.0','1044463.0','1', '1','1','4936.29', '1','0','0.0', '1','1','4936.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011384.0','1018896.0','2', '2','1','538.76', '2','0','0.0', '1','1','538.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099648.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011385.0','1018896.0','364', '331','182','210326.18', '275','50','77452.85', '232','153','132873.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099649.0','1044463.0','9', '5','3','10308.36', '5','3','10308.36', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003459.0','1018896.0','5', '5','2','8833.22', '5','1','810.0', '4','2','8023.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091723.0','1044463.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011386.0','1018896.0','2', '2','1','810.0', '2','1','810.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099650.0','1044463.0','1', '1','1','11710.0', '1','1','11710.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011387.0','1018896.0','401', '287','72','131428.23', '256','36','66027.35', '134','47','65400.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099651.0','1044463.0','3', '3','1','3909.85', '3','0','0.0', '3','1','3909.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003440.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091704.0','1044463.0','63', '54','22','22145.29', '47','5','8566.4', '34','17','13578.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011388.0','1018896.0','220', '185','85','278091.38', '170','65','136463.73', '114','46','141627.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099652.0','1044463.0','1161', '1071','560','1047001.21', '994','297','621055.85', '745','383','425945.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011389.0','1018896.0','2035', '1978','668','628855.54', '1902','66','115107.73', '1077','620','513747.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099653.0','1044463.0','2202', '2033','685','731834.67', '1934','143','274510.73', '1037','576','457323.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011390.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099654.0','1044463.0','3558', '3214','1386','2221152.12', '2916','530','1322087.33', '1789','999','899064.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011391.0','1018896.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099655.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011392.0','1018896.0','2', '2','2','31653.05', '2','2','12607.0', '2','2','19046.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099656.0','1044463.0','3', '2','1','810.0', '2','1','810.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003164.0','1018896.0','10', '8','1','1062.77', '6','0','0.0', '6','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091428.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2003066.0','1018896.0','3824', '3451','1138','1243927.92', '3191','229','433348.4', '1719','984','810579.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2091330.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011393.0','1018896.0','3390', '3091','1429','2241607.92', '2861','623','1091505.37', '1939','1056','1150102.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099657.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011394.0','1018896.0','3', '1','1','2663.67', '1','1','967.0', '1','1','1696.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099658.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011395.0','1018896.0','1', '1','1','2396.72', '1','1','805.0', '1','1','1591.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099659.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2003202.0','1018896.0','9', '7','3','9487.8', '7','3','8471.0', '4','1','1016.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2091466.0','1044463.0','1', '1','1','810.0', '1','1','810.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011396.0','1018896.0','3', '3','2','8029.0', '2','2','7020.0', '2','1','1009.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099660.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003203.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091467.0','1044463.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011397.0','1018896.0','1', '1','1','3677.79', '1','0','0.0', '1','1','3677.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099661.0','1044463.0','4', '3','2','1801.33', '1','0','0.0', '3','2','1801.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011398.0','1018896.0','4', '4','2','7046.8', '4','2','6820.0', '2','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099662.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011399.0','1018896.0','2', '2','1','1451.0', '2','1','1451.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099663.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011400.0','1018896.0','1', '1','1','1451.0', '1','1','1451.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099664.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2005273.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2093537.0','1044463.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011401.0','1018896.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099665.0','1044463.0','1', '1','1','2989.8', '1','1','2989.8', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011402.0','1018896.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099666.0','1044463.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011403.0','1018896.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099667.0','1044463.0','1', '1','1','1328.19', '1','0','0.0', '1','1','1328.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011404.0','1018896.0','1', '1','1','2217.36', '1','0','0.0', '1','1','2217.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099668.0','1044463.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011405.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099669.0','1044463.0','32', '22','16','26465.18', '19','10','20196.5', '11','9','6268.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005264.0','1018896.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093528.0','1044463.0','56', '43','25','112700.09', '41','23','57819.33', '24','12','54880.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011406.0','1018901.0','1', '1','1','4005.62', '1','1','2953.58', '1','1','1052.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099670.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011407.0','1018901.0','3', '3','1','1451.0', '3','1','1451.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099671.0','1044468.0','4838', '4619','3128','10352370.12', '4433','1519','4349776.45', '3775','2642','6002593.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011408.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099672.0','1044468.0','29', '25','9','25349.49', '24','7','12084.69', '18','4','13264.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005335.0','1018901.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093599.0','1044468.0','827', '775','519','1057953.04', '711','338','518957.39', '564','363','538995.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011409.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099673.0','1044468.0','1606', '1342','569','639646.18', '1187','171','247158.19', '804','448','392487.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011410.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099674.0','1044468.0','2', '2','1','810.0', '2','1','810.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2005307.0','1018901.0','1', '1','1','4000.0', '0','0','0.0', '1','1','4000.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2093571.0','1044468.0','1', '1','1','914.48', '1','0','0.0', '1','1','914.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011411.0','1018901.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099675.0','1044468.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2005291.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2093555.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005606.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093870.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2003265.0','1018901.0','3', '3','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2091529.0','1044468.0','30', '26','12','33496.95', '25','8','27681.39', '16','7','5815.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011412.0','1018901.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099676.0','1044468.0','1', '1','1','1754.19', '1','1','1656.81', '1','1','97.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011413.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099677.0','1044468.0','2598', '2426','1172','1188632.13', '2128','176','309358.11', '1649','1068','879274.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003321.0','1018901.0','727', '614','303','1007570.65', '575','230','577367.35', '344','154','430203.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091585.0','1044468.0','3768', '3503','1098','1162088.67', '3280','157','296412.39', '1716','991','865676.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011414.0','1018901.0','1', '1','1','349.73', '1','0','0.0', '1','1','349.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099678.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005358.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093622.0','1044468.0','2244', '1830','1051','4011043.74', '1733','884','2112502.67', '999','514','1898541.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011415.0','1018901.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099679.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011416.0','1018901.0','2', '2','2','2255.68', '2','1','1419.71', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099680.0','1044468.0','17', '16','10','29520.0', '15','7','19771.18', '10','5','9748.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011417.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099681.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005547.0','1018901.0','1', '1','1','4595.52', '1','1','810.0', '1','1','3785.52');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093811.0','1044468.0','8457', '6975','3813','15046704.93', '6427','2915','7323671.92', '3904','2011','7723033.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2003438.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2091702.0','1044468.0','1', '1','1','250.0', '0','0','0.0', '1','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011418.0','1018901.0','1', '1','1','382.05', '1','0','0.0', '1','1','382.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099682.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2005608.0','1018901.0','5089', '4814','1931','2220113.48', '4527','338','762795.53', '2767','1719','1457317.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2093872.0','1044468.0','1', '1','1','810.0', '1','1','810.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011419.0','1018901.0','1607', '1422','542','515386.22', '1268','63','113440.55', '852','497','401945.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099683.0','1044468.0','106', '89','34','113494.09', '79','19','36278.33', '63','25','77215.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2005303.0','1018901.0','16', '14','12','71246.35', '13','10','50123.69', '9','7','21122.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2093567.0','1044468.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003187.0','1018901.0','51', '29','9','17618.07', '28','6','12030.67', '12','3','5587.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091451.0','1044468.0','1', '1','1','664.1', '1','0','0.0', '1','1','664.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005267.0','1018901.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093531.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011420.0','1018901.0','1', '1','1','11710.0', '1','1','11710.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099684.0','1044468.0','2', '2','2','27867.75', '2','1','11705.0', '2','2','16162.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2005387.0','1018901.0','1', '1','1','3455.45', '1','0','0.0', '1','1','3455.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2093651.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011421.0','1018901.0','1', '1','1','1062.77', '1','0','0.0', '1','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099685.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003221.0','1018901.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091485.0','1044468.0','3', '3','1','835.97', '2','0','0.0', '3','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011422.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099686.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003462.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091726.0','1044468.0','1', '1','1','8884.38', '1','1','5886.82', '1','1','2997.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003165.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091429.0','1044468.0','1', '1','1','810.0', '1','1','810.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011423.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099687.0','1044468.0','1', '1','1','27200.0', '1','1','12205.0', '1','1','14995.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003307.0','1018901.0','2', '2','2','2140.97', '2','1','1305.0', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091571.0','1044468.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011424.0','1018901.0','30', '23','16','152090.33', '22','15','98932.58', '14','9','53157.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099688.0','1044468.0','6', '5','4','28372.51', '5','4','19540.0', '2','2','8832.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011425.0','1018901.0','1', '1','1','4997.53', '1','1','997.0', '1','1','4000.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099689.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011426.0','1018901.0','1', '1','1','302.72', '1','1','302.72', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099690.0','1044468.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011427.0','1018901.0','1', '1','1','7095.11', '1','1','810.0', '1','1','6285.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099691.0','1044468.0','94', '75','45','236740.11', '70','36','108909.47', '41','28','127830.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011428.0','1018901.0','1', '1','1','1036.8', '1','1','810.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099692.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011429.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099693.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011430.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099694.0','1044468.0','1', '1','1','332.05', '1','0','0.0', '1','1','332.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011431.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099695.0','1044468.0','1590', '1494','495','531896.79', '1407','95','170131.35', '759','440','361765.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011432.0','1018901.0','3', '3','1','1685.07', '2','1','1685.07', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099696.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2003382.0','1018901.0','8', '7','2','1802.97', '7','1','967.0', '6','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2091646.0','1044468.0','2722', '2430','1235','1958578.8', '2238','547','804624.42', '1625','940','1153954.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2005427.0','1018901.0','336', '263','86','79253.65', '215','14','16315.71', '138','73','62937.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2093691.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011433.0','1018901.0','1', '1','1','967.0', '1','1','967.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099697.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2007344.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2095608.0','1044468.0','2', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011434.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099698.0','1044468.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011435.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099699.0','1044468.0','9', '9','6','3855.35', '5','1','805.0', '7','5','3050.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011436.0','1018901.0','466', '413','181','203362.94', '354','44','83819.5', '261','147','119543.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099700.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011437.0','1018901.0','2356', '2188','1031','1055753.77', '1843','129','238811.09', '1531','948','816942.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099701.0','1044468.0','1', '1','1','561.28', '1','0','0.0', '1','1','561.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011438.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099702.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011439.0','1018901.0','1431', '1268','575','669866.23', '1105','202','297624.77', '816','435','372241.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099703.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011440.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099704.0','1044468.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011441.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099705.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011442.0','1018901.0','5', '5','2','1671.94', '4','0','0.0', '3','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099706.0','1044468.0','1', '1','1','2246.75', '1','1','805.0', '1','1','1441.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011443.0','1018901.0','1', '1','1','904.05', '1','0','0.0', '1','1','904.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099707.0','1044468.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011444.0','1018901.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099708.0','1044468.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011445.0','1018901.0','4', '4','1','835.97', '3','0','0.0', '3','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099709.0','1044468.0','2988', '2638','1242','1546598.96', '2267','326','520975.14', '1799','1052','1025623.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011446.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099710.0','1044468.0','1', '1','1','4482.15', '1','1','4482.15', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011447.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099711.0','1044468.0','2', '2','1','1759.37', '2','1','1759.37', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011448.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099712.0','1044468.0','2', '1','1','226.8', '1','0','0.0', '1','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011449.0','1018901.0','39', '38','29','83528.02', '37','19','51794.1', '29','22','31733.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099713.0','1044468.0','76', '74','27','22861.23', '60','2','1742.68', '43','25','21118.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011450.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099714.0','1044468.0','2', '2','1','835.97', '2','0','0.0', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011451.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099715.0','1044468.0','352', '323','188','362495.88', '286','93','258143.5', '191','120','104352.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011452.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099716.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011453.0','1018901.0','42', '32','18','23000.48', '27','2','2110.0', '27','17','20890.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099717.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011454.0','1018901.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099718.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011455.0','1018901.0','2', '2','1','557.22', '2','0','0.0', '2','1','557.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099719.0','1044468.0','7', '7','2','7370.44', '6','1','6106.0', '4','2','1264.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011456.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099720.0','1044468.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011457.0','1018901.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011458.0','1018901.0','1', '1','1','2257.05', '1','1','2257.05', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099722.0','1044468.0','2', '1','1','9016.37', '1','1','5400.0', '1','1','3616.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2003132.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2091396.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011459.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099723.0','1044468.0','5', '3','2','8129.14', '3','2','8129.14', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011460.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099724.0','1044468.0','202', '154','54','101576.73', '141','29','73480.25', '68','29','28096.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011461.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099725.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011462.0','1018901.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099726.0','1044468.0','3', '3','3','4191.77', '3','2','2110.0', '2','2','2081.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011463.0','1018901.0','754', '724','469','1469028.66', '692','250','609053.81', '579','375','859974.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099727.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011464.0','1018901.0','2', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099728.0','1044468.0','157', '135','75','140743.39', '108','23','77630.61', '89','61','63112.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011465.0','1018901.0','3387', '3098','1577','2825227.92', '2790','854','1895141.84', '1908','1002','930086.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099729.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011466.0','1018901.0','663', '629','253','389793.89', '590','144','161063.06', '478','186','228730.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099730.0','1044468.0','480', '449','166','184599.89', '391','18','43513.64', '280','155','141086.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011467.0','1018901.0','3', '2','2','5752.06', '2','2','5752.06', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099731.0','1044468.0','10', '6','5','11155.84', '6','5','10799.59', '2','1','356.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011468.0','1018901.0','79', '69','40','69785.46', '59','20','46989.75', '46','26','22795.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099732.0','1044468.0','1', '1','1','483.6', '1','1','483.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2003582.0','1018901.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2091846.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011469.0','1018901.0','13', '9','6','15097.69', '9','6','14897.69', '5','1','200.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099733.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011470.0','1018901.0','2', '2','1','5400.0', '2','1','5400.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099734.0','1044468.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011471.0','1018901.0','8', '5','4','4542.55', '4','3','4409.41', '3','1','133.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099735.0','1044468.0','4', '3','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011472.0','1018901.0','7', '6','1','117.68', '6','1','117.68', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099736.0','1044468.0','160', '145','58','47541.9', '119','2','692.9', '108','56','46849.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011473.0','1018901.0','1', '1','1','500.0', '1','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099737.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011474.0','1018901.0','80', '67','19','19635.03', '63','4','5991.54', '31','17','13643.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099738.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011475.0','1018901.0','1294', '1170','472','505931.8', '961','95','159430.12', '744','408','346501.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099739.0','1044468.0','8', '8','6','7541.92', '8','6','7318.81', '2','1','223.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011476.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099740.0','1044468.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011477.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099741.0','1044468.0','6', '6','1','6118.0', '6','1','5943.0', '4','1','175.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011478.0','1018901.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099742.0','1044468.0','1', '1','1','805.0', '1','1','805.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2003113.0','1018901.0','4', '3','1','1062.77', '3','0','0.0', '2','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2091377.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2003234.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2091498.0','1044468.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011479.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099743.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011480.0','1018901.0','1954', '1638','735','1566267.56', '1471','336','921430.38', '1036','527','644837.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099744.0','1044468.0','31', '30','14','11566.23', '28','1','805.0', '23','14','10761.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011481.0','1018901.0','1', '1','1','1482.13', '1','1','1482.13', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099745.0','1044468.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011482.0','1018901.0','2', '2','1','1189.65', '1','1','429.9', '2','1','759.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099746.0','1044468.0','4', '4','3','3925.34', '3','1','2253.4', '2','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011483.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099747.0','1044468.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011484.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099748.0','1044468.0','1', '1','1','491.32', '1','1','491.32', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011485.0','1018901.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099749.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011486.0','1018901.0','5', '5','5','20827.33', '5','4','4441.43', '5','4','16385.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099750.0','1044468.0','6', '6','3','4973.91', '6','3','4600.41', '4','1','373.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011487.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099751.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011488.0','1018901.0','3', '2','1','2256.0', '2','1','967.0', '1','1','1289.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099752.0','1044468.0','298', '268','106','97483.5', '237','10','12052.93', '171','104','85430.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011489.0','1018901.0','556', '520','230','411093.49', '491','144','260128.1', '369','142','150965.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099753.0','1044468.0','1332', '1245','507','498989.85', '1088','79','108998.26', '803','454','389991.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011490.0','1018901.0','3539', '3301','1501','1514760.03', '2960','158','308683.46', '2160','1414','1206076.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099754.0','1044468.0','1015', '936','503','1267090.81', '882','322','646550.38', '626','360','620540.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011491.0','1018901.0','3', '3','2','9233.25', '3','2','9233.25', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099755.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011492.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099756.0','1044468.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011493.0','1018901.0','1', '1','1','9693.91', '1','1','6205.0', '1','1','3488.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099757.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011494.0','1018901.0','206', '171','43','67537.66', '163','19','42790.81', '61','28','24746.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099758.0','1044468.0','1', '1','1','2054.26', '1','1','1865.26', '1','1','189.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011495.0','1018901.0','1', '1','1','3470.41', '1','1','1896.21', '1','1','1574.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099759.0','1044468.0','3', '3','3','7896.71', '3','2','6427.71', '3','1','1469.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011496.0','1018901.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099760.0','1044468.0','1', '1','1','1013.12', '1','1','1013.12', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011497.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099761.0','1044468.0','2', '2','1','835.97', '2','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011498.0','1018901.0','7', '5','3','1633.86', '4','3','1481.87', '3','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099762.0','1044468.0','92', '84','33','53595.11', '78','14','31762.78', '50','23','21832.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011499.0','1018901.0','2953', '2667','1034','1182302.46', '2438','261','431773.44', '1466','850','750529.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099763.0','1044468.0','156', '148','58','63848.31', '129','9','19905.76', '94','54','43942.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011500.0','1018901.0','1', '1','1','686.93', '1','1','337.2', '1','1','349.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099764.0','1044468.0','2', '2','1','2143.09', '2','1','810.0', '2','1','1333.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011501.0','1018901.0','3', '3','1','1062.77', '2','0','0.0', '2','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099765.0','1044468.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011502.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099766.0','1044468.0','1233', '1015','400','560598.31', '927','122','228776.81', '585','325','331821.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011503.0','1018901.0','4', '4','3','2638.94', '3','1','967.0', '3','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099767.0','1044468.0','214', '181','59','62386.66', '153','23','29473.24', '95','42','32913.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011504.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099768.0','1044468.0','1', '1','1','5399.64', '1','1','5399.64', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011505.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099769.0','1044468.0','1', '1','1','332.05', '1','0','0.0', '1','1','332.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011506.0','1018901.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099770.0','1044468.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011507.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099771.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011508.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099772.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011509.0','1018901.0','18', '17','6','4358.19', '14','1','554.11', '13','5','3804.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099773.0','1044468.0','1', '1','1','557.0', '1','1','557.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011510.0','1018901.0','509', '503','235','216183.99', '462','23','35971.17', '334','221','180212.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099774.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011511.0','1018901.0','1736', '1579','775','884935.2', '1338','180','327779.73', '1080','658','557155.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099775.0','1044468.0','1', '1','1','1887.25', '1','1','1887.25', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011512.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099776.0','1044468.0','9', '5','3','3387.72', '4','3','3387.72', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011513.0','1018901.0','3', '3','1','1057.55', '2','1','221.58', '3','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099777.0','1044468.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011514.0','1018901.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099778.0','1044468.0','12', '11','11','10561.97', '11','11','10561.97', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011515.0','1018901.0','4', '3','3','6516.02', '3','3','6516.02', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099779.0','1044468.0','1', '1','1','1403.21', '1','1','1403.21', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011516.0','1018901.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099780.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011517.0','1018901.0','4', '3','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099781.0','1044468.0','3', '3','1','835.97', '2','0','0.0', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011518.0','1018901.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099782.0','1044468.0','2075', '1958','1051','1143082.58', '1669','238','387759.94', '1468','924','755322.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011519.0','1018901.0','3', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099783.0','1044468.0','86', '77','36','43956.27', '72','7','18661.33', '49','31','25294.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011520.0','1018901.0','30', '28','13','11481.43', '25','2','2319.3', '17','12','9162.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099784.0','1044468.0','53', '49','15','14436.02', '45','7','7092.26', '28','10','7343.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011521.0','1018901.0','209', '193','91','95108.52', '154','14','20892.27', '128','82','74216.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099785.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011522.0','1018901.0','3348', '2990','1511','2619223.79', '2641','625','1503687.49', '1945','1110','1115536.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099786.0','1044468.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011523.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099787.0','1044468.0','1630', '1391','663','1025216.84', '1287','414','563231.71', '862','427','461985.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011524.0','1018901.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099788.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011525.0','1018901.0','12', '8','3','6970.57', '8','3','6970.57', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099789.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011526.0','1018901.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099790.0','1044468.0','71', '68','23','19951.61', '60','1','933.0', '49','23','19018.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011527.0','1018901.0','2', '2','1','2083.79', '2','1','2083.79', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099791.0','1044468.0','491', '444','224','259408.03', '357','60','94965.34', '319','184','164442.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011528.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099792.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011529.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099793.0','1044468.0','113', '82','64','383176.39', '73','56','285848.71', '44','19','97327.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011530.0','1018901.0','6', '4','2','1635.84', '4','2','1635.84', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099794.0','1044468.0','16', '9','8','56992.49', '9','8','21493.27', '4','4','35499.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011531.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099795.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011532.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099796.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011533.0','1018901.0','6', '5','4','7923.46', '4','3','2495.46', '3','1','5428.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099797.0','1044468.0','1', '1','1','3404.58', '1','1','1627.11', '1','1','1777.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011534.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099798.0','1044468.0','1989', '1761','363','315921.44', '1660','78','75907.53', '691','297','240013.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011535.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099799.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2003186.0','1018901.0','91', '77','30','29458.18', '68','10','12984.23', '44','21','16473.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2091450.0','1044468.0','1', '1','1','898.0', '1','1','898.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011536.0','1018901.0','2', '2','1','835.97', '1','0','0.0', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099800.0','1044468.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2003223.0','1018901.0','4', '3','1','3608.35', '3','1','805.0', '2','1','2803.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2091487.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011537.0','1018901.0','1', '1','1','805.0', '1','1','805.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099801.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011538.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099802.0','1044468.0','1', '1','1','805.0', '1','1','805.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011539.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099803.0','1044468.0','249', '191','134','238382.68', '179','118','191534.14', '116','44','46848.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011540.0','1018901.0','32', '25','7','7471.49', '24','4','2985.42', '7','4','4486.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099804.0','1044468.0','2', '1','1','488.81', '1','1','488.81', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011541.0','1018901.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099805.0','1044468.0','2', '2','1','1720.87', '2','1','1364.62', '1','1','356.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011542.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099806.0','1044468.0','12', '7','1','805.0', '6','1','805.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011543.0','1018901.0','6', '4','3','4112.59', '4','3','4112.59', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099807.0','1044468.0','3', '2','1','2759.35', '1','1','706.0', '2','1','2053.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2003189.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2091453.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011544.0','1018901.0','3', '3','2','1640.97', '3','1','805.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099808.0','1044468.0','9', '8','5','9501.77', '7','4','9114.15', '5','1','387.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011545.0','1018901.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099809.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011546.0','1018901.0','1', '1','1','15577.48', '1','1','11305.0', '1','1','4272.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099810.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011547.0','1018901.0','1', '1','1','601.67', '1','0','0.0', '1','1','601.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099811.0','1044468.0','239', '210','82','132674.36', '179','36','90612.11', '111','54','42062.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2003166.0','1018901.0','704', '671','341','645562.33', '631','176','405248.83', '374','218','240313.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2091430.0','1044468.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2003212.0','1018901.0','3', '3','0','0.0', '0','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2091476.0','1044468.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011548.0','1018901.0','2', '2','2','1094.17', '2','0','0.0', '2','2','1094.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099812.0','1044468.0','3', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011549.0','1018901.0','1054', '945','438','684032.56', '799','137','371213.67', '587','347','312818.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099813.0','1044468.0','85', '77','24','18631.49', '71','5','2189.21', '39','21','16442.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011550.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099814.0','1044468.0','4', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011551.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099815.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011552.0','1018901.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099816.0','1044468.0','11', '9','2','11571.17', '8','2','6100.85', '7','2','5470.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011553.0','1018901.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099817.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011554.0','1018901.0','723', '676','311','303953.48', '568','35','55392.83', '488','293','248560.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099818.0','1044468.0','1', '1','1','5209.88', '1','1','805.0', '1','1','4404.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011555.0','1018901.0','1546', '1426','576','746274.57', '1285','200','365347.55', '856','426','380927.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099819.0','1044468.0','4', '4','3','16611.38', '4','3','16200.0', '3','1','411.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011556.0','1018901.0','3', '3','2','1021.69', '3','1','798.58', '3','1','223.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099820.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011557.0','1018901.0','2', '2','2','1898.74', '2','0','0.0', '2','2','1898.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099821.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011558.0','1018901.0','243', '229','118','149888.95', '197','20','49114.19', '146','106','100774.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099822.0','1044468.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011559.0','1018901.0','2', '2','1','835.97', '2','0','0.0', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099823.0','1044468.0','10', '10','4','5552.48', '10','2','3880.54', '5','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011560.0','1018901.0','1432', '1243','546','591715.32', '1067','103','173085.07', '817','488','418630.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099824.0','1044468.0','2652', '2347','1232','2393056.58', '2166','617','1130655.4', '1634','953','1262401.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011561.0','1018901.0','1', '1','1','3504.45', '1','1','936.27', '1','1','2568.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099825.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011562.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099826.0','1044468.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011563.0','1018901.0','7', '6','4','3570.68', '5','0','0.0', '5','4','3570.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099827.0','1044468.0','6', '4','3','3227.88', '4','3','3227.88', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011564.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099828.0','1044468.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011565.0','1018901.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099829.0','1044468.0','1', '1','1','1161.88', '1','1','1161.88', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011566.0','1018901.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099830.0','1044468.0','3', '3','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011567.0','1018901.0','8', '7','2','4573.21', '7','2','3079.2', '7','1','1494.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099831.0','1044468.0','1', '1','1','2959.13', '1','1','2123.16', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011568.0','1018901.0','4', '4','2','1223.7', '4','2','1223.7', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099832.0','1044468.0','2', '2','1','1062.77', '2','0','0.0', '2','1','1062.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011569.0','1018901.0','3', '2','2','6714.49', '2','2','6714.49', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099833.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011570.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099834.0','1044468.0','1527', '1305','629','675518.12', '1152','90','177711.32', '857','574','497806.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011571.0','1018901.0','1', '1','1','6899.8', '1','1','2416.54', '1','1','4483.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099835.0','1044468.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011572.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099836.0','1044468.0','14', '12','5','9517.18', '12','5','9517.18', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011573.0','1018901.0','11', '7','6','7798.74', '7','5','7198.21', '4','1','600.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099837.0','1044468.0','5', '5','4','5017.43', '5','4','4884.29', '3','1','133.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011574.0','1018901.0','2', '1','1','593.83', '1','1','593.83', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099838.0','1044468.0','277', '263','74','462472.15', '251','45','149500.2', '145','47','312971.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001460.0', '2011575.0','1018901.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005914.0', '2099839.0','1044468.0','1', '1','1','478.2', '1','1','478.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011576.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099840.0','1044468.0','1', '1','1','2075.92', '1','1','2075.92', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011577.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099841.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011578.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099842.0','1044468.0','1411', '1234','458','491201.1', '1130','90','163514.11', '680','391','327686.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011579.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099843.0','1044468.0','2', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011580.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099844.0','1044468.0','1', '1','1','811.4', '1','1','811.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011581.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099845.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011582.0','1018901.0','2039', '1779','467','771653.04', '1696','189','435962.53', '795','332','335690.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099846.0','1044468.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011583.0','1018901.0','19', '19','9','15705.16', '16','4','11275.31', '10','6','4429.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099847.0','1044468.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011584.0','1018901.0','15', '13','1','5500.0', '11','0','0.0', '7','1','5500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099848.0','1044468.0','1', '1','1','250.0', '0','0','0.0', '1','1','250.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011585.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099849.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011586.0','1018901.0','152', '150','100','306839.71', '136','48','136631.38', '125','85','170208.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099850.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011587.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099851.0','1044468.0','623', '539','211','282762.75', '484','65','108454.66', '354','171','174308.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011588.0','1018901.0','2305', '2087','947','1423973.16', '1873','359','778138.15', '1311','694','645835.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099852.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001681.0', '2011589.0','1018901.0','3', '2','1','226.8', '0','0','0.0', '2','1','226.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005917.0', '2099853.0','1044468.0','2', '2','2','1505.95', '1','0','0.0', '2','2','1505.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011590.0','1018901.0','637', '593','209','262125.23', '529','47','117117.62', '335','173','145007.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099854.0','1044468.0','1', '1','1','12205.0', '1','1','12205.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011591.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099855.0','1044468.0','4592', '4354','1589','1889368.75', '4097','288','664850.58', '2467','1411','1224518.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011592.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099856.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011593.0','1018901.0','1', '1','1','805.0', '1','1','805.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099857.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011531.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099795.0','1044468.0','954', '887','415','633448.05', '789','211','357996.75', '583','284','275451.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011594.0','1018901.0','11', '9','6','19026.66', '8','3','15450.81', '5','5','3575.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099858.0','1044468.0','260', '232','86','69204.65', '188','4','2870.35', '158','82','66334.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011370.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099634.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011595.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099859.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011596.0','1018901.0','1', '1','1','5400.0', '1','1','5400.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099860.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011597.0','1018901.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099861.0','1044468.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011590.0','1018901.0','6', '2','2','6876.99', '2','2','6876.99', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099854.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011598.0','1018901.0','12', '12','3','2817.85', '11','1','1145.91', '5','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099862.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011599.0','1018901.0','231', '212','107','195099.66', '196','51','97789.36', '144','79','97310.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099863.0','1044468.0','3', '2','1','835.97', '2','0','0.0', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011600.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099864.0','1044468.0','573', '492','213','232253.01', '402','38','61868.73', '310','190','170384.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011601.0','1018901.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099865.0','1044468.0','4', '4','2','1671.94', '4','0','0.0', '2','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011602.0','1018901.0','1', '1','1','3334.71', '1','1','2498.74', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099866.0','1044468.0','15', '12','4','3343.88', '10','0','0.0', '8','4','3343.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011603.0','1018901.0','215', '200','93','80672.4', '156','13','11591.26', '143','83','69081.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099867.0','1044468.0','19', '16','13','49455.97', '16','13','49455.97', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011604.0','1018901.0','1', '1','1','2171.64', '1','1','1879.94', '1','1','291.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099868.0','1044468.0','5', '4','2','1477.8', '4','2','1477.8', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011440.0','1018901.0','8', '7','5','15898.79', '7','5','14714.64', '4','2','1184.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099704.0','1044468.0','9', '9','5','14581.94', '9','3','12910.0', '6','2','1671.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011605.0','1018901.0','1', '1','1','1386.32', '1','1','1386.32', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099869.0','1044468.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011485.0','1018901.0','8', '6','4','2125.08', '5','0','0.0', '6','4','2125.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099749.0','1044468.0','655', '615','136','297005.49', '601','49','92282.96', '275','114','204722.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011606.0','1018901.0','2102', '1888','831','1652202.84', '1757','466','1112888.76', '1104','514','539314.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099870.0','1044468.0','103', '88','35','40632.1', '81','15','12622.61', '54','26','28009.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011607.0','1018901.0','293', '275','109','93340.54', '223','7','8100.45', '166','103','85240.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099871.0','1044468.0','1', '1','1','1629.9', '1','1','1629.9', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011608.0','1018901.0','7', '7','3','1898.74', '6','0','0.0', '6','3','1898.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099872.0','1044468.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011609.0','1018901.0','10', '10','7','26617.31', '10','6','26351.03', '6','2','266.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099873.0','1044468.0','112', '97','52','47304.64', '82','13','13096.85', '74','42','34207.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011610.0','1018901.0','3', '2','1','5400.0', '2','1','5400.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099874.0','1044468.0','163', '148','64','52828.57', '123','11','8982.76', '106','55','43845.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011611.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099875.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011612.0','1018901.0','7', '6','5','15316.72', '6','5','15316.72', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099876.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011613.0','1018901.0','2', '2','1','1007.0', '2','1','1007.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099877.0','1044468.0','2', '2','1','835.97', '2','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011614.0','1018901.0','2', '2','2','4078.39', '1','1','2517.65', '2','2','1560.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099878.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011615.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099879.0','1044468.0','8', '7','4','9505.91', '5','3','2577.0', '7','4','6928.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011616.0','1018901.0','1', '1','1','10932.15', '1','1','6367.0', '1','1','4565.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099880.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011524.0','1018901.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099788.0','1044468.0','3', '3','1','1555.97', '3','1','720.0', '2','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011617.0','1018901.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099881.0','1044468.0','65', '61','18','12771.17', '50','0','0.0', '42','18','12771.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011618.0','1018901.0','18', '15','15','61437.77', '15','15','60697.6', '5','2','740.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099882.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011359.0','1018901.0','1', '1','1','1202.32', '1','1','1202.32', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099623.0','1044468.0','107', '100','55','96625.65', '87','22','56647.25', '63','40','39978.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011619.0','1018901.0','1', '1','1','532.23', '1','1','532.23', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099883.0','1044468.0','4', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011620.0','1018901.0','600', '557','299','285521.67', '446','56','88753.84', '419','270','196767.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099884.0','1044468.0','1', '1','1','1398.92', '1','0','0.0', '1','1','1398.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011621.0','1018901.0','3224', '3000','1332','2628651.02', '2771','580','1732437.65', '1760','934','896213.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099885.0','1044468.0','1', '1','1','2577.48', '1','1','2577.48', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011622.0','1018901.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099886.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011623.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099887.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011624.0','1018901.0','34', '25','7','15035.0', '24','4','11916.8', '10','4','3118.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099888.0','1044468.0','52', '44','10','19800.13', '40','7','11680.96', '20','6','8119.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011397.0','1018901.0','53', '53','25','21938.49', '51','5','3987.66', '37','23','17950.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099661.0','1044468.0','3', '2','2','1898.74', '2','0','0.0', '2','2','1898.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011625.0','1018901.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099889.0','1044468.0','461', '430','203','233736.17', '379','52','79807.48', '291','171','153928.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011626.0','1018901.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099890.0','1044468.0','105', '98','51','139753.17', '92','33','91343.56', '59','32','48409.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011496.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099760.0','1044468.0','1537', '1446','547','494043.74', '1235','71','88228.69', '881','494','405815.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011627.0','1018901.0','1987', '1798','909','1955895.24', '1704','523','1088079.19', '1198','635','867816.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099891.0','1044468.0','1', '1','1','703.3', '1','1','703.3', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011461.0','1018901.0','2', '2','1','803.44', '2','1','803.44', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099725.0','1044468.0','3', '3','2','1319.47', '3','0','0.0', '3','2','1319.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011628.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099892.0','1044468.0','3', '3','1','835.97', '2','0','0.0', '3','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011505.0','1018901.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099769.0','1044468.0','180', '166','63','70388.8', '135','7','25708.53', '100','60','44680.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011486.0','1018901.0','4', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099750.0','1044468.0','78', '72','26','104847.21', '68','11','49587.2', '35','19','55260.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011629.0','1018901.0','1', '1','1','835.97', '0','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099893.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011630.0','1018901.0','1', '1','1','835.97', '1','0','0.0', '1','1','835.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099894.0','1044468.0','1806', '1616','733','1452589.34', '1437','327','862534.06', '1010','521','590055.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011631.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099895.0','1044468.0','1155', '1091','451','581425.26', '1024','143','185594.08', '826','380','395831.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011508.0','1018901.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099772.0','1044468.0','68', '66','37','41606.05', '58','9','12204.67', '51','30','29401.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011632.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099896.0','1044468.0','1850', '1788','1263','4333979.9', '1724','757','2058568.09', '1464','1035','2275411.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011633.0','1018901.0','4', '4','4','8392.25', '4','4','8392.25', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099897.0','1044468.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011634.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099898.0','1044468.0','2', '2','2','2031.18', '2','2','2031.18', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011635.0','1018901.0','1', '1','1','2114.84', '1','0','0.0', '1','1','2114.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099899.0','1044468.0','8', '7','3','11937.87', '6','2','6309.76', '2','2','5628.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011636.0','1018901.0','8', '8','4','3278.98', '8','1','805.0', '4','3','2473.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099900.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011637.0','1018901.0','2', '1','1','1050.96', '1','1','1050.96', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099901.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011638.0','1018901.0','1', '1','1','2730.79', '1','0','0.0', '1','1','2730.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099902.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011639.0','1018901.0','1', '1','1','7266.0', '1','1','7266.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099903.0','1044468.0','2', '2','2','3485.78', '2','2','3352.64', '1','1','133.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011557.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099821.0','1044468.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011509.0','1018901.0','2', '2','2','4714.4', '2','2','4714.4', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099773.0','1044468.0','3', '2','1','5400.0', '2','1','5400.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011640.0','1018901.0','1', '1','1','838.59', '1','1','838.59', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099904.0','1044468.0','1', '1','1','233.55', '1','1','233.55', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011641.0','1018901.0','3', '2','2','2023.0', '2','2','2023.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099905.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011642.0','1018901.0','24', '24','17','14954.87', '24','15','14425.28', '16','3','529.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099906.0','1044468.0','1', '1','1','1360.88', '1','1','1360.88', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011643.0','1018901.0','6', '5','3','5084.36', '5','3','5084.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099907.0','1044468.0','4', '4','2','4230.27', '4','2','4078.28', '4','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011644.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099908.0','1044468.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011645.0','1018901.0','4', '1','1','654.59', '1','1','654.59', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099909.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011646.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099910.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011647.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099911.0','1044468.0','3', '3','2','2685.38', '3','2','2685.38', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011648.0','1018901.0','22', '15','10','20891.65', '15','10','19589.63', '10','2','1302.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099912.0','1044468.0','1', '1','1','2605.88', '1','1','2605.88', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011503.0','1018901.0','2', '2','2','6583.96', '2','2','6583.96', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099767.0','1044468.0','1', '1','1','799.0', '1','1','799.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011649.0','1018901.0','11', '10','4','4208.03', '10','4','4208.03', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099913.0','1044468.0','9', '8','7','18589.56', '8','7','18059.97', '5','2','529.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011650.0','1018901.0','17', '16','15','43017.62', '16','14','42110.63', '10','1','906.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099914.0','1044468.0','1', '1','1','3615.0', '1','1','3615.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011651.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099915.0','1044468.0','1', '1','1','77.34', '1','1','77.34', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011652.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099916.0','1044468.0','4', '4','2','2330.65', '3','2','1943.57', '2','1','387.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011653.0','1018901.0','2', '2','1','4268.35', '2','1','4268.35', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099917.0','1044468.0','2', '2','2','2856.88', '2','2','2856.88', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011654.0','1018901.0','3', '3','3','6176.32', '3','3','6176.32', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099918.0','1044468.0','1', '1','1','3236.52', '1','1','3236.52', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011655.0','1018901.0','5', '5','4','7421.43', '5','4','7117.45', '4','2','303.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099919.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011656.0','1018901.0','5', '3','2','2097.46', '3','2','2097.46', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099920.0','1044468.0','2', '2','1','2277.8', '2','1','2277.8', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011657.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099921.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011658.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099922.0','1044468.0','2', '2','1','596.49', '2','1','596.49', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011659.0','1018901.0','2', '2','2','4538.3', '2','2','4538.3', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099923.0','1044468.0','6', '5','3','1305.87', '5','3','1305.87', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011660.0','1018901.0','1', '1','1','3165.81', '1','1','3165.81', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099924.0','1044468.0','23', '20','15','43516.83', '20','15','37534.54', '6','1','5982.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011661.0','1018901.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099925.0','1044468.0','6', '6','6','6455.9', '6','6','6455.9', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011662.0','1018901.0','32', '27','19','50738.97', '26','19','38103.25', '18','4','12635.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099926.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011663.0','1018901.0','4', '3','2','1931.98', '2','2','1931.98', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099927.0','1044468.0','5', '5','3','4016.9', '5','3','4016.9', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011497.0','1018901.0','2', '2','1','4759.34', '2','1','4759.34', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099761.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011664.0','1018901.0','1', '1','1','807.03', '1','1','581.42', '1','1','225.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099928.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011665.0','1018901.0','10', '9','8','10032.72', '9','8','9880.73', '3','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099929.0','1044468.0','3', '2','1','1171.51', '2','1','1171.51', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011458.0','1018901.0','1', '1','1','1788.34', '1','1','1788.34', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099722.0','1044468.0','32', '31','25','42795.3', '31','25','42795.3', '16','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011666.0','1018901.0','20', '19','17','39385.99', '19','16','36129.86', '11','1','3256.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099930.0','1044468.0','1', '1','1','772.03', '1','1','772.03', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011667.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099931.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011451.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099715.0','1044468.0','1', '1','1','3132.66', '1','1','3132.66', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011668.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099932.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011542.0','1018901.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099806.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011669.0','1018901.0','3', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099933.0','1044468.0','11', '10','9','25129.08', '10','9','22307.69', '7','1','2821.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011670.0','1018901.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099934.0','1044468.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011567.0','1018901.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099831.0','1044468.0','10', '10','9','20195.06', '10','8','18810.94', '7','3','1384.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011671.0','1018901.0','5', '3','2','33634.82', '3','2','22593.0', '1','1','11041.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099935.0','1044468.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011672.0','1018901.0','1', '1','1','1399.15', '1','1','1399.15', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099936.0','1044468.0','1', '1','1','1171.94', '1','1','1171.94', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011673.0','1018901.0','1', '1','1','2040.64', '1','1','1888.65', '1','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099937.0','1044468.0','6', '6','3','3753.31', '6','3','3753.31', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011674.0','1018901.0','5', '4','4','9442.14', '4','4','9442.14', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099938.0','1044468.0','47', '44','33','47157.97', '44','31','45721.19', '30','8','1436.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011675.0','1018901.0','9', '9','8','16540.67', '9','8','16540.67', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099939.0','1044468.0','3', '3','3','6753.32', '3','3','6753.32', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011676.0','1018901.0','2', '2','1','1110.23', '2','1','1110.23', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099940.0','1044468.0','8', '6','5','7278.85', '6','5','7126.86', '4','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011677.0','1018901.0','48', '45','11','44687.6', '45','7','22621.46', '20','6','22066.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099941.0','1044468.0','18', '18','12','13615.21', '18','12','13463.22', '8','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011678.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099942.0','1044468.0','6', '6','6','10646.99', '6','6','10646.99', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011536.0','1018901.0','28', '20','10','127739.6', '20','10','70276.0', '9','8','57463.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099800.0','1044468.0','119', '112','97','255907.82', '109','95','104378.43', '63','34','151529.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011679.0','1018901.0','8', '4','3','9512.76', '4','3','2481.02', '2','1','7031.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099943.0','1044468.0','6', '6','5','5523.67', '6','5','4734.57', '4','1','789.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011680.0','1018901.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099944.0','1044468.0','6', '4','2','2025.89', '4','2','2025.89', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011681.0','1018901.0','2', '1','1','11302.0', '1','1','11302.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099945.0','1044468.0','6', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011682.0','1018901.0','3', '3','0','0.0', '2','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099946.0','1044468.0','2', '2','1','8252.67', '2','1','564.0', '1','1','7688.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011683.0','1018901.0','3', '1','1','6655.14', '1','1','361.0', '1','1','6294.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099947.0','1044468.0','1', '1','1','16820.73', '1','1','11353.0', '1','1','5467.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011684.0','1018901.0','7', '5','4','36574.94', '3','2','22550.0', '3','3','14024.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099948.0','1044468.0','3', '3','2','1443.94', '3','2','1443.94', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011685.0','1018901.0','4', '4','4','6972.68', '4','4','5993.84', '4','2','978.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099949.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011686.0','1018901.0','2', '2','2','3156.57', '2','2','3156.57', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099950.0','1044468.0','5', '3','3','6819.35', '3','3','5565.88', '2','1','1253.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011687.0','1018901.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099951.0','1044468.0','1', '1','1','6528.0', '1','1','6528.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011688.0','1018901.0','5', '5','4','13884.43', '5','4','13884.43', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099952.0','1044468.0','5', '5','0','0.0', '5','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011689.0','1018901.0','10', '10','7','9944.99', '9','7','9944.99', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099953.0','1044468.0','9', '9','9','34776.95', '9','9','34247.36', '7','2','529.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011474.0','1018901.0','4', '4','2','4361.8', '4','2','4361.8', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099738.0','1044468.0','1', '1','1','520.59', '1','1','520.59', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011578.0','1018901.0','2', '2','1','301.28', '2','1','301.28', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099842.0','1044468.0','3', '3','3','3103.5', '3','3','3103.5', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011581.0','1018901.0','4', '4','3','1181.55', '4','3','955.94', '1','1','225.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099845.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011690.0','1018901.0','1', '1','1','4363.78', '1','1','4363.78', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099954.0','1044468.0','5', '5','2','2273.8', '5','2','2273.8', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011408.0','1018901.0','1', '1','1','294.42', '1','1','294.42', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099672.0','1044468.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011691.0','1018901.0','1', '1','1','257.68', '1','1','257.68', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099955.0','1044468.0','1', '1','1','5039.02', '1','1','5039.02', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011692.0','1018901.0','31', '26','22','47620.1', '25','21','46938.52', '15','3','681.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099956.0','1044468.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011693.0','1018901.0','1', '1','1','588.63', '1','1','588.63', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099957.0','1044468.0','13', '11','9','28613.08', '11','9','27749.29', '10','1','863.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011694.0','1018901.0','1', '1','1','3982.4', '1','1','3982.4', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099958.0','1044468.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011695.0','1018901.0','32', '29','15','79761.95', '29','15','55031.09', '21','4','24730.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099959.0','1044468.0','35', '32','29','37460.13', '32','28','34785.36', '21','7','2674.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011696.0','1018901.0','4', '3','3','11094.24', '2','2','2051.21', '2','1','9043.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099960.0','1044468.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011697.0','1018907.0','10', '9','6','8676.59', '9','6','8676.59', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099961.0','1044474.0','16', '13','8','23542.08', '13','8','15796.08', '6','1','7746.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001461.0', '2011698.0','1018907.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005916.0', '2099962.0','1044474.0','11', '10','6','16208.43', '10','6','15830.83', '2','1','377.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011699.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099963.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011491.0','1018907.0','8', '2','2','12650.12', '2','2','12650.12', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099755.0','1044474.0','4', '4','3','4119.32', '4','3','3516.11', '4','2','603.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011700.0','1018907.0','3', '2','2','22548.0', '2','2','22548.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099964.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011478.0','1018907.0','8', '5','2','12398.72', '4','2','1080.0', '3','1','11318.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099742.0','1044474.0','8', '7','6','4610.78', '7','6','4610.78', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011466.0','1018907.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099730.0','1044474.0','1', '1','1','4917.06', '1','1','4765.07', '1','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011423.0','1018907.0','1', '1','1','455.41', '1','1','455.41', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099687.0','1044474.0','12', '12','10','16065.67', '12','10','16065.67', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011701.0','1018907.0','8', '7','3','12077.74', '7','3','10441.16', '6','2','1636.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099965.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011702.0','1018907.0','8', '7','7','22538.91', '7','7','22313.3', '6','1','225.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099966.0','1044474.0','32', '28','24','77712.5', '26','24','76886.47', '15','2','826.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011703.0','1018907.0','10', '7','2','12051.0', '6','1','11451.0', '5','1','600.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099967.0','1044474.0','1', '1','1','227.19', '1','1','227.19', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011704.0','1018907.0','2', '2','1','192.72', '2','1','192.72', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099968.0','1044474.0','3', '3','2','7795.22', '3','2','7795.22', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011705.0','1018907.0','1', '1','1','1154.55', '1','1','776.95', '1','1','377.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099969.0','1044474.0','3', '2','1','2332.02', '2','1','2332.02', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011706.0','1018907.0','34', '34','27','41516.33', '34','26','40682.76', '19','5','833.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099970.0','1044474.0','2', '2','2','4135.84', '2','2','3983.85', '1','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011707.0','1018907.0','2', '2','2','3515.79', '2','2','3515.79', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099971.0','1044474.0','61', '55','26','157055.6', '54','26','69078.29', '38','15','87977.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011708.0','1018907.0','5', '4','2','29927.97', '3','2','22655.0', '3','1','7272.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099972.0','1044474.0','2', '2','1','11241.0', '2','1','11241.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011709.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099973.0','1044474.0','2', '2','0','0.0', '0','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011710.0','1018907.0','12', '11','6','9234.46', '11','6','9234.46', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099974.0','1044474.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011711.0','1018907.0','1', '1','1','5400.0', '1','1','5400.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099975.0','1044474.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011712.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099976.0','1044474.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011713.0','1018907.0','1', '1','1','1233.44', '1','1','1233.44', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099977.0','1044474.0','4', '4','4','7470.96', '4','4','7245.35', '3','1','225.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011714.0','1018907.0','3', '2','2','1485.36', '2','2','1485.36', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099978.0','1044474.0','153', '139','103','276588.41', '137','103','250802.87', '82','21','25785.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011715.0','1018907.0','98', '76','51','80796.77', '73','51','74180.9', '48','7','6615.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099979.0','1044474.0','2', '2','2','4746.57', '2','2','4746.57', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011716.0','1018907.0','54', '47','40','125900.59', '46','40','106763.05', '27','14','19137.54');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099980.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011379.0','1018907.0','11', '5','2','5740.93', '4','2','5740.93', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099643.0','1044474.0','1', '1','1','3873.14', '1','1','3873.14', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011717.0','1018907.0','18', '18','15','17006.0', '18','15','11478.13', '12','3','5527.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099981.0','1044474.0','7', '6','6','14840.75', '6','6','14840.75', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011718.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099982.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011719.0','1018907.0','7', '5','2','11731.8', '3','2','11731.8', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099983.0','1044474.0','6', '6','3','30468.86', '6','3','23906.87', '3','1','6561.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011720.0','1018907.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099984.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011721.0','1018907.0','4', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099985.0','1044474.0','1', '1','1','8270.98', '1','1','402.0', '1','1','7868.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011722.0','1018907.0','2', '2','1','19912.22', '1','1','11368.0', '2','1','8544.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2099986.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011723.0','1018907.0','3', '1','1','91.31', '1','1','91.31', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099987.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011724.0','1018907.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099988.0','1044474.0','21', '14','2','13168.94', '14','2','1067.0', '4','1','12101.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011725.0','1018907.0','18', '10','4','31763.88', '8','4','17722.57', '6','2','14041.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099989.0','1044474.0','17', '17','15','29965.54', '16','14','29661.56', '11','2','303.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011726.0','1018907.0','5', '3','2','29936.14', '3','2','22482.0', '1','1','7454.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099990.0','1044474.0','3', '2','2','4111.45', '2','2','4111.45', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011727.0','1018907.0','13', '11','6','56828.19', '10','6','36278.5', '8','3','20549.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099991.0','1044474.0','2', '2','1','339.21', '2','1','339.21', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011728.0','1018907.0','10', '8','4','5616.15', '8','4','5464.16', '4','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099992.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011729.0','1018907.0','3', '2','2','3384.01', '2','2','3384.01', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099993.0','1044474.0','1', '1','1','1241.01', '1','1','1241.01', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011730.0','1018907.0','2', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099994.0','1044474.0','5', '5','5','15019.6', '5','5','13010.05', '3','1','2009.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011731.0','1018907.0','5', '5','3','5253.7', '5','3','5253.7', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099995.0','1044474.0','1', '1','1','3572.06', '1','1','3572.06', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011732.0','1018907.0','9', '7','4','11963.9', '7','4','11963.9', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099996.0','1044474.0','1', '1','1','2990.97', '1','1','2990.97', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011733.0','1018907.0','9', '9','5','8497.0', '9','4','7820.17', '7','3','676.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099997.0','1044474.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011734.0','1018907.0','5', '4','4','12374.9', '4','4','12374.9', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099998.0','1044474.0','43', '38','33','151703.86', '37','32','55527.4', '26','18','96176.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011735.0','1018907.0','2', '1','1','4019.78', '1','1','4019.78', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2099999.0','1044474.0','57', '55','47','89398.37', '55','47','84539.23', '33','8','4859.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011736.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100000.0','1044474.0','6', '5','3','53210.79', '4','3','25636.0', '5','3','27574.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011737.0','1018907.0','1', '1','1','341.09', '1','1','341.09', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100001.0','1044474.0','1', '1','1','1208.56', '1','1','1208.56', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011738.0','1018907.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100002.0','1044474.0','4', '3','2','25747.26', '2','2','11636.0', '3','2','14111.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011739.0','1018907.0','7', '5','3','4801.34', '4','2','4001.36', '4','1','799.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100003.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011740.0','1018907.0','24', '14','3','43705.04', '12','3','22817.0', '9','2','20888.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100004.0','1044474.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011741.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100005.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011742.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100006.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011743.0','1018907.0','1', '1','1','7537.27', '1','1','468.0', '1','1','7069.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100007.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011744.0','1018907.0','9', '5','1','26537.25', '5','1','11512.0', '3','1','15025.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100008.0','1044474.0','3', '3','3','10504.05', '3','3','10504.05', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011745.0','1018907.0','7', '4','3','10566.71', '4','3','1686.0', '4','1','8880.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100009.0','1044474.0','20', '20','18','31919.62', '20','17','30860.44', '14','6','1059.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011746.0','1018907.0','2', '1','1','471.24', '1','1','471.24', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100010.0','1044474.0','6', '6','6','14644.12', '6','6','13567.88', '4','2','1076.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011747.0','1018907.0','2', '1','1','6983.42', '1','1','6983.42', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100011.0','1044474.0','19', '18','16','15500.86', '18','16','15275.25', '12','1','225.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011748.0','1018907.0','1', '1','1','265.2', '1','1','265.2', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100012.0','1044474.0','1', '1','1','3042.49', '1','1','2609.39', '1','1','433.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011749.0','1018907.0','12', '11','10','20040.88', '11','10','20040.88', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100013.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011750.0','1018907.0','14', '11','4','19271.29', '11','4','12772.0', '4','1','6499.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100014.0','1044474.0','24', '21','16','54588.98', '21','16','53554.03', '9','2','1034.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011751.0','1018907.0','11', '11','8','18191.19', '10','8','17011.41', '4','2','1179.78');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100015.0','1044474.0','44', '31','23','60504.09', '31','20','52987.64', '18','4','7516.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011752.0','1018907.0','5', '5','5','8950.25', '5','5','8950.25', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100016.0','1044474.0','18', '13','9','14019.25', '13','8','12382.02', '8','2','1637.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011753.0','1018907.0','4', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100017.0','1044474.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011754.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100018.0','1044474.0','4', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011755.0','1018907.0','4', '4','3','7120.35', '4','3','7120.35', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100019.0','1044474.0','1', '1','1','25051.79', '1','1','11531.0', '1','1','13520.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011756.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100020.0','1044474.0','59', '59','40','124375.71', '58','39','117824.8', '31','7','6550.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011757.0','1018907.0','12', '12','10','43297.84', '12','10','39819.41', '11','4','3478.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100021.0','1044474.0','23', '21','18','65005.58', '21','18','62561.52', '12','2','2444.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011758.0','1018907.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100022.0','1044474.0','1', '1','1','2988.03', '1','1','2988.03', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011759.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100023.0','1044474.0','17', '16','10','17554.07', '16','9','16946.83', '6','2','607.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011760.0','1018907.0','5', '5','3','4404.63', '5','3','4404.63', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100024.0','1044474.0','24', '21','16','24642.46', '21','16','24039.25', '13','3','603.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011761.0','1018907.0','1', '1','1','829.09', '1','1','829.09', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100025.0','1044474.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011762.0','1018907.0','34', '18','7','11150.09', '18','4','7772.4', '9','5','3377.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100026.0','1044474.0','9', '7','6','16699.71', '7','6','16699.71', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011763.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100027.0','1044474.0','35', '35','27','42746.42', '35','27','40893.63', '21','5','1852.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011764.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100028.0','1044474.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011765.0','1018907.0','1', '1','1','157.48', '1','1','157.48', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100029.0','1044474.0','14', '6','2','25446.17', '5','2','18332.0', '5','2','7114.17');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011766.0','1018907.0','12', '9','9','15834.11', '9','9','15834.11', '7','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100030.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011767.0','1018907.0','1', '1','1','3326.71', '1','1','3326.71', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100031.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011768.0','1018907.0','9', '3','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100032.0','1044474.0','3', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011769.0','1018907.0','8', '6','1','19247.69', '5','1','11471.0', '2','1','7776.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100033.0','1044474.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011770.0','1018907.0','37', '28','11','91407.31', '24','9','42451.39', '14','8','48955.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100034.0','1044474.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011771.0','1018907.0','1', '1','1','74.22', '1','1','74.22', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100035.0','1044474.0','83', '78','65','174016.94', '77','64','145882.76', '50','16','28134.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011772.0','1018907.0','1', '1','1','16995.45', '1','1','10900.0', '1','1','6095.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100036.0','1044474.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011773.0','1018907.0','86', '71','24','325986.08', '67','23','199622.98', '43','17','126363.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100037.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011774.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100038.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011775.0','1018907.0','3', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100039.0','1044474.0','21', '21','19','82870.65', '21','19','14110.8', '18','14','68759.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011776.0','1018907.0','2', '2','2','1130.72', '2','1','978.73', '2','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100040.0','1044474.0','1', '1','1','3664.82', '1','1','3664.82', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011777.0','1018907.0','6', '6','6','10470.73', '6','6','10470.73', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100041.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011778.0','1018907.0','1', '1','1','5282.98', '1','1','5282.98', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100042.0','1044474.0','2', '2','2','1627.79', '2','2','1627.79', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011779.0','1018907.0','6', '6','5','15258.68', '6','4','14881.08', '3','1','377.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100043.0','1044474.0','4', '3','2','5425.24', '3','2','5425.24', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011780.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100044.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011781.0','1018907.0','4', '3','2','5919.82', '3','2','5919.82', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100045.0','1044474.0','1', '1','1','2337.49', '1','1','2337.49', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011782.0','1018907.0','2', '1','1','5400.0', '1','1','5400.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100046.0','1044474.0','3', '3','3','6006.59', '3','2','4877.15', '2','2','1129.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011783.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100047.0','1044474.0','2', '2','1','11351.0', '2','1','11351.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011784.0','1018907.0','12', '11','9','24963.74', '11','9','24738.13', '6','1','225.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100048.0','1044474.0','7', '7','7','9878.68', '7','7','9878.68', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011785.0','1018907.0','7', '7','5','6638.82', '7','5','6198.58', '5','1','440.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100049.0','1044474.0','23', '22','19','41677.9', '22','18','37461.94', '13','6','4215.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011786.0','1018907.0','227', '221','65','246821.86', '218','50','130271.97', '109','41','116549.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100050.0','1044474.0','6', '4','3','11093.45', '4','3','11093.45', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011787.0','1018907.0','5', '2','1','11325.0', '2','1','11325.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100051.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011788.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100052.0','1044474.0','8', '4','3','20575.69', '3','3','12204.0', '2','1','8371.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011789.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100053.0','1044474.0','18', '14','5','75993.02', '10','5','45891.0', '11','4','30102.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011790.0','1018907.0','4', '3','2','23207.39', '3','2','12948.62', '1','1','10258.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100054.0','1044474.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011791.0','1018907.0','1', '1','1','629.0', '1','1','629.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100055.0','1044474.0','1', '1','1','2940.98', '1','1','2940.98', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011792.0','1018907.0','5', '5','4','10291.87', '5','4','10291.87', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100056.0','1044474.0','106', '96','73','240171.22', '94','72','207957.06', '58','18','32214.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011793.0','1018907.0','1', '1','1','1912.08', '1','1','1912.08', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100057.0','1044474.0','1', '1','1','3628.96', '1','1','3476.97', '1','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011794.0','1018907.0','3', '3','2','2840.78', '3','2','2840.78', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100058.0','1044474.0','13', '11','11','13566.76', '11','7','8957.12', '11','5','4609.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011795.0','1018907.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100059.0','1044474.0','1', '1','1','11420.0', '1','1','11420.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011796.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100060.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011797.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100061.0','1044474.0','1', '1','1','25010.91', '1','1','17353.0', '1','1','7657.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011798.0','1018907.0','104', '85','44','420127.84', '82','43','175301.24', '58','30','244826.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100062.0','1044474.0','13', '7','3','19416.0', '7','3','19416.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011799.0','1018907.0','6', '5','0','0.0', '5','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100063.0','1044474.0','17', '12','2','32444.45', '12','2','23838.4', '6','1','8606.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011800.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100064.0','1044474.0','44', '35','11','106802.77', '34','11','50453.2', '22','5','56349.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011801.0','1018907.0','8', '6','4','28912.89', '5','3','21792.96', '4','2','7119.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100065.0','1044474.0','6', '4','2','24725.19', '3','1','11481.0', '3','2','13244.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011802.0','1018907.0','14', '13','5','11712.8', '13','5','11712.8', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100066.0','1044474.0','1', '1','1','1105.0', '1','1','1105.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011803.0','1018907.0','8', '7','4','11531.18', '7','4','11531.18', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100067.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011804.0','1018907.0','5', '3','2','8596.02', '3','2','8596.02', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100068.0','1044474.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011805.0','1018907.0','10', '10','8','28262.73', '9','8','28262.73', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100069.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011806.0','1018907.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100070.0','1044474.0','2', '2','1','1884.42', '2','1','1884.42', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011807.0','1018907.0','37', '26','9','17360.99', '25','8','16810.99', '9','1','550.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100071.0','1044474.0','47', '41','27','128231.93', '37','24','78388.61', '24','8','49843.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011808.0','1018907.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100072.0','1044474.0','94', '77','43','141797.14', '77','40','118496.49', '51','11','23300.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011809.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100073.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011810.0','1018907.0','1', '1','1','5400.0', '1','1','5400.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100074.0','1044474.0','1', '1','1','1098.0', '1','1','1098.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011811.0','1018907.0','5', '5','5','30386.37', '5','2','990.0', '5','5','29396.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100075.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011812.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100076.0','1044474.0','3', '1','1','1865.0', '1','1','1865.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011813.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100077.0','1044474.0','1', '1','1','1142.14', '1','1','642.0', '1','1','500.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011814.0','1018907.0','23', '15','0','0.0', '14','0','0.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100078.0','1044474.0','1', '1','1','589.0', '1','1','589.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011815.0','1018907.0','17', '17','13','50124.58', '16','10','38148.81', '13','5','11975.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100079.0','1044474.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011816.0','1018907.0','4', '2','1','4682.59', '2','1','1227.0', '1','1','3455.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100080.0','1044474.0','7', '7','4','14395.67', '7','3','13456.77', '4','1','938.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011817.0','1018907.0','25', '20','12','48578.44', '19','12','45510.99', '9','2','3067.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100081.0','1044474.0','4', '4','1','1798.4', '4','1','1798.4', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011818.0','1018907.0','30', '21','7','20406.89', '21','7','20406.89', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100082.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011819.0','1018907.0','12', '12','3','3630.69', '11','2','2935.72', '6','1','694.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100083.0','1044474.0','7', '7','3','5782.81', '7','3','5782.81', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011820.0','1018907.0','5', '4','4','7991.43', '4','4','4949.28', '4','1','3042.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100084.0','1044474.0','6', '3','1','528.0', '3','1','528.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011821.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100085.0','1044474.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011822.0','1018907.0','3', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100086.0','1044474.0','243', '193','93','275421.76', '179','85','235732.77', '100','17','39688.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011823.0','1018907.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100087.0','1044474.0','5', '5','1','528.93', '5','1','528.93', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011824.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100088.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011825.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100089.0','1044474.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011826.0','1018907.0','99', '75','39','490147.22', '66','38','229552.58', '57','30','260594.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100090.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011827.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100091.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011828.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100092.0','1044474.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011829.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100093.0','1044474.0','4', '4','0','0.0', '4','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011830.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100094.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011831.0','1018907.0','2', '2','1','5400.0', '2','1','5400.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100095.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011832.0','1018907.0','3', '2','1','443.0', '2','1','443.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100096.0','1044474.0','3', '2','1','5400.0', '1','1','5400.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011833.0','1018907.0','59', '39','20','51650.03', '35','19','44586.45', '24','3','7063.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100097.0','1044474.0','46', '38','20','43365.12', '38','18','41463.77', '24','4','1901.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011834.0','1018907.0','97', '89','55','108117.47', '89','48','95539.11', '48','20','12578.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100098.0','1044474.0','5', '5','2','5013.91', '5','2','5013.91', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011835.0','1018907.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100099.0','1044474.0','4', '2','2','2702.88', '2','2','2702.88', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011836.0','1018907.0','115', '87','51','171776.69', '82','46','138542.95', '43','13','33233.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100100.0','1044474.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011837.0','1018907.0','10', '4','2','14734.38', '4','2','13354.0', '2','1','1380.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100101.0','1044474.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011838.0','1018907.0','56', '53','41','117033.8', '52','36','84730.37', '40','17','32303.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100102.0','1044474.0','21', '15','9','28754.66', '15','9','28754.66', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011839.0','1018907.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100103.0','1044474.0','23', '15','5','13660.93', '14','5','13660.93', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011840.0','1018907.0','5', '5','2','9160.43', '5','2','2497.59', '4','2','6662.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100104.0','1044474.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011841.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100105.0','1044474.0','3', '2','0','0.0', '2','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011842.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100106.0','1044474.0','20', '12','5','10136.55', '8','3','1002.62', '9','3','9133.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011843.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100107.0','1044474.0','1', '1','1','18041.56', '1','1','11558.0', '1','1','6483.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011844.0','1018907.0','23', '20','10','97604.06', '19','9','49785.08', '12','6','47818.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100108.0','1044474.0','1', '1','1','11489.0', '1','1','11489.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011845.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100109.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011846.0','1018907.0','3', '2','1','2184.49', '1','1','2184.49', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100110.0','1044474.0','1', '1','1','11631.15', '1','1','11489.0', '1','1','142.15');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011847.0','1018907.0','3', '2','1','3372.19', '2','1','3372.19', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100111.0','1044474.0','1', '1','1','519.94', '1','1','519.94', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011848.0','1018907.0','1', '1','1','5304.48', '1','1','589.0', '1','1','4715.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100112.0','1044474.0','13', '11','9','106381.08', '10','9','37237.0', '8','7','69144.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011849.0','1018907.0','2', '1','1','15675.44', '1','1','12030.0', '1','1','3645.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100113.0','1044474.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011850.0','1018907.0','27', '24','13','27692.08', '24','12','27502.09', '10','1','189.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100114.0','1044474.0','9', '4','1','2877.44', '4','1','2877.44', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011851.0','1018907.0','12', '8','4','8050.41', '7','4','8050.41', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100115.0','1044474.0','6', '6','3','7455.67', '6','3','7455.67', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011852.0','1018907.0','1', '1','1','675.36', '1','1','675.36', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100116.0','1044474.0','3', '3','2','8385.09', '3','2','8385.09', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011853.0','1018907.0','22', '19','16','36505.12', '18','15','35291.12', '13','5','1214.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100117.0','1044474.0','1', '1','1','5400.0', '1','1','5400.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011854.0','1018907.0','3', '2','1','5400.0', '2','1','5400.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100118.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011855.0','1018907.0','5', '5','1','440.5', '5','1','440.5', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100119.0','1044474.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011856.0','1018907.0','14', '13','8','32835.68', '13','8','32835.68', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100120.0','1044474.0','1', '1','1','709.07', '1','1','709.07', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011857.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100121.0','1044474.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011858.0','1018907.0','4', '4','3','8844.19', '4','3','8844.19', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100122.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011859.0','1018907.0','277', '193','126','443175.15', '186','117','377711.2', '111','39','65463.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100123.0','1044474.0','4', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011860.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100124.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011861.0','1018907.0','1', '1','1','369.97', '1','1','369.97', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100125.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011862.0','1018907.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100126.0','1044474.0','2', '1','1','587.96', '1','1','587.96', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011863.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100127.0','1044474.0','1', '1','1','13323.73', '1','1','1189.1', '1','1','12134.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011864.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100128.0','1044474.0','16', '8','2','12606.55', '7','2','12606.55', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011865.0','1018907.0','4', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100129.0','1044474.0','15', '15','7','82379.81', '11','3','22940.0', '10','6','59439.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011866.0','1018907.0','8', '5','0','0.0', '5','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100130.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011867.0','1018907.0','9', '6','2','21649.13', '5','2','15685.22', '4','1','5963.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100131.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011868.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100132.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011869.0','1018907.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100133.0','1044474.0','3', '3','1','519.13', '3','1','519.13', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011870.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100134.0','1044474.0','36', '31','13','36836.47', '31','12','31123.97', '21','3','5712.5');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011871.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100135.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011872.0','1018907.0','31', '23','15','171307.09', '22','14','96663.16', '16','9','74643.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100136.0','1044474.0','1', '1','1','3678.62', '1','0','0.0', '1','1','3678.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011873.0','1018907.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100137.0','1044474.0','16', '13','4','3768.54', '12','4','3768.54', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011874.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100138.0','1044474.0','15', '14','4','6421.08', '14','4','6421.08', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011875.0','1018907.0','10', '7','3','7140.17', '7','3','7140.17', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100139.0','1044474.0','5', '3','2','10800.0', '3','2','10800.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011876.0','1018907.0','9', '9','6','22054.2', '9','6','21888.2', '4','1','166.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100140.0','1044474.0','19', '17','2','2678.0', '16','2','2678.0', '11','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011877.0','1018907.0','177', '129','65','165822.41', '120','53','123888.94', '63','19','41933.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100141.0','1044474.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011878.0','1018907.0','1', '1','1','3373.05', '1','1','3373.05', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100142.0','1044474.0','44', '42','8','10086.64', '41','7','9471.22', '23','2','615.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011879.0','1018907.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100143.0','1044474.0','4', '4','2','5747.4', '4','2','5747.4', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011880.0','1018907.0','7', '5','5','11323.76', '4','3','2590.23', '4','3','8733.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100144.0','1044474.0','6', '2','1','1911.64', '2','1','1911.64', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011881.0','1018907.0','14', '8','2','14516.1', '6','2','11302.0', '6','1','3214.1');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100145.0','1044474.0','7', '6','3','6668.9', '6','3','6668.9', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011882.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100146.0','1044474.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2011883.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2100147.0','1044474.0','45', '42','34','58477.27', '42','34','38772.0', '19','6','19705.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011884.0','1018907.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100148.0','1044474.0','2', '2','1','2410.95', '2','1','2410.95', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011885.0','1018907.0','1', '1','1','21541.75', '1','1','11548.0', '1','1','9993.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100149.0','1044474.0','10', '10','3','46471.05', '9','3','24994.0', '5','3','21477.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011886.0','1018907.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100150.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011887.0','1018907.0','1', '1','1','27200.0', '0','0','0.0', '1','1','27200.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100151.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011888.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100152.0','1044474.0','23', '19','13','132570.31', '19','12','94077.2', '16','6','38493.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011889.0','1018907.0','2', '2','2','1376.9', '2','2','1376.9', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100153.0','1044474.0','7', '6','3','12319.25', '4','3','12319.25', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011890.0','1018907.0','91', '81','65','276537.0', '76','56','196212.61', '59','41','80324.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100154.0','1044474.0','7', '6','4','4805.67', '6','4','4402.96', '4','2','402.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011891.0','1018907.0','15', '15','10','33144.02', '14','9','30269.42', '10','3','2874.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100155.0','1044474.0','62', '57','36','99005.23', '55','25','43218.83', '35','17','55786.4');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011892.0','1018907.0','1', '1','1','6020.0', '1','1','6020.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100156.0','1044474.0','7', '6','2','6319.92', '5','2','6319.92', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011893.0','1018907.0','320', '215','91','245583.89', '195','63','89180.62', '139','60','156403.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100157.0','1044474.0','3', '2','2','1853.62', '2','2','1853.62', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011894.0','1018907.0','6', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100158.0','1044474.0','3', '3','1','6246.0', '3','1','6246.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011895.0','1018907.0','3', '3','2','3825.46', '3','2','3825.46', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100159.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011896.0','1018907.0','10', '8','1','10353.99', '7','1','10353.99', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100160.0','1044474.0','5', '3','0','0.0', '1','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011897.0','1018907.0','20', '11','4','53746.81', '10','4','34297.85', '4','2','19448.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100161.0','1044474.0','5', '4','3','5609.1', '4','3','5609.1', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011898.0','1018907.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100162.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011899.0','1018907.0','4', '4','2','7472.01', '4','2','7472.01', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100163.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011900.0','1018907.0','4', '3','1','25563.37', '3','1','11421.0', '2','1','14142.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100164.0','1044474.0','2', '2','1','10900.0', '2','1','10900.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011901.0','1018907.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100165.0','1044474.0','6', '5','4','6002.42', '5','4','6002.42', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011902.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100166.0','1044474.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011903.0','1018907.0','14', '9','1','2178.02', '7','1','2178.02', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100167.0','1044474.0','2', '1','1','500.0', '1','0','0.0', '1','1','500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011904.0','1018907.0','5', '2','1','5400.0', '2','1','5400.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100168.0','1044474.0','1', '1','1','1308.64', '1','1','1308.64', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011905.0','1018907.0','2', '2','2','5332.02', '2','2','5332.02', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100169.0','1044474.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011906.0','1018907.0','11', '7','2','5025.71', '7','1','620.0', '2','1','4405.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100170.0','1044474.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011907.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100171.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011908.0','1018907.0','5', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100172.0','1044474.0','3', '3','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011909.0','1018907.0','2', '2','1','846.0', '2','1','846.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100173.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011910.0','1018907.0','5', '2','1','11345.98', '2','1','396.0', '2','1','10949.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100174.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011911.0','1018907.0','2', '2','1','6125.0', '2','1','6125.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100175.0','1044474.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011912.0','1018907.0','3', '2','1','3040.8', '2','1','3040.8', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100176.0','1044474.0','1', '1','1','5400.0', '1','1','5400.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011913.0','1018907.0','5', '4','3','4025.38', '4','3','4025.38', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100177.0','1044474.0','11', '10','3','7012.03', '9','3','7012.03', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011914.0','1018907.0','8', '5','5','25173.4', '5','5','25173.4', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100178.0','1044474.0','1', '1','1','3846.0', '1','1','3846.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011915.0','1018907.0','53', '40','23','66735.37', '39','18','30686.14', '24','11','36049.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100179.0','1044474.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011916.0','1018907.0','4', '4','2','34222.93', '4','2','12214.0', '3','2','22008.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100180.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011917.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100181.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011918.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100182.0','1044474.0','2', '2','0','0.0', '1','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011919.0','1018907.0','5', '4','3','14741.0', '4','3','14741.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100183.0','1044474.0','3', '3','2','2298.08', '3','2','2298.08', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011920.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100184.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011921.0','1018907.0','5', '5','4','7685.06', '5','4','5178.41', '4','1','2506.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100185.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011922.0','1018907.0','35', '24','14','32237.74', '22','12','22172.74', '13','3','10065.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100186.0','1044474.0','5', '5','2','9412.37', '5','2','9412.37', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011923.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100187.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011924.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100188.0','1044474.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011925.0','1018907.0','18', '14','4','51545.69', '14','3','33493.0', '6','3','18052.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100189.0','1044474.0','3', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011926.0','1018907.0','1', '1','1','18924.39', '1','1','6321.0', '1','1','12603.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100190.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011927.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100191.0','1044474.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011928.0','1018907.0','12', '7','5','45231.96', '6','4','44626.0', '3','1','605.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100192.0','1044474.0','7', '6','6','53898.16', '6','6','25864.0', '4','3','28034.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011929.0','1018907.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100193.0','1044474.0','6', '3','1','11296.0', '3','1','11296.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011930.0','1018907.0','2', '2','2','14427.0', '2','2','14427.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100194.0','1044474.0','1', '1','1','5400.0', '1','1','5400.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011931.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100195.0','1044474.0','7', '7','1','11686.71', '4','1','11400.0', '4','1','286.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011932.0','1018907.0','23', '16','4','18963.3', '16','4','18963.3', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100196.0','1044474.0','1', '1','1','406.44', '1','1','406.44', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011933.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100197.0','1044474.0','1', '1','1','1905.26', '1','1','1334.42', '1','1','570.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011934.0','1018907.0','10', '8','3','18251.0', '8','3','18251.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100198.0','1044474.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011935.0','1018907.0','2', '2','1','8337.06', '2','1','520.0', '2','1','7817.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100199.0','1044474.0','29', '23','11','17487.33', '21','9','14044.94', '15','2','3442.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011936.0','1018907.0','4', '1','1','19480.29', '1','1','11320.0', '1','1','8160.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100200.0','1044474.0','1', '1','1','11426.0', '1','1','11426.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011937.0','1018907.0','4', '4','0','0.0', '4','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100201.0','1044474.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011938.0','1018907.0','20', '17','13','45940.18', '17','13','45940.18', '10','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100202.0','1044474.0','5', '3','3','12930.17', '3','3','12930.17', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011939.0','1018907.0','1', '1','1','3392.28', '1','1','3392.28', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100203.0','1044474.0','3', '3','2','4977.21', '3','2','4977.21', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011940.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100204.0','1044474.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011941.0','1018907.0','11', '11','7','32425.56', '11','7','31614.14', '9','1','811.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100205.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011942.0','1018907.0','6', '4','3','6149.19', '4','3','6149.19', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100206.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011943.0','1018907.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100207.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011944.0','1018907.0','19', '18','11','59057.39', '17','11','52159.81', '13','3','6897.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100208.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011945.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100209.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011946.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100210.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011947.0','1018907.0','4', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100211.0','1044474.0','21', '18','6','54212.04', '17','5','24767.0', '10','5','29445.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011948.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100212.0','1044474.0','1', '1','1','27200.0', '1','1','11875.0', '1','1','15325.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011949.0','1018907.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100213.0','1044474.0','1', '1','1','8710.83', '1','1','6383.0', '1','1','2327.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011950.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100214.0','1044474.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011951.0','1018907.0','18', '12','8','36702.89', '11','8','36702.89', '10','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100215.0','1044474.0','1', '1','1','2344.94', '1','1','1865.0', '1','1','479.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2011952.0','1018907.0','1', '1','1','2214.19', '1','1','1930.33', '1','1','283.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100216.0','1044474.0','20', '18','1','775.64', '18','1','775.64', '12','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011953.0','1018907.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100217.0','1044474.0','1', '1','1','2121.92', '1','1','2121.92', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011954.0','1018907.0','2', '1','1','2584.84', '1','1','2584.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100218.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011955.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100219.0','1044474.0','20', '14','2','3119.29', '14','2','3119.29', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011956.0','1018907.0','18', '13','9','39707.39', '13','9','32332.04', '6','3','7375.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100220.0','1044474.0','7', '3','1','1989.22', '3','1','1989.22', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011957.0','1018907.0','2', '2','1','158.4', '2','1','158.4', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100221.0','1044474.0','2', '2','1','16109.57', '2','1','15377.77', '2','1','731.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011958.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100222.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011959.0','1018907.0','9', '7','1','3894.82', '6','1','3704.83', '3','1','189.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100223.0','1044474.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011960.0','1018907.0','1', '1','1','491.06', '1','1','491.06', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100224.0','1044474.0','8', '4','3','9974.74', '4','3','9974.74', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011961.0','1018907.0','3', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100225.0','1044474.0','13', '13','3','4657.19', '13','3','4657.19', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011962.0','1018907.0','7', '5','2','1882.16', '4','2','1882.16', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100226.0','1044474.0','11', '7','4','6642.22', '5','4','6139.34', '5','1','502.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011963.0','1018907.0','1', '1','1','6312.0', '1','1','6312.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100227.0','1044474.0','4', '3','2','1363.6', '2','2','1363.6', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011964.0','1018907.0','5', '4','3','9208.8', '4','2','6666.86', '2','1','2541.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100228.0','1044474.0','4', '3','1','6257.0', '3','1','6257.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011965.0','1018907.0','7', '6','4','17654.16', '6','4','17112.0', '4','1','542.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100229.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011966.0','1018907.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100230.0','1044474.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011967.0','1018907.0','21', '18','13','38503.59', '18','13','34590.83', '10','1','3912.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100231.0','1044474.0','1', '1','1','4884.22', '1','1','4884.22', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011968.0','1018907.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100232.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011969.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100233.0','1044474.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011970.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100234.0','1044474.0','2', '2','2','3279.49', '2','2','3279.49', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011971.0','1018907.0','49', '43','12','26591.35', '42','10','25444.49', '20','2','1146.86');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100235.0','1044474.0','52', '45','26','60259.2', '44','26','60259.2', '10','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011972.0','1018907.0','60', '35','17','56331.92', '33','13','31725.18', '16','8','24606.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100236.0','1044474.0','8', '8','3','12266.0', '8','3','12266.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011973.0','1018907.0','14', '12','7','20670.49', '11','7','15830.56', '8','3','4839.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100237.0','1044474.0','10', '4','2','6099.75', '4','2','6099.75', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011974.0','1018907.0','7', '3','1','1819.62', '2','1','1819.62', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100238.0','1044474.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011975.0','1018907.0','565', '483','313','1355879.45', '448','254','896545.02', '306','146','459334.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100239.0','1044474.0','7', '5','0','0.0', '2','0','0.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011976.0','1018907.0','20', '16','5','13279.06', '16','4','8862.11', '9','2','4416.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100240.0','1044474.0','1', '1','1','6312.0', '1','1','6312.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011977.0','1018907.0','14', '12','5','9269.92', '10','4','7833.16', '10','1','1436.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100241.0','1044474.0','170', '136','85','227742.87', '127','82','220252.74', '79','12','7490.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011978.0','1018907.0','61', '48','23','66668.06', '47','23','25632.0', '37','12','41036.06');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100242.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011979.0','1018907.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100243.0','1044474.0','6', '4','0','0.0', '4','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011980.0','1018907.0','52', '40','20','50681.58', '38','20','36884.45', '17','4','13797.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100244.0','1044474.0','13', '11','8','18263.89', '11','8','17956.18', '3','1','307.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011981.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100245.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011982.0','1018907.0','5', '5','3','12213.51', '5','3','6346.72', '2','1','5866.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100246.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011983.0','1018907.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100247.0','1044474.0','10', '10','3','2878.76', '9','3','2878.76', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011984.0','1018907.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100248.0','1044474.0','100', '71','37','119219.43', '63','31','99199.52', '47','12','20019.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011985.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100249.0','1044474.0','15', '11','7','28341.08', '11','7','13918.82', '7','4','14422.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011986.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100250.0','1044474.0','7', '6','5','25872.38', '6','5','25872.38', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011987.0','1018907.0','1', '1','1','636.23', '1','1','636.23', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100251.0','1044474.0','72', '70','4','7593.92', '70','2','1454.04', '26','2','6139.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011988.0','1018907.0','26', '22','6','14048.09', '21','5','13898.15', '11','1','149.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100252.0','1044474.0','3', '3','2','6191.0', '3','2','6191.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011989.0','1018907.0','70', '62','30','168906.52', '60','28','88270.77', '41','20','80635.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100253.0','1044474.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011990.0','1018907.0','7', '4','3','5579.85', '4','3','5579.85', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100254.0','1044474.0','4', '3','2','6081.46', '2','2','4053.34', '3','1','2028.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011991.0','1018907.0','11', '8','3','4335.24', '8','3','4335.24', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100255.0','1044474.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011992.0','1018907.0','1', '1','1','507.53', '1','1','507.53', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100256.0','1044474.0','38', '32','21','71414.38', '32','19','69135.73', '15','4','2278.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2011993.0','1018907.0','28', '26','4','11657.48', '25','4','10832.6', '7','1','824.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100257.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2011994.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100258.0','1044474.0','55', '46','15','34985.6', '44','12','32685.77', '20','5','2299.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011995.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100259.0','1044474.0','8', '5','2','1705.63', '5','2','1505.64', '3','1','199.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011996.0','1018907.0','11', '9','2','11205.0', '9','2','11205.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100260.0','1044474.0','41', '22','14','58563.35', '19','12','25419.55', '14','7','33143.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011997.0','1018907.0','8', '8','1','11310.0', '8','1','11310.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100261.0','1044474.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011998.0','1018907.0','81', '64','26','90883.95', '57','26','74337.11', '30','5','16546.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100262.0','1044474.0','6', '5','1','853.92', '5','1','853.92', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2011999.0','1018907.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100263.0','1044474.0','12', '11','6','13746.32', '11','4','6048.18', '6','4','7698.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012000.0','1018907.0','7', '6','3','3423.03', '5','3','3423.03', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100264.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012001.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100265.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012002.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100266.0','1044474.0','145', '108','55','180611.25', '99','48','163816.24', '58','12','16795.01');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012003.0','1018907.0','33', '25','18','72308.82', '24','18','65712.03', '12','2','6596.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100267.0','1044474.0','9', '7','4','16525.87', '7','4','16359.87', '3','1','166.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012004.0','1018907.0','2', '2','2','8948.26', '2','2','8948.26', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100268.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012005.0','1018907.0','192', '157','78','257534.52', '142','58','103620.31', '115','50','153914.21');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100269.0','1044474.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012006.0','1018907.0','8', '6','4','4269.06', '6','4','3844.07', '3','1','424.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100270.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012007.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100271.0','1044474.0','94', '87','19','54332.97', '87','7','24907.0', '46','17','29425.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012008.0','1018907.0','8', '8','1','727.56', '8','1','727.56', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100272.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012009.0','1018907.0','6', '3','1','392.8', '3','1','392.8', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100273.0','1044474.0','53', '39','7','11160.31', '37','6','10713.61', '12','1','446.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012010.0','1018907.0','4', '4','0','0.0', '4','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100274.0','1044474.0','17', '15','14','41202.15', '14','12','37468.57', '8','3','3733.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012011.0','1018907.0','36', '28','13','27127.74', '27','10','18325.67', '13','5','8802.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100275.0','1044474.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012012.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100276.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012013.0','1018907.0','1', '1','1','1915.45', '1','1','1915.45', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100277.0','1044474.0','56', '47','30','95086.21', '43','26','80825.52', '21','7','14260.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012014.0','1018907.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100278.0','1044474.0','2', '2','2','4329.54', '2','2','1838.75', '2','1','2490.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012015.0','1018907.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100279.0','1044474.0','6', '6','3','4859.01', '6','3','4859.01', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012016.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100280.0','1044474.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012017.0','1018907.0','9', '8','2','1588.71', '8','1','888.83', '2','1','699.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100281.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012018.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100282.0','1044474.0','22', '20','8','24985.17', '20','5','14856.23', '13','5','10128.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012019.0','1018907.0','229', '210','39','47283.98', '204','31','36517.56', '68','9','10766.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100283.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012020.0','1018907.0','20', '18','5','8020.98', '16','3','7096.0', '7','3','924.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100284.0','1044474.0','27', '25','9','46338.97', '25','9','33447.38', '16','6','12891.59');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012021.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100285.0','1044474.0','42', '37','14','75191.22', '34','13','37052.69', '19','5','38138.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012022.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100286.0','1044474.0','6', '6','2','987.06', '6','2','987.06', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012023.0','1018907.0','21', '21','11','38870.92', '21','10','11410.43', '11','5','27460.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100287.0','1044474.0','3', '2','1','533.43', '2','1','533.43', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012024.0','1018907.0','58', '52','26','100927.3', '49','20','69107.63', '29','15','31819.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100288.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012025.0','1018907.0','3', '2','1','2214.87', '2','1','2214.87', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100289.0','1044474.0','5', '3','1','8152.66', '3','1','380.0', '1','1','7772.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012026.0','1018907.0','4', '4','2','18003.26', '4','1','5400.0', '3','1','12603.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100290.0','1044474.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012027.0','1018907.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100291.0','1044474.0','6', '4','2','29356.55', '4','2','13955.93', '3','2','15400.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012028.0','1018907.0','8', '7','1','388.0', '7','1','388.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100292.0','1044474.0','5', '5','3','23377.91', '5','2','11936.0', '3','2','11441.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012029.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100293.0','1044474.0','22', '16','4','20196.82', '16','2','12244.26', '6','4','7952.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012030.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100294.0','1044474.0','11', '10','2','4768.92', '10','2','4768.92', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012031.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012032.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100296.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012033.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100297.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012034.0','1018907.0','61', '56','13','25087.52', '56','13','25087.52', '9','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100298.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012035.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100299.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012036.0','1018907.0','5', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100300.0','1044474.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012037.0','1018907.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100301.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012038.0','1018907.0','3', '3','1','5440.0', '2','0','0.0', '2','1','5440.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100302.0','1044474.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012039.0','1018907.0','4', '4','2','11603.63', '4','2','818.0', '2','2','10785.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100303.0','1044474.0','19', '13','5','40746.27', '13','5','26071.07', '4','2','14675.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012040.0','1018907.0','10', '10','3','8925.4', '10','3','4994.17', '5','1','3931.23');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100304.0','1044474.0','4', '3','1','3008.64', '3','1','3008.64', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012041.0','1018918.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100305.0','1044485.0','31', '28','2','9008.13', '27','1','381.0', '14','1','8627.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012042.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100306.0','1044485.0','5', '3','2','5614.0', '3','1','5400.0', '3','1','214.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012043.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100307.0','1044485.0','7', '6','2','2866.81', '6','2','2866.81', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012044.0','1018918.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100308.0','1044485.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012045.0','1018918.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100309.0','1044485.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012046.0','1018918.0','4', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100310.0','1044485.0','15', '14','4','14856.73', '14','3','14666.74', '5','1','189.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012047.0','1018918.0','3', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100311.0','1044485.0','15', '15','2','6367.0', '15','2','6367.0', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012048.0','1018918.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100312.0','1044485.0','14', '12','1','905.0', '11','1','905.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012049.0','1018918.0','3', '2','1','735.08', '2','1','735.08', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100313.0','1044485.0','1', '1','1','833.07', '1','1','354.0', '1','1','479.07');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012050.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100314.0','1044485.0','6', '5','1','464.0', '5','1','464.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012051.0','1018918.0','9', '9','2','1009.0', '9','1','464.0', '1','1','545.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100315.0','1044485.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012052.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100316.0','1044485.0','21', '21','3','6654.66', '21','2','6109.66', '4','1','545.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012053.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100317.0','1044485.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012054.0','1018918.0','65', '52','30','25483.62', '44','7','7862.82', '42','26','17620.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100318.0','1044485.0','9', '9','1','1777.32', '9','1','1777.32', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012055.0','1018918.0','10', '7','5','41408.21', '7','4','24555.63', '4','2','16852.58');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100319.0','1044485.0','8', '7','0','0.0', '6','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012056.0','1018918.0','7', '6','2','712.0', '6','2','712.0', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100320.0','1044485.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012057.0','1018918.0','8', '7','0','0.0', '7','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100321.0','1044485.0','3', '1','1','19566.57', '1','1','11259.0', '1','1','8307.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001624.0', '2012058.0','1018918.0','11', '11','3','1498.36', '11','1','728.36', '6','2','770.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005918.0', '2100322.0','1044485.0','5', '4','0','0.0', '4','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012059.0','1018918.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100323.0','1044485.0','97', '73','20','50505.81', '68','17','24224.12', '35','10','26281.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012060.0','1018918.0','11', '11','3','3808.81', '11','2','3618.82', '5','1','189.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100324.0','1044485.0','15', '14','2','6588.0', '13','1','6043.0', '8','1','545.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012061.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100325.0','1044485.0','41', '36','18','104038.43', '33','11','48101.9', '22','9','55936.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012062.0','1018918.0','1', '1','1','699.88', '1','0','0.0', '1','1','699.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100326.0','1044485.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012063.0','1018918.0','7', '5','2','5122.6', '5','1','4932.61', '3','1','189.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100327.0','1044485.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012064.0','1018918.0','4', '4','1','2254.13', '4','1','386.0', '2','1','1868.13');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100328.0','1044485.0','5', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012065.0','1018918.0','8', '8','4','23743.18', '8','4','6941.0', '4','3','16802.18');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100329.0','1044485.0','4', '4','2','12374.0', '4','2','8874.0', '1','1','3500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012066.0','1018918.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100330.0','1044485.0','1', '1','1','2176.69', '1','1','2176.69', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012067.0','1018918.0','4', '3','1','2367.44', '3','1','2367.44', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100331.0','1044485.0','4', '4','1','1520.0', '3','1','1520.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012068.0','1018918.0','21', '15','5','10649.18', '14','4','10459.19', '2','1','189.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100332.0','1044485.0','5', '4','0','0.0', '4','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012069.0','1018918.0','4', '4','3','6392.32', '4','2','5847.32', '4','1','545.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100333.0','1044485.0','4', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012070.0','1018918.0','1', '1','1','1347.7', '1','1','1347.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100334.0','1044485.0','249', '219','35','61193.4', '217','23','51852.49', '43','15','9340.91');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012071.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100335.0','1044485.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012072.0','1018918.0','1', '1','1','968.3', '1','1','968.3', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100336.0','1044485.0','33', '28','14','83559.29', '28','14','43987.76', '16','9','39571.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012073.0','1018918.0','1', '1','1','360.0', '1','1','360.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100337.0','1044485.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012074.0','1018918.0','12', '12','5','31459.37', '12','5','28236.64', '4','1','3222.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100338.0','1044485.0','20', '17','3','3237.33', '17','2','2347.46', '3','1','889.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012075.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100339.0','1044485.0','5', '5','2','11321.0', '5','1','5881.0', '2','1','5440.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012076.0','1018918.0','1', '1','1','545.0', '0','0','0.0', '1','1','545.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100340.0','1044485.0','5', '5','3','6406.46', '3','1','756.0', '4','3','5650.46');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012077.0','1018918.0','86', '70','4','14557.24', '69','4','13957.24', '13','1','600.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100341.0','1044485.0','1', '1','1','5345.03', '1','1','5345.03', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012078.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100342.0','1044485.0','2', '2','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012079.0','1018918.0','4', '4','1','5400.0', '4','1','5400.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100343.0','1044485.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012080.0','1018918.0','4', '4','1','2233.24', '4','1','388.0', '1','1','1845.24');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100344.0','1044485.0','1', '1','1','4709.68', '1','1','4709.68', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012081.0','1018918.0','30', '27','7','8854.07', '27','6','7622.34', '9','2','1231.73');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100345.0','1044485.0','53', '45','1','528.82', '44','1','528.82', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012082.0','1018918.0','24', '21','9','92757.27', '21','9','49375.63', '11','4','43381.64');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100346.0','1044485.0','10', '9','4','45418.95', '8','2','11292.0', '4','2','34126.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012083.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100347.0','1044485.0','1', '1','1','4545.48', '0','0','0.0', '1','1','4545.48');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012084.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100348.0','1044485.0','23', '19','2','3861.72', '19','1','3686.72', '5','1','175.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012085.0','1018918.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100349.0','1044485.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012086.0','1018918.0','2', '2','1','1884.99', '2','1','1884.99', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100350.0','1044485.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001564.0', '2012087.0','1018918.0','3', '3','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005919.0', '2100351.0','1044485.0','7', '7','0','0.0', '7','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012088.0','1018918.0','6', '6','3','5254.71', '6','3','5254.71', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100352.0','1044485.0','18', '18','4','23249.88', '18','3','22550.0', '6','1','699.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012089.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100353.0','1044485.0','9', '7','2','6797.62', '7','2','6797.62', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012090.0','1018918.0','3', '1','1','2858.72', '1','1','2858.72', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100354.0','1044485.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012091.0','1018918.0','6', '6','1','2398.4', '5','1','2398.4', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100355.0','1044485.0','33', '24','4','6774.37', '23','3','6074.49', '7','1','699.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012092.0','1018918.0','10', '8','2','12946.06', '8','2','12946.06', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100356.0','1044485.0','3', '3','0','0.0', '3','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012093.0','1018918.0','4', '2','1','8959.0', '2','1','659.0', '2','1','8300.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100357.0','1044485.0','3', '3','1','699.88', '2','0','0.0', '1','1','699.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012094.0','1018918.0','2', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100358.0','1044485.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012095.0','1018918.0','25', '22','4','9282.76', '22','3','9092.77', '10','1','189.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100359.0','1044485.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012096.0','1018918.0','1', '1','1','1068.37', '1','0','0.0', '1','1','1068.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100360.0','1044485.0','2', '2','1','545.0', '2','0','0.0', '1','1','545.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012097.0','1018918.0','4', '4','1','22946.61', '4','1','11372.0', '1','1','11574.61');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100361.0','1044485.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012098.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100362.0','1044485.0','2', '2','1','305.69', '2','1','305.69', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012099.0','1018918.0','4', '3','2','3802.55', '3','2','3802.55', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100363.0','1044485.0','12', '11','3','37506.37', '11','3','23857.99', '5','2','13648.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012100.0','1018918.0','9', '8','1','15468.68', '8','1','5864.0', '2','1','9604.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100364.0','1044485.0','12', '12','6','35266.97', '11','5','3909.6', '5','4','31357.37');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012101.0','1018918.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100365.0','1044485.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012102.0','1018918.0','4', '4','1','2272.0', '4','1','2272.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100366.0','1044485.0','42', '39','13','18748.91', '38','4','12572.24', '23','11','6176.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012103.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100367.0','1044485.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012104.0','1018918.0','6', '6','0','0.0', '6','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100368.0','1044485.0','116', '110','28','196215.95', '103','22','76320.0', '49','16','119895.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012105.0','1018918.0','2', '2','1','1440.69', '2','1','579.0', '1','1','861.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100369.0','1044485.0','1', '1','1','572.0', '1','1','572.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012106.0','1018918.0','113', '99','32','141079.84', '97','18','81183.5', '50','25','59896.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100370.0','1044485.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012107.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100371.0','1044485.0','23', '22','4','13809.53', '20','3','1062.0', '11','4','12747.53');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012108.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100372.0','1044485.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012109.0','1018918.0','2', '1','1','417.36', '1','1','417.36', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100373.0','1044485.0','1', '1','1','16857.76', '1','1','11312.0', '1','1','5545.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012110.0','1018918.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100374.0','1044485.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012111.0','1018918.0','33', '28','12','51875.73', '28','12','37039.39', '13','6','14836.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100375.0','1044485.0','40', '35','15','31719.33', '33','14','28030.28', '17','2','3689.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012112.0','1018918.0','1', '1','1','6500.0', '0','0','0.0', '1','1','6500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100376.0','1044485.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012113.0','1018918.0','239', '227','188','386116.61', '225','174','354153.73', '138','74','31962.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100377.0','1044485.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012114.0','1018918.0','35', '29','23','53063.34', '29','23','50299.53', '18','8','2763.81');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100378.0','1044485.0','1', '1','1','6495.0', '1','1','6495.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012115.0','1018918.0','18', '16','11','22442.08', '16','11','22290.09', '5','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100379.0','1044485.0','6', '5','2','27812.71', '5','2','18556.0', '2','2','9256.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012116.0','1018918.0','11', '9','0','0.0', '9','0','0.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100380.0','1044485.0','1', '1','1','1584.0', '1','1','1584.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012117.0','1018918.0','5', '5','4','8092.24', '5','4','6312.29', '2','1','1779.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100381.0','1044485.0','61', '60','30','106934.0', '56','23','77282.0', '26','12','29652.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012118.0','1018918.0','3', '3','1','89.99', '3','0','0.0', '3','1','89.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100382.0','1044485.0','13', '12','4','10950.6', '12','3','10760.61', '6','1','189.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012119.0','1018918.0','699', '600','197','395090.08', '559','106','237729.15', '346','123','157360.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100383.0','1044485.0','8', '7','2','7944.0', '7','2','7944.0', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012120.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100384.0','1044485.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012121.0','1018918.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100385.0','1044485.0','29', '25','10','37613.89', '25','9','27935.99', '11','4','9677.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012122.0','1018918.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100386.0','1044485.0','5', '5','0','0.0', '5','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012123.0','1018918.0','2', '2','1','15774.26', '2','1','11493.0', '1','1','4281.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100387.0','1044485.0','17', '16','6','6944.68', '16','4','5744.68', '5','2','1200.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012124.0','1018918.0','6', '6','0','0.0', '6','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100388.0','1044485.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012125.0','1018918.0','8', '8','3','5221.44', '8','3','4771.44', '4','1','450.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100389.0','1044485.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012126.0','1019013.0','16', '9','4','10615.98', '6','3','10165.98', '6','1','450.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100390.0','1044580.0','2', '2','2','5449.63', '2','2','4849.63', '2','1','600.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012127.0','1019013.0','197', '175','151','299042.12', '173','147','286552.23', '111','52','12489.89');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100391.0','1044580.0','26', '24','11','46892.05', '24','11','46892.05', '5','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012128.0','1019013.0','7', '5','1','3582.46', '5','1','3029.27', '3','1','553.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100392.0','1044580.0','53', '51','37','54756.75', '51','35','52054.81', '26','13','2701.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012129.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100393.0','1044580.0','3', '3','3','9015.85', '3','3','7976.3', '1','1','1039.55');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012130.0','1019013.0','630', '592','507','1003169.69', '585','491','940065.3', '353','177','63104.39');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100394.0','1044580.0','370', '357','327','668187.56', '357','320','634289.59', '245','133','33897.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012131.0','1019013.0','1', '1','1','151.7', '1','1','151.7', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100395.0','1044580.0','28', '27','11','15524.24', '24','4','10865.97', '13','7','4658.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012132.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100396.0','1044580.0','5', '5','2','10635.88', '5','1','7310.0', '2','2','3325.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012133.0','1019013.0','6', '6','3','1800.0', '5','0','0.0', '3','3','1800.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100397.0','1044580.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012134.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100398.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012135.0','1019013.0','9', '6','4','9312.22', '6','4','9312.22', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100399.0','1044580.0','11', '11','3','2312.38', '11','3','2114.0', '6','1','198.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012136.0','1019013.0','11', '9','5','5144.85', '9','5','5144.85', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100400.0','1044580.0','2', '1','1','545.0', '1','0','0.0', '1','1','545.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012137.0','1019013.0','39', '38','33','63805.81', '37','32','61336.89', '24','14','2468.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100401.0','1044580.0','38', '38','18','40647.99', '38','15','38154.05', '22','6','2493.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012138.0','1019013.0','118', '104','82','181946.77', '102','82','174186.82', '74','35','7759.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100402.0','1044580.0','2', '2','1','189.99', '2','0','0.0', '1','1','189.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012139.0','1019013.0','70', '69','54','103696.66', '66','49','90797.83', '44','23','12898.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100403.0','1044580.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012140.0','1019013.0','119', '112','97','291513.03', '110','92','238633.58', '77','53','52879.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100404.0','1044580.0','7', '3','2','1347.82', '3','1','161.4', '2','1','1186.42');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012141.0','1019013.0','2', '2','2','2399.35', '2','1','2220.35', '1','1','179.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100405.0','1044580.0','77', '77','63','120152.84', '77','63','114792.09', '54','24','5360.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012142.0','1019013.0','10', '9','7','23405.42', '9','7','22343.95', '5','3','1061.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100406.0','1044580.0','103', '90','70','182722.58', '89','62','158901.29', '63','41','23821.29');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012143.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100407.0','1044580.0','3', '3','1','2720.9', '3','1','2720.9', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012144.0','1019013.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100408.0','1044580.0','46', '39','30','70148.04', '38','26','65319.16', '23','11','4828.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012145.0','1019013.0','1', '1','1','5400.0', '1','1','5400.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100409.0','1044580.0','2', '2','2','6052.61', '2','2','5900.62', '2','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012146.0','1019013.0','9', '7','1','103.69', '6','0','0.0', '2','1','103.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100410.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012147.0','1019013.0','3', '3','1','12028.0', '3','1','12028.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100411.0','1044580.0','15', '14','3','30220.2', '13','2','12145.0', '8','3','18075.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012148.0','1019013.0','93', '70','32','194305.34', '63','26','121503.63', '40','21','72801.71');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100412.0','1044580.0','504', '433','128','231078.98', '412','63','122766.36', '224','91','108312.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012149.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100413.0','1044580.0','4', '4','0','0.0', '4','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012150.0','1019013.0','4', '4','2','7077.45', '4','2','7077.45', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100414.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012151.0','1019013.0','1', '1','1','957.84', '1','1','957.84', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100415.0','1044580.0','3', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012152.0','1019013.0','2', '2','1','541.81', '2','1','541.81', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100416.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012153.0','1019013.0','337', '322','263','520787.21', '316','251','488308.42', '220','120','32478.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100417.0','1044580.0','227', '221','203','429793.79', '219','202','406286.83', '150','82','23506.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012154.0','1019013.0','1', '1','1','2193.78', '1','1','2193.78', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100418.0','1044580.0','5', '3','2','3499.47', '2','2','3499.47', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012155.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100419.0','1044580.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012156.0','1019013.0','16', '13','6','7305.69', '13','5','6705.69', '5','1','600.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100420.0','1044580.0','119', '107','89','212201.2', '106','86','201848.3', '50','18','10352.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012157.0','1019013.0','26', '21','14','40199.77', '21','13','31542.21', '9','4','8657.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100421.0','1044580.0','56', '48','40','124049.29', '47','39','111898.57', '31','17','12150.72');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012158.0','1019013.0','44', '31','15','51548.08', '30','14','43110.92', '25','8','8437.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100422.0','1044580.0','3', '3','2','9948.19', '3','2','9617.2', '2','1','330.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012159.0','1019013.0','1', '1','1','1287.86', '1','1','1287.86', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100423.0','1044580.0','1', '1','1','408.53', '1','1','408.53', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012160.0','1019013.0','1', '1','1','3815.23', '1','1','3663.24', '1','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100424.0','1044580.0','8', '5','1','699.88', '5','0','0.0', '1','1','699.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012161.0','1019013.0','2', '1','1','1771.3', '1','1','1501.3', '1','1','270.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100425.0','1044580.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012162.0','1019013.0','5', '5','5','6156.19', '5','5','5315.21', '4','3','840.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100426.0','1044580.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012163.0','1019013.0','2', '1','1','6500.0', '0','0','0.0', '1','1','6500.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100427.0','1044580.0','2', '2','1','2147.33', '2','1','2147.33', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012164.0','1019013.0','1022', '957','819','1752165.13', '949','771','1619303.33', '596','310','132861.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100428.0','1044580.0','23', '22','21','32804.25', '22','20','31149.3', '12','8','1654.95');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012165.0','1019013.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100429.0','1044580.0','1', '1','1','2242.99', '1','1','2063.99', '1','1','179.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012166.0','1019013.0','11', '10','9','20227.04', '10','8','16773.11', '9','6','3453.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100430.0','1044580.0','4', '3','0','0.0', '3','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012167.0','1019013.0','5', '4','4','6650.7', '4','3','6319.71', '4','2','330.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100431.0','1044580.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012168.0','1019013.0','21', '19','14','27065.55', '18','13','25834.59', '9','3','1230.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100432.0','1044580.0','201', '177','44','89027.67', '174','21','38960.11', '79','32','50067.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012169.0','1019013.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100433.0','1044580.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012170.0','1019013.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100434.0','1044580.0','1', '1','1','814.71', '1','1','215.71', '1','1','599.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012171.0','1019013.0','4', '3','1','5828.96', '2','1','484.0', '2','1','5344.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100435.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012172.0','1019013.0','1', '1','1','545.0', '1','0','0.0', '1','1','545.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100436.0','1044580.0','3', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012173.0','1019013.0','4', '3','1','1383.26', '3','1','1383.26', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100437.0','1044580.0','91', '86','8','8378.97', '82','3','3527.71', '24','7','4851.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012174.0','1019013.0','1', '1','1','764.54', '1','1','764.54', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100438.0','1044580.0','77', '70','34','193095.02', '69','26','107247.2', '50','23','85847.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012175.0','1019013.0','20', '17','12','50703.73', '17','9','46467.13', '9','6','4236.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100439.0','1044580.0','14', '12','2','1529.82', '12','1','1339.83', '4','1','189.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012176.0','1019013.0','4', '3','1','5208.9', '3','1','1205.0', '2','1','4003.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100440.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012177.0','1019013.0','1', '1','1','179.0', '1','0','0.0', '1','1','179.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100441.0','1044580.0','62', '56','26','77627.99', '56','21','73773.0', '20','8','3854.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012178.0','1019013.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100442.0','1044580.0','5', '2','1','220.62', '2','1','220.62', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012179.0','1019013.0','486', '403','260','598924.28', '376','185','371654.93', '303','151','227269.35');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100443.0','1044580.0','86', '83','76','177456.74', '82','74','168402.12', '49','25','9054.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012180.0','1019013.0','1', '1','1','3274.06', '1','1','3274.06', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100444.0','1044580.0','25', '23','17','40240.41', '23','16','38097.47', '16','10','2142.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012181.0','1019013.0','111', '107','93','175033.36', '106','91','165772.44', '71','37','9260.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100445.0','1044580.0','3', '3','3','4250.07', '3','2','4098.08', '2','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012182.0','1019013.0','11', '11','9','17545.72', '11','9','16704.74', '6','4','840.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100446.0','1044580.0','194', '189','176','356362.21', '189','171','336695.37', '135','75','19666.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012183.0','1019013.0','1', '1','1','2010.2', '1','1','2010.2', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100447.0','1044580.0','58', '57','56','171513.98', '57','56','161674.42', '41','30','9839.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012184.0','1019013.0','10', '9','8','5433.09', '3','0','0.0', '8','8','5433.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100448.0','1044580.0','40', '38','35','86178.31', '38','34','81059.06', '26','16','5119.25');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012185.0','1019013.0','15', '12','1','7897.8', '12','1','6546.0', '5','1','1351.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100449.0','1044580.0','128', '116','27','138227.9', '110','15','36588.68', '55','20','101639.22');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012186.0','1019013.0','6', '6','2','1589.75', '6','0','0.0', '4','2','1589.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100450.0','1044580.0','12', '10','3','3152.41', '9','2','2213.0', '4','2','939.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012187.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100451.0','1044580.0','4', '4','2','8613.0', '3','1','3213.0', '1','1','5400.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012188.0','1019013.0','3', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100452.0','1044580.0','323', '294','141','674870.35', '290','111','333114.02', '169','90','341756.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012189.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100453.0','1044580.0','2', '2','1','1780.66', '2','1','583.0', '2','1','1197.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012190.0','1019013.0','4', '4','1','12097.16', '4','1','6856.0', '2','1','5241.16');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100454.0','1044580.0','17', '13','2','6188.66', '11','1','5400.0', '3','2','788.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012191.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100455.0','1044580.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012192.0','1019013.0','417', '364','318','959902.44', '361','307','841486.62', '217','109','118415.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100456.0','1044580.0','3', '2','1','2722.33', '2','1','2722.33', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012193.0','1019013.0','218', '203','172','364270.05', '198','167','319640.36', '127','64','44629.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100457.0','1044580.0','6', '5','3','8366.68', '4','3','8366.68', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012194.0','1019013.0','147', '139','129','287412.41', '139','126','275719.0', '97','51','11693.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100458.0','1044580.0','21', '21','19','33169.26', '21','17','30722.93', '15','8','2446.33');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012195.0','1019013.0','2', '2','1','568.42', '2','1','568.42', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100459.0','1044580.0','102', '98','82','106163.04', '98','79','97632.76', '68','34','8530.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012196.0','1019013.0','20', '15','10','15453.02', '15','9','13171.06', '9','3','2281.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100460.0','1044580.0','3', '2','2','9518.34', '2','2','9187.35', '2','1','330.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012197.0','1019013.0','2', '2','1','359.59', '2','1','359.59', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100461.0','1044580.0','6', '6','2','3583.57', '6','1','2531.48', '3','2','1052.09');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012198.0','1019013.0','10', '7','7','6118.62', '7','7','5635.64', '6','3','482.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100462.0','1044580.0','3', '2','2','2542.27', '2','2','2542.27', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012199.0','1019013.0','67', '63','52','98374.14', '63','46','93297.69', '46','21','5076.45');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100463.0','1044580.0','2', '2','1','1128.0', '2','1','1128.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012200.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100464.0','1044580.0','27', '22','16','77877.58', '22','16','53288.24', '11','7','24589.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012201.0','1019013.0','95', '84','27','57781.18', '77','20','49734.77', '40','11','8046.41');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100465.0','1044580.0','15', '14','10','6936.9', '12','1','1158.86', '13','9','5778.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012202.0','1019013.0','85', '81','13','26263.71', '81','7','16097.66', '31','8','10166.05');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100466.0','1044580.0','90', '73','28','103657.49', '69','26','65405.98', '37','14','38251.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012203.0','1019013.0','2', '1','1','189.99', '1','0','0.0', '1','1','189.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100467.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012204.0','1019013.0','8', '7','0','0.0', '7','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100468.0','1044580.0','13', '12','6','16323.83', '10','4','2886.0', '8','4','13437.83');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012205.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100469.0','1044580.0','2', '2','1','845.0', '2','1','845.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012206.0','1019013.0','4', '4','1','1082.0', '3','1','1082.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100470.0','1044580.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012207.0','1019013.0','10', '9','0','0.0', '9','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100471.0','1044580.0','34', '30','3','1946.58', '30','2','1346.58', '3','1','600.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012208.0','1019013.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100472.0','1044580.0','25', '23','7','16563.1', '23','6','15963.1', '5','1','600.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012209.0','1019013.0','42', '35','19','48969.57', '34','14','42253.26', '18','6','6716.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100473.0','1044580.0','14', '12','5','8170.11', '12','5','7570.11', '3','1','600.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012210.0','1019013.0','21', '14','5','7688.26', '14','5','7688.26', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100474.0','1044580.0','8', '4','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012211.0','1019013.0','24', '8','3','6886.87', '7','3','6796.88', '5','1','89.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100475.0','1044580.0','17', '12','6','6671.96', '12','5','6108.77', '10','2','563.19');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012212.0','1019013.0','79', '69','61','117009.44', '68','55','107192.52', '50','28','9816.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100476.0','1044580.0','255', '220','191','339822.12', '219','186','318794.25', '126','61','21027.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012213.0','1019013.0','1', '1','1','428.92', '1','1','338.93', '1','1','89.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100477.0','1044580.0','26', '22','16','31715.42', '22','15','28952.15', '13','8','2763.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012214.0','1019013.0','8', '8','8','16212.45', '8','8','15269.47', '8','3','942.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100478.0','1044580.0','37', '33','27','75035.98', '30','27','64329.71', '23','10','10706.27');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012215.0','1019013.0','112', '110','94','164223.21', '109','89','157144.37', '66','33','7078.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100479.0','1044580.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012216.0','1019013.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100480.0','1044580.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012217.0','1019013.0','2', '2','2','2852.9', '2','2','2852.9', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100481.0','1044580.0','48', '46','15','72411.06', '45','14','55504.57', '18','5','16906.49');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012218.0','1019013.0','6', '5','4','13265.59', '5','4','13086.59', '3','1','179.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100482.0','1044580.0','2', '2','2','3876.48', '2','1','3564.36', '1','1','312.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012219.0','1019013.0','5', '3','2','768.99', '3','1','579.0', '2','1','189.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100483.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012220.0','1019013.0','37', '33','8','19280.66', '33','8','18190.66', '10','2','1090.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100484.0','1044580.0','5', '5','0','0.0', '4','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012221.0','1019013.0','6', '4','1','699.88', '4','0','0.0', '2','1','699.88');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100485.0','1044580.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012222.0','1019013.0','13', '9','1','1601.83', '9','1','1001.83', '4','1','600.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100486.0','1044580.0','21', '16','6','38504.57', '14','3','18199.0', '8','5','20305.57');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012223.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100487.0','1044580.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012224.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100488.0','1044580.0','3', '3','1','8180.62', '2','0','0.0', '1','1','8180.62');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012225.0','1019013.0','9', '8','2','6689.99', '7','0','0.0', '2','2','6689.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100489.0','1044580.0','17', '17','11','74946.68', '17','11','59860.71', '9','2','15085.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012226.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100490.0','1044580.0','42', '38','17','49726.72', '37','14','36905.21', '20','6','12821.51');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012227.0','1019013.0','59', '51','5','11877.56', '51','5','11877.56', '8','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100491.0','1044580.0','3', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012228.0','1019013.0','11', '10','3','27928.67', '10','3','17786.8', '3','1','10141.87');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100492.0','1044580.0','24', '20','6','35144.4', '20','4','24174.47', '9','3','10969.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012229.0','1019013.0','1', '1','1','8050.0', '0','0','0.0', '1','1','8050.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100493.0','1044580.0','14', '13','12','41300.16', '13','12','37020.02', '7','2','4280.14');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012230.0','1019013.0','10', '8','3','12543.7', '8','3','12543.7', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100494.0','1044580.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012231.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100495.0','1044580.0','1', '1','1','842.49', '1','1','842.49', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012232.0','1019013.0','103', '97','75','132347.28', '95','73','122887.81', '53','21','9459.47');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100496.0','1044580.0','227', '203','150','372482.44', '200','138','324129.18', '123','53','48353.26');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012233.0','1019013.0','48', '45','40','79247.91', '45','40','74247.07', '30','19','5000.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100497.0','1044580.0','62', '58','50','105024.64', '57','48','99356.8', '34','21','5667.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012234.0','1019013.0','2', '2','1','5291.69', '2','1','5112.69', '1','1','179.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100498.0','1044580.0','7', '7','6','23916.93', '7','6','22817.95', '3','2','1098.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012235.0','1019013.0','89', '85','70','107229.07', '84','66','98948.03', '51','26','8281.04');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100499.0','1044580.0','71', '70','18','40064.79', '69','9','24455.87', '31','12','15608.92');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012236.0','1019013.0','1', '1','1','1096.75', '1','1','944.76', '1','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100500.0','1044580.0','11', '10','3','11203.34', '10','2','10800.0', '3','2','403.34');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012237.0','1019013.0','1', '1','1','600.0', '1','0','0.0', '1','1','600.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100501.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012238.0','1019013.0','1', '1','0','0.0', '0','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100502.0','1044580.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012239.0','1019013.0','175', '168','137','322602.46', '166','132','283788.78', '108','59','38813.68');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100503.0','1044580.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012240.0','1019013.0','165', '162','136','284570.02', '161','129','271713.32', '97','47','12856.7');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100504.0','1044580.0','4', '4','2','4124.35', '4','2','4124.35', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012241.0','1019013.0','3', '3','2','12823.82', '3','2','12823.82', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100505.0','1044580.0','43', '39','16','67209.47', '39','16','55220.27', '17','4','11989.2');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012242.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100506.0','1044580.0','2', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012243.0','1019013.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100507.0','1044580.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012244.0','1019013.0','3', '3','1','5864.0', '3','1','5864.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100508.0','1044580.0','26', '24','12','41192.8', '23','7','17423.36', '20','9','23769.44');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001643.0', '2012245.0','1019013.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005922.0', '2100509.0','1044580.0','30', '21','4','26095.78', '20','4','25719.88', '10','1','375.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012246.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100510.0','1044580.0','2', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012247.0','1019013.0','4', '3','0','0.0', '3','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100511.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012248.0','1019013.0','14', '14','0','0.0', '13','0','0.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100512.0','1044580.0','49', '32','16','31449.76', '30','14','26674.74', '13','4','4775.02');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012249.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100513.0','1044580.0','158', '141','107','227408.62', '137','103','194864.72', '94','30','32543.9');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001542.0', '2012250.0','1019013.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005923.0', '2100514.0','1044580.0','1', '1','1','1488.72', '1','1','1488.72', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012251.0','1019013.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100515.0','1044580.0','93', '89','77','187327.55', '87','76','171039.81', '66','34','16287.74');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012252.0','1019013.0','60', '57','48','113233.65', '56','45','107144.8', '38','20','6088.85');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100516.0','1044580.0','14', '13','11','28151.01', '13','10','25099.69', '12','8','3051.32');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012253.0','1019013.0','1', '1','1','1100.0', '1','1','1100.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100517.0','1044580.0','3', '3','2','8003.77', '3','2','7516.79', '2','1','486.98');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012254.0','1019013.0','3', '3','3','16151.92', '3','3','13978.08', '2','2','2173.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100518.0','1044580.0','1', '1','1','873.61', '1','1','873.61', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012255.0','1019013.0','8', '6','1','589.64', '6','1','589.64', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100519.0','1044580.0','2', '2','2','2940.77', '2','2','2761.77', '2','1','179.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012256.0','1019013.0','7', '7','3','1489.75', '5','0','0.0', '6','3','1489.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100520.0','1044580.0','42', '39','29','110990.89', '39','27','79843.78', '18','9','31147.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012257.0','1019013.0','18', '15','6','46224.14', '15','6','44115.15', '4','1','2108.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100521.0','1044580.0','9', '9','7','16265.41', '9','7','14492.44', '4','3','1772.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012258.0','1019013.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100522.0','1044580.0','110', '92','66','118521.07', '89','57','110321.96', '59','25','8199.11');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012259.0','1019013.0','27', '24','2','7000.0', '23','2','7000.0', '6','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100523.0','1044580.0','161', '140','117','251601.44', '137','105','222473.14', '83','47','29128.3');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012260.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100524.0','1044580.0','1', '1','1','382.1', '1','1','382.1', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012261.0','1019013.0','18', '14','3','2514.44', '14','2','2045.81', '3','1','468.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100525.0','1044580.0','1', '1','1','881.82', '1','1','702.82', '1','1','179.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012262.0','1019013.0','64', '57','23','93535.37', '56','20','55586.94', '24','8','37948.43');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100526.0','1044580.0','17', '17','14','35261.35', '17','14','32895.53', '10','7','2365.82');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012263.0','1019013.0','267', '229','51','62593.97', '221','33','30115.17', '58','26','32478.8');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100527.0','1044580.0','6', '5','0','0.0', '5','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012264.0','1019013.0','45', '32','16','52110.7', '31','16','52110.7', '11','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100528.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012265.0','1019013.0','283', '274','226','517176.73', '272','217','484546.65', '173','88','32630.08');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100529.0','1044580.0','14', '12','3','5352.82', '12','2','656.05', '7','3','4696.77');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012266.0','1019013.0','9', '8','8','18794.33', '8','6','17622.36', '8','5','1171.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100530.0','1044580.0','10', '8','1','412.0', '8','1','412.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012267.0','1019013.0','2', '2','2','7561.51', '2','2','6105.54', '2','2','1455.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100531.0','1044580.0','16', '10','5','2181.0', '8','4','1636.0', '6','1','545.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012268.0','1019013.0','23', '22','17','36348.12', '22','16','34273.18', '13','9','2074.94');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100532.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012269.0','1019013.0','1', '1','1','1095.32', '1','1','1095.32', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100533.0','1044580.0','1', '1','1','371.0', '1','1','371.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012270.0','1019013.0','6', '6','1','9256.66', '6','1','524.0', '3','1','8732.66');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100534.0','1044580.0','6', '5','2','5783.9', '5','2','5783.9', '4','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012271.0','1019013.0','11', '9','4','2966.21', '7','1','1046.45', '7','3','1919.76');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100535.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012272.0','1019013.0','9', '6','2','4891.94', '6','2','4891.94', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100536.0','1044580.0','2', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012273.0','1019013.0','29', '21','21','38102.14', '21','20','35487.21', '15','11','2614.93');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100537.0','1044580.0','4', '3','1','600.0', '3','0','0.0', '1','1','600.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012274.0','1019013.0','432', '384','309','715120.02', '379','299','665999.9', '227','83','49120.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100538.0','1044580.0','2', '2','0','0.0', '2','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012275.0','1019013.0','2', '2','2','8023.36', '2','2','7871.37', '2','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100539.0','1044580.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012276.0','1019013.0','105', '97','90','211659.13', '97','85','188062.5', '62','31','23596.63');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100540.0','1044580.0','5', '4','1','1987.74', '4','1','1987.74', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012277.0','1019013.0','99', '98','90','184872.83', '97','90','175135.99', '63','35','9736.84');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100541.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012278.0','1019013.0','17', '16','13','40543.86', '16','13','34804.26', '10','8','5739.6');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100542.0','1044580.0','1', '1','1','1058.21', '1','1','1058.21', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012279.0','1019013.0','47', '43','40','68027.97', '43','34','59668.69', '25','14','8359.28');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100543.0','1044580.0','14', '9','2','1567.38', '8','1','1046.82', '3','1','520.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012280.0','1019013.0','5', '3','3','3708.35', '3','3','3377.36', '2','1','330.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100544.0','1044580.0','2', '2','2','3848.36', '2','2','2962.0', '1','1','886.36');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012281.0','1019013.0','263', '235','160','638454.75', '230','144','449069.63', '149','79','189385.12');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100545.0','1044580.0','1', '1','1','2871.76', '1','1','2871.76', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012282.0','1019013.0','16', '13','5','30695.04', '13','5','16857.35', '8','3','13837.69');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100546.0','1044580.0','1', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012283.0','1019013.0','26', '22','20','45377.28', '22','20','43516.32', '13','9','1860.96');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100547.0','1044580.0','1', '1','1','2029.85', '1','1','2029.85', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012284.0','1019013.0','5', '4','4','6292.57', '4','4','6292.57', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100548.0','1044580.0','4', '4','4','8782.98', '4','4','8603.98', '3','1','179.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012285.0','1019013.0','2', '2','2','4691.8', '2','2','4691.8', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100549.0','1044580.0','1', '1','1','3979.35', '1','1','3979.35', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012286.0','1019013.0','2', '2','0','0.0', '2','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100550.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012287.0','1019013.0','323', '270','44','134048.92', '254','20','21821.13', '117','36','112227.79');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100551.0','1044580.0','7', '4','1','464.0', '4','1','464.0', '2','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012288.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100552.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012289.0','1019013.0','290', '261','83','349782.46', '260','46','187418.43', '127','61','162364.03');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100553.0','1044580.0','3', '2','1','574.64', '2','1','574.64', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012290.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100554.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012291.0','1019013.0','1227', '1128','613','2123041.33', '1051','473','1190653.95', '786','388','932387.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100555.0','1044580.0','21', '18','7','12859.43', '14','2','4384.87', '12','6','8474.56');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012292.0','1019013.0','6', '5','1','455.0', '5','0','0.0', '2','1','455.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100556.0','1044580.0','8', '5','2','6953.76', '5','2','6953.76', '3','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012293.0','1019013.0','11', '11','9','68065.38', '11','9','55280.73', '7','3','12784.65');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100557.0','1044580.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012294.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100558.0','1044580.0','4', '4','4','3350.98', '4','4','3350.98', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012295.0','1019013.0','52', '41','21','76757.09', '37','20','65658.71', '21','5','11098.38');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100559.0','1044580.0','98', '78','66','93832.78', '78','58','86181.47', '41','22','7651.31');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012296.0','1019013.0','1', '1','1','6528.0', '1','1','6528.0', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100560.0','1044580.0','128', '116','97','203889.71', '114','93','180675.96', '71','41','23213.75');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012297.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100561.0','1044580.0','548', '512','439','1252137.96', '508','424','1159323.29', '331','192','92814.67');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012298.0','1019013.0','2', '2','2','7014.96', '2','2','7014.96', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100562.0','1044580.0','2', '2','2','6064.44', '2','2','6064.44', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012299.0','1019013.0','2', '2','1','3671.9', '2','1','3519.91', '1','1','151.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100563.0','1044580.0','1', '1','1','5369.69', '1','1','5369.69', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012300.0','1019013.0','7', '7','6','13722.09', '7','6','13391.1', '6','2','330.99');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100564.0','1044580.0','3', '0','0','0.0', '0','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012301.0','1019013.0','1', '1','0','0.0', '1','0','0.0', '0','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100565.0','1044580.0','1', '1','1','927.34', '1','1','927.34', '1','0','0.0');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3001536.0', '2012302.0','1019013.0','274', '237','194','456172.4', '237','183','378663.43', '161','95','77508.97');
INSERT INTO cs689TermProj.dbo.Relief_Fact(disasterId,locationId,dateTimeId, totalValidRegistrations,ihpReferrals,ihpEligible,ihpAmount,haReferrals,haEligible,haAmount, onaReferrals,onaEligible,onaAmount) VALUES ('3005926.0', '2100566.0','1044580.0','6', '4','4','15727.78', '4','4','15282.5', '4','2','445.28'